/* =====================================
Template Name: Eshop
Author Name: Naimur Rahman
Author URI: http://www.wpthemesgrid.com/
Description: Eshop - eCommerce HTML5 Template.
Version:1.0
========================================*/

/*======================================
[ CSS Table of contents ]
01. Preloader CSS
02. Header CSS
    + Logo
    + Category Menu
    + Main Menuf
03. Hero Area CSS
04. Small Banner CSS
05. Medium Banner CSS
06. Single Product CSS
07. Shop Sidebar CSS
08. Shop Single CSS
09. Shop Home List CSS
10. Cart CSS
11. Checkout CSS
12. Login & Register CSS
13. Cowndown CSS
14. Shop Services CSS
15. Newslatter CSS
16. About Us CSS
17. Team CSS
18. Blog CSS    
    + Blog Archive
    + Blog Sidebar
    + Blog Single
19. Contact CSS
20. 404 Error CSS
21. Footer CSS
========================================*/


@font-face {
    font-family: 'Gilroy-Medium';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/Gilroy-Medium.woff') format('woff');
}

@font-face {
    font-family: 'Gilroy-Regular';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/Gilroy-Regular.woff') format('woff');
}

@font-face {
    font-family: 'Gilroy-Light';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/Gilroy-Light.woff') format('woff');
}

@font-face {
    font-family: 'Gilroy-Bold';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/Gilroy-Bold.woff') format('woff');
}

p {
    font-family: 'Gilroy-Regular' !important;
}

.header.shop .middle-inner .col-xl-1.col-lg-2.col-md-2.col-sm-7.col-8 {
    flex: 25%;
    max-width: 25%;
}


/*.call-btn {
    display: none;
}*/

h2 {
    color: #000;
}

body {
    /*font-family: 'Montserrat', sans-serif !important;*/
    font-family: 'Roboto', sans-serif !important;
}

img,
a,
input,
h1,
h2,
h3,
h4,
h5,
h6 {
    /*font-family: 'Montserrat', sans-serif !important;*/
    font-family: 'Roboto', sans-serif !important;
}

.product-area.most-popular.section.d-hide.mt-4.s-access0 {
    margin-bottom: 0px;
    margin-top: 0px !important;
}

.most-popular .owl-carousel .owl-controls .owl-nav .owl-next,
.cate-sec .owl-nav .owl-next {
    background: none;
}

.color-plate {
    position: fixed;
    display: block;
    z-index: 99998;
    padding: 20px;
    width: 245px;
    background: #fff;
    right: -245px;
    text-align: left;
    top: 30%;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-box-shadow: -3px 0px 25px -2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: -3px 0px 25px -2px rgba(0, 0, 0, 0.2);
    box-shadow: -3px 0px 25px -2px rgba(0, 0, 0, 0.2);
}

.color-plate.active {
    right: 0;
}

.color-plate .color-plate-icon {
    position: absolute;
    left: -48px;
    width: 48px;
    height: 45px;
    line-height: 45px;
    font-size: 21px;
    border-radius: 5px 0 0 5px;
    background: #fff;
    text-align: center;
    color: #333;
    top: 0;
    cursor: pointer;
    box-shadow: -4px 0px 5px #00000036;
}

.color-plate h4 {
    display: block;
    font-size: 15px;
    margin-bottom: 5px;
    font-weight: 500;
}

.color-plate p {
    font-size: 13px;
    margin-bottom: 15px;
    line-height: 20px;
}

.color-plate span {
    width: 42px;
    height: 35px;
    border-radius: 0;
    cursor: pointer;
    display: inline-block;
    margin-right: 3px;
}

.color-plate span:hover {
    cursor: pointer;
}

.color-plate span.color1 {
    background: #fe5d09;
}

.color-plate span.color2 {
    background: #0088CC;
}

.color-plate span.color3 {
    background: #32B87D;
}

.color-plate span.color4 {
    background: #FE754A;
}

.color-plate span.color5 {
    background: #F82F56;
}

.color-plate span.color6 {
    background: #00cec9;
}

.color-plate span.color7 {
    background: #6c5ce7;
}

.color-plate span.color8 {
    background: #85BA46;
}

.color-plate span.color9 {
    background: #fd79a8;
}

.color-plate span.color10 {
    background: #a29bfe;
}

.color-plate span.color11 {
    background: #badc58;
}

.color-plate span.color12 {
    background: #FF1D38;
}


/* Preloader */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999999;
    width: 100%;
    height: 100%;
    background-color: #fff;
    overflow: hidden;
}

.preloader-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.preloader-icon {
    width: 100px;
    height: 100px;
    display: inline-block;
    padding: 0px;
}

.preloader-icon span {
    position: absolute;
    display: inline-block;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    background: #fe5d09;
    -webkit-animation: preloader-fx 1.6s linear infinite;
    animation: preloader-fx 1.6s linear infinite;
}

.preloader-icon span:last-child {
    animation-delay: -0.8s;
    -webkit-animation-delay: -0.8s;
}

@keyframes preloader-fx {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }

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

@-webkit-keyframes preloader-fx {
    0% {
        -webkit-transform: scale(0, 0);
        opacity: 0.5;
    }

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


/* End Preloader */

.btn {
    position: relative;
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    background: #333;
    display: inline-block;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 5;
    display: inline-block;
    padding: 13px 32px;
    border-radius: 0px;
    text-transform: uppercase;
}

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

#scrollUp {
    right: 10px;
    z-index: 33;
    bottom: 10px;
    text-align: center;
}

#scrollUp i {
    height: 40px;
    width: 40px;
    line-height: 40px;
    background: transparent;
    background: #222;
    border-radius: 0;
    font-size: 18px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
    display: block;
    color: #fff;
    box-shadow: 0px 4px 19px #00000038;
}

#scrollUp i:hover {
    background: #fe5d09;
    color: #fff;
}


/*======================================
    01. Header CSS
========================================*/


/* Topbar */

.topbar {
    background-color: #fff;
    border-bottom: 1px solid #e2e2e2;
    padding: 15px 0;
}


/* Logo */

.header .logo {
    float: left;
    margin-top: 35px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.header .navbar {
    padding: 0;
}

.header.shop .logo img {
    width: 100%;
    object-fit: cover;
}

.logo.vendor-head-logo img {
    width: auto !important;
    object-fit: cover;
    height: 130px;
}


/* Main Menu */

.navbar-expand-lg .navbar-collapse {
    display: block !important;
}

.header.v3 .navbar-expand-lg .navbar-collapse {
    display: block !important;
    background: #333;
}

.header .nav li a i {
    margin-left: 6px;
    font-size: 10px;
}


/* Dropdown Menu */

.header .nav li .dropdown {
    background: #fff;
    width: 220px;
    position: absolute;
    top: 100%;
    z-index: 999;
    -webkit-box-shadow: 0px 3px 5px #3333334d;
    -moz-box-shadow: 0px 3px 5px #3333334d;
    box-shadow: 0px 3px 5px #3333334d;
    transform-origin: 0 0 0;
    transform: scaleY(0.2);
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    opacity: 0;
    visibility: hidden;
    padding: 10px;
    left: 0;
    margin: 0;
}

.header .nav li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.header .nav li .dropdown li {
    float: none;
    margin: 0;
}

.header .nav li .dropdown li a {
    padding: 8px 15px;
    color: #666;
    display: block;
    font-weight: 400;
    text-transform: capitalize;
    background: transparent;
}

.header .nav li .dropdown li a:before {
    display: none;
}

.header .nav li .dropdown li:last-child a {
    border-bottom: 0px;
}

.header .nav li .dropdown li:hover a {
    color: #fff;
    background: #fe5d09;
}

.header .nav li .dropdown li a:hover {
    border-color: transparent;
}

.header .nav li .dropdown li i {
    float: right;
    margin-top: 8px;
    font-size: 10px;
    z-index: 5;
}

.header .nav li .dropdown.sub-dropdown {
    background: #fff;
    width: 220px;
    position: absolute;
    left: 186px;
    top: 0;
    z-index: 999;
    -webkit-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 3px 5px #3333334d;
    transform-origin: 0 0 0;
    transform: scaleY(0.2);
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    opacity: 0;
    visibility: hidden;
    padding: 10px;
}

.header .nav li .dropdown li:hover .dropdown.sub-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.header .nav li .dropdown.sub-dropdown li a {
    padding: 8px 15px;
    color: #666;
    display: block;
    font-weight: 400;
    text-transform: capitalize;
    background: transparent;
}

.header .nav li .dropdown li:hover .dropdown.sub-dropdown li a {
    background: transparent;
}

.header .nav li .dropdown li .dropdown.sub-dropdown li a:hover {
    color: #fff;
    background: #fe5d09;
}

.header .nav li .dropdown.sub-dropdown li:last-child a {
    border-bottom: 0px solid;
}

.mobile-search {
    display: none;
}

.header.shop .topbar {
    border: none;
    padding: 12px 0px;
}

.header.shop .nav-inner {
    margin-right: 188px;
}

.header.shop .logo {
    float: left;
    margin-top: 35px;
}

.header.shop .top-contact {
    margin-top: 0px;
}

.header.shop .topbar p {
    color: #ccc;
}

.header.shop .topbar .login a {
    color: #fe5d09;
}


/* Topbar Left Nav */

.header.shop .left-nav {}

.header.shop .top-left .list-main li:first-child {
    padding-left: 0;
}

.header.shop .top-left .list-main li i {
    display: inline-block;
    margin-right: 4px;
    font-size: 15px;
    color: #ffffff;
    position: relative;
    top: 3px;
}

.header.shop .right-content {
    float: right;
}

.header.shop .list-main li {
    display: inline-block;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    border-right: 1px solid #f0f0f0;
    padding: 0px 13px;
}

.header.shop .list-main li i {
    display: inline-block;
    margin-right: 4px;
    font-size: 15px;
    color: #fafafa;
    position: relative;
    top: 1px;
}

.header.shop .list-main li:last-child {
    padding-right: 0;
    border: none;
}

.header.shop .list-main li a {
    color: #fff;
}

.header.shop .list-main li a:hover {
    color: #fe5d09;
}


/*.header.shop .nav li {
    margin-right: 40px;
    float: left;
    position: relative;
}*/

.header.shop .nav li {
    margin-right: 26px;
    position: relative;
    float: none;
}

.header.shop .nav li:last-child {
    margin: 0 !important;
}

.header.shop .nav li .new {
    background: #fe5d09;
    color: #fff;
    text-transform: uppercase;
    font-size: 10px;
    padding: 0px 9px;
    position: absolute;
    left: 0;
    top: 6px;
    font-weight: 500;
}

.header.shop .nav li .new::before {
    position: absolute;
    content: "";
    left: 4px;
    bottom: -8px;
    border: 4px solid #fe5d09;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent;
}


/* Shopping Cart */

.header .shopping {
    display: inline-block;
    z-index: 999;
}

.header .shopping .icon {
    position: relative;
    cursor: pointer;
    color: #222;
}

.header .shopping .shopping-item {
    position: absolute;
    top: 68px;
    right: 0;
    width: 300px;
    background: #fff;
    padding: 20px 25px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    z-index: 9999999;
}

.header .shopping:hover .shopping-item {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
}

.header .shopping .dropdown-cart-header {
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid #e6e6e6;
}

.header .shopping .dropdown-cart-header span {
    text-transform: uppercase;
    color: #222;
    font-size: 13px;
    font-weight: 600;
}

.header .shopping .dropdown-cart-header a {
    float: right;
    text-transform: uppercase;
    color: #222;
    font-size: 13px;
    font-weight: 600;
}

.header .shopping .dropdown-cart-header a:hover {
    color: #fe5d09;
}

.header .shopping-list li {
    overflow: hidden;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 15px;
    margin-bottom: 15px;
    position: relative;
}

.header .shopping-list li .remove {
    position: absolute;
    right: 30%;
    top: 1px;
    margin-top: 0px;
    height: 20px;
    width: 20px;
    line-height: 18px;
    text-align: center;
    background: #fff;
    color: #222;
    border-radius: 0;
    font-size: 11px;
    border: 1px solid #ededed;
}

.header .shopping-list li .remove:hover {
    background: #222;
    color: #fff !important;
    border-color: transparent;
}

.header .shopping-list .cart-img {
    float: right;
    border: 1px solid #ededed;
    overflow: hidden;
}

.header .shopping-list .cart-img img {
    width: 70px;
    height: 50px;
    border-radius: 0;
    object-fit: contain;
}

.header .shopping-list .cart-img:hover img {
    transform: scale(1.09);
}

.header .shopping-list .quantity {
    line-height: 22px;
    font-size: 13px;
    padding-bottom: 30px;
}

.header .shopping-list h4 {
    font-size: 12px;
    width: 59%;
    overflow: hidden;
    height: 52px;
}

.header .shopping-list h4 a {
    font-weight: 600;
    font-size: 12px;
    color: #333;
    /* width: 95%; */
}

.header .shopping-list h4 a:hover {
    color: #fe5d09;
}

.header .shopping-item .bottom {
    text-align: center;
}

.header .shopping-item .total {
    overflow: hidden;
    display: block;
    padding-bottom: 10px;
}

.header .shopping-item .total span {
    text-transform: uppercase;
    color: #222;
    font-size: 13px;
    font-weight: 600;
    float: left;
}

.header .shopping-item .total .total-amount {
    float: right;
    font-size: 14px;
}

.header .shopping-item .bottom .btn {
    background: #222;
    padding: 10px 20px;
    display: block;
    color: #fff;
    margin-top: 10px;
    border-radius: 0px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
}

.header .shopping-item .bottom .btn:hover {
    background: #fe5d09;
    color: #fff;
}


/*.header.shop{
    background:#fff;
}*/

.header.shop .nav-inner {
    margin: 0;
    float: left;
}

.header.shop .topbar {
    background-color: #065390;
    border: none;
    background-image: linear-gradient(to right, rgb(6 46 109), rgb(7 161 218));
}

.header.shop.v3 .topbar {
    padding: 0;
}

.header.shop.v3 .topbar .inner-content {
    border-bottom: 1px solid #eee;
    padding: 12px 0px;
}

.header.shop .right-nav li a {
    color: #333;
}

.header.shop .logo {
    float: left;
    /*margin: 19px 0 0;*/
    margin: 0px 0 0;
}

.header.shop .top-contact {
    margin-top: 0px;
}


/* Header Middle */

.header.shop .search-bar-top {
    text-align: center;
    margin-top: 10px;
}


/*.header.shop .search-bar {
    margin-top: 33px;
    width: 460px;
    height: 40px;
    display: inline-block;
    background: #fff;
    position: relative;
}*/

.header.shop .search-bar {
    /* width: 535px; */
    height: 46px;
    display: inline-block;
    background: #fff0;
    position: relative;
    margin: 0;
    line-height: 35px;
    border-radius: 6px;
    border: 1px solid #E4E4E4;
}

.header.shop .search-bar form {
    display: inline-block;
    float: left;
    width: 100%;
    height: 100%;
    padding: 3px 0px;
}

.header.shop .search-bar input {
    border: none;
    font-size: 14px;
    font-weight: 500;
}

.header.shop .search-bar .btnn {
    line-height: 48px;
    width: 62px;
    text-align: center;
    font-size: 15px;
    color: #313131;
    background: #f4f4f400;
    top: -1px;
    border: none;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border-radius: 0px 5px 5px 0px;
}

.header.shop .search-bar .btnn:hover {
    color: #fff;
    background: #fe5d09;
}


/* Search Form */

.header.shop .search-top {
    opacity: 1;
    visibility: visible;
    top: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    top: 0;
}

.header.shop .middle-inner {
    /*  padding: 20px 0;*/
    /*background: #fff;*/
    /*border-top: 1px solid #eee;*/
}

.header.shop.v3 .middle-inner {
    border: none;
}

.header.shop .header-inner {
    /* background: #062c6b; */
    border-top: 1px solid #f4f4f4;
    /*    padding-bottom: 8px;*/
    background: #F9F9F9;
    border-top: 1px solid #ededed;
    border-radius: 4px;
    /*    height: 40px;*/
}

.header.shop.v3 .header-inner {
    background: transparent;
}

.header.shop.v2 .header-inner {
    background: #fff;
    border-top: 1px solid #eee;
}

.header.shop .topbar p {
    color: #333;
}

.header.shop .all-category {
    color: #fff;
    background: transparent;
    position: relative;
    background: #fe5d09;
}

.header.shop .all-category h3 {
    padding: 14px 25px;
}

.header.shop .cat-heading {
    font-size: 16px;
    color: #fff;
}

.header.shop .cat-heading i {
    color: #fff;
    display: inline-block;
    margin-right: 15px;
    font-size: 22px;
}

.header.shop .main-category {
    position: absolute;
    left: 0;
    top: 50px;
    background: #fff;
    z-index: 1;
    width: 100%;
    -webkit-box-shadow: 0px 5px 15px #0000000a;
    -moz-box-shadow: 0px 5px 15px #0000000a;
    box-shadow: 0px 5px 15px #0000000a;
    opacity: 0;
}

.header.shop .main-category li {
    display: block;
    border-bottom: 1px solid #f6f6f6;
    position: relative;
}

.header.shop .main-category li:last-child {
    border: none;
}

.header.shop .main-category li a {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    padding: 13px 25px 13px 25px;
    display: block;
    text-transform: uppercase;
}

.header.shop .main-category li a i {
    display: inline-block;
    float: right;
}

.header.shop .sub-category {
    background: #fff;
    width: 220px;
    position: absolute;
    left: 238px;
    top: 0;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border-left: 3px solid #fe5d09;
    -webkit-box-shadow: 0px 5px 15px #0000000a;
    -moz-box-shadow: 0px 5px 15px #0000000a;
    box-shadow: 0px 5px 15px #0000000a;
}

.header.shop .main-category li:hover .sub-category {
    opacity: 1;
    visibility: visible;
}

.header.shop .main-category li a {
    text-transform: capitalize;
    font-weight: 400;
}

.header.shop .main-category li a:hover {
    color: #fe5d09;
}

.header.shop .main-category .main-mega {
    position: relative;
}

.header.shop .main-category li .mega-menu {
    width: 850px;
    display: inline-block;
    height: auto;
    position: absolute;
    left: 238px;
    top: 0;
    z-index: 99999;
    background: #fff;
    border: none;
    padding: 30px;
    border-left: 3px solid #fe5d09;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.header.shop .main-category li:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

.header.shop .main-category li .mega-menu .single-menu {
    width: 33%;
    display: inline-block;
    border: none;
    padding: 0;
    padding-right: 20px;
}

.header.shop .main-category li .mega-menu .single-menu a {
    padding: 0;
}

.header.shop .main-category li .mega-menu .single-menu .image {
    overflow: hidden;
}

.header.shop .main-category li .mega-menu .single-menu img {
    display: block;
    height: 100%;
    width: 100%;
    cursor: pointer;
}

.header.shop .main-category li .mega-menu .single-menu .image:hover img {
    transform: scale(1.1);
}

.header.shop .main-category li .mega-menu .single-menu .title-link {
    margin-bottom: 20px;
    background: #fe5d09;
    color: #fff;
    padding: 2px 13px;
    border-radius: 3px;
    display: inline-block;
    font-size: 14px;
}

.header.shop .main-category li .mega-menu .single-menu .title-link:hover {
    background: #333;
    color: #fff;
}

.header.shop .main-category li .mega-menu .single-menu .inner-link {
    margin-top: 25px;
}

.header.shop .main-category li .mega-menu .single-menu .inner-link a {
    margin-bottom: 10px;
}

.header.shop .main-category li .mega-menu .single-menu .inner-link a:hover {
    color: #fe5d09;
    background: transparent;
}

.header.shop .main-category li .mega-menu .single-menu .inner-link a:last-child {
    margin-bottom: 0px;
}

.header.shop .all-category:hover .main-category {
    opacity: 1;
    visibility: visible;
    z-index: 999;
}

.header.shop .menu-origin {
    float: none;
    display: inline-block;
    float: right;
}

.header.shop .nav li {
    margin-right: 40px;
    float: left;
    position: relative;
}

.header.shop .nav li {
    margin-right: 5px;
    position: relative;
    float: none;
}

.header.shop .nav li:last-child {
    margin-right: 0;
}

.header.shop .nav li .new {
    background: #fe5d09;
    color: #fff;
    text-transform: uppercase;
    font-size: 9px;
    position: absolute;
    left: 21px;
    top: 2px;
    font-weight: 500;
    height: 18px;
    line-height: 18px;
    text-align: center;
    display: block;
}

.header.shop.v2 .nav li a {
    color: #333;
}

.header.shop .nav li a {
    font-size: 15px;
    padding: 18px 21px 14px 24px;
    font-weight: 500;
    display: block;
    position: relative;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
    border-left: 1px solid #fff;
    text-align: center;
    line-height: 14px;
    letter-spacing: 0px;
    color: #4E4D4D;
    text-transform: uppercase;
    border-bottom: 3px solid #ffffff00;
}

.header.shop .nav li:hover a {
    /* color: #fff;*/
    background: #fe5d0900;
    border-bottom-color: #064481;
}

.header.shop.v2 .nav li:hover a {
    color: #fe5d09;
    background: transparent;
}

.header.shop .nav li.active a {
    color: #575757;
    border-bottom-color: #064481;
}

.header.shop.v2 .nav li.active a {
    color: #333 !important;
    background: transparent !important;
}

.header.shop.v2 .nav li.active a {
    color: #fe5d09 !important;
}

.header.shop .nav .dropdown li {
    margin: 0;
}

.header.shop .nav li .dropdown li:hover a {
    background: #fe5d09;
}

.header.shop.v2 .nav li.active .dropdown li a {
    color: #333 !important;
}

.header.shop.v2 .nav li.active .dropdown li a:hover {
    color: #fff !important;
    background: #fe5d09 !important;
}

.header.shop.v2 .nav li.active .dropdown li a:hover {
    color: #fff !important;
}

.header.shop.v2 .nav li .dropdown li:hover a {
    color: #fe5d09;
}

.header.shop .nav li .dropdown li a {
    color: #333;
    padding: 8px 15px;
    font-weight: 400;
    background: #fff;
}

.header.shop.v2 .nav li .dropdown li a {
    color: #333;
    background: #fff;
}

.header.shop .nav li .dropdown li a {
    font-weight: 400;
    border: none;
    font-size: 14px;
    text-align: left;
}

.header.shop .nav li .dropdown li a:hover {
    color: #fff;
}

.header.shop.v2 .nav li .dropdown li a:hover {
    color: #fff !important;
    background: #fe5d09;
}

.header.shop .nav li .dropdown li .dropdown.sub-dropdown li a:hover {
    background: #fe5d09;
}

.header.shop .right-bar {
    display: flex;
    padding: 0;
    margin: 0;
    /* top: 20px; */
    /* float: right; */
    position: relative;
    column-gap: 8px;
    justify-content: center;
}

.header.shop .right-bar .sinlge-bar.top-search a {
    transform: translateY(3px);
}

.header.shop .right-bar .sinlge-bar.top-search a:hover {
    color: #fe5d09;
}

.header.shop .right-bar .sinlge-bar .single-icon {
    color: #000000;
    position: relative;
    font: normal normal normal 14px/26px Roboto;
}

.header.shop .right-bar .sinlge-bar .single-icon:hover {
    color: #fe5d09;
}

.header.shop .right-bar .sinlge-bar .single-icon .total-count {
    position: absolute;
    top: -4px;
    right: -27px;
    background: #FE6109;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    color: #fff;
    border-radius: 100%;
    font-size: 11px;
    z-index: 1;
}

.header.shop .right-bar .sinlge-bar {
    display: inline-block;
    margin-right: 0px;
    background: #F9F9F9;
    padding: 5px 14px;
    /*  border-radius: 8px 0px 0px 8px;*/
    border-radius: 8px 8px 8sspx 8px;
}


/*.header.shop .right-bar .sinlge-bar a{
    color:#424646;
}*/

.header.shop .right-bar .sinlge-bar a:hover {
    color: #fe5d09;
}

.header.shop .right-bar .sinlge-bar:last-child {
    margin-right: 0px;
}

.header.shop .right-bar .sinlge-bar li a:hover {
    color: #fe5d09;
}

.mobile-search {
    display: none;
}


/* Header Search */


/* Search */

.header .search-top {
    display: none;
}

.header .search-top a {
    font-size: 17px;
}

.header .search-top a:hover {
    color: #fe5d09;
}

.header .search-form {
    position: absolute;
    left: -128px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    top: 46px;
    background: #ffffff75;
    padding: 7px;
    border-radius: 5px;
    transform: scaleY(0);
    box-shadow: 0px 4px 7px #0000003b;
    padding: 0;
    border-radius: 0;
}

.header .search-top.active .search-form {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
}

.header .search-form input {
    width: 220px;
    height: 45px;
    line-height: 45px;
    padding: 0 60px 0 15px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border-radius: 3px;
    border: none;
    background: #fff;
    color: #333;
    border-radius: 0;
}

.header .search-form button {
    position: absolute;
    right: 0;
    height: 45px;
    top: 0;
    width: 45px;
    background: transparent;
    border: none;
    color: #3353ea;
    border-radius: 0 3px 3px 0;
    border-radius: 0;
    border-left: 1px solid #eee;
    font-size: 15px;
    color: #333;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.header .search-form button:hover {
    color: #fff;
    background: #fe5d09;
    border-color: transparent;
}


/* Header Sticky */

.header .header-inner {
    width: 100%;
    z-index: 999;
    padding: 0px 50px;
}

.header.sticky .all-category {}

.header.sticky .all-category h3 {
    cursor: pointer;
}

.header.sticky .all-category .main-category {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.header.sticky .all-category:hover .main-category {
    opacity: 1;
    visibility: visible;
}

.header.sticky .header-inner .nav li a {
    color: #333;
}

.header.sticky.v3 .header-inner .nav li a {
    color: #fff;
}

.header.sticky .header-inner .nav li:hover a {
    color: #fff;
}

.header.sticky.v2 .header-inner .nav li:hover a {
    color: #fe5d09;
}

.header.sticky .header-inner .nav li .dropdown li a {
    color: #333;
}

.header.sticky.v2 .header-inner .nav li .dropdown li a {
    color: #333;
}


/*.header.sticky .header-inner .nav li .dropdown li a:hover{
    color:#fff;
}
.header.sticky .header-inner .nav li.active a {
    color: #fff;
}*/

.header.sticky .header-inner {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    animation: fadeInDown 1s both 0.2s;
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    z-index: 1200;
}

.header.sticky.v3 .header-inner {
    box-shadow: none;
}

.header.sticky.v3 .navbar-expand-lg .navbar-collapse {
    animation: fadeInDown 1s both 0.2s;
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}


/*======================================
    End Header CSS
========================================*/


/*======================================
    12-04-22 CSS start
========================================*/


/*.call-us {
    display: none;
}*/

.cat-page .single-product .product-img .product-action-2 a:hover {
    background-color: #063776;
}

.product-detail .product-size {
    display: none;
}

.product-detail .product-info.cats {
    display: none;
}

.product-tab-section .card-header button.btn.btn-link:hover {
    color: #0056b3;
    text-decoration: unset;
}

h5.mb-0.product-accordin::after {
    content: "\f067";
    display: block;
    left: auto;
    position: absolute;
    font-family: 'FontAwesome';
    right: 0px;
    font-size: 15px;
    top: 22px;
}

.row-design {
    display: flex;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.row-design li.list-checkbox {
    padding: 10px 20px;
    border: 1px solid #ddd;
    margin-right: 10px;
    margin-bottom: 10px;
    background: #FFF;
}

.row-design li.list-checkbox.listing-div {
    display: flex;
    padding: 0;
    border: none;
    margin: 0;
    background: transparent;
}

.row-design li.list-checkbox.listing-div .listItem {
    padding: 10px 20px;
    border: 1px solid #ddd;
    margin-right: 10px;
    background: #FFF;
}

.row-design li.list-checkbox .listItem label {
    margin: 0;
}

.row-design li.list-checkbox .listItem {
    padding: 0;
}


/*======================================
    12-04-22 CSS end
========================================*/


/*======================================
   Hero Area CSS
========================================*/

.hero-slider {
    background: #fff;
    overflow: hidden;
}

.hero-slider .single-slider {
    height: auto;
    /* background-image: url('https://via.placeholder.com/1900x700'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* height: 510px; */
    background-color: rgba(245, 245, 245, 1);
    /*padding: 20px 0;*/
}

.hero-slider .small-banner .single-banner img {
    height: 193px;
    object-position: top;
}

.hero-slider .small-banner .single-banner a {
    display: block;
}

.hero-slider .small-banner .single-banner.f1 {
    margin-bottom: 15px;
}

.hero-slider .text-inner {}

.hero-slider .hero-text {
    padding: 0 30px;
    margin-top: 100px;
}

.hero-slider .hero-text h1 {
    line-height: 50px;
    font-size: 47px;
    font-weight: 700;
    color: #fe5d09;
    margin-bottom: 20px;
}

.hero-slider .hero-text h1 span {
    font-size: 20px;
    display: block;
    margin-bottom: 12px;
    color: #333;
    font-weight: 700;
    line-height: initial;
}

.hero-slider .hero-text p {
    color: #333;
    margin-bottom: 35px;
}

.hero-slider .hero-text .button {
    margin: 0;
}

.hero-slider .hero-text .btn {
    color: #fff;
    background: #333;
    padding: 13px 30px;
    line-height: initial;
    border: none;
    height: auto;
    z-index: 0;
}

.hero-slider .hero-text .btn:hover {
    background: #fe5d09;
    color: #fff;
}

.hero-slider .container-fluid {
    padding: 0;
}

.hero-slider .owl-controls {
    position: absolute;
    bottom: 0;
    text-align: center;
    width: 100%;
    display: none;
}

.hero-slider .owl-nav {
    display: none;
}

.hero-slider .owl-theme .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    background: #062c6b00;
    border: 2px solid #062c6b;
}

.hero-slider .owl-theme .owl-dots .owl-dot.active span,
.hero-slider .owl-theme .owl-dots .owl-dot:hover span {
    background: #fe5d0900;
    border: 2px solid #fe5d09;
}

.hero-slider .owl-carousel .owl-item img {
    height: 465px;
    width: 100%;
    object-fit: cover;
}

.hero-slider .small-banner {
    padding: 0px 15px 0 0;
}


/* Start Hero Area 2 CSS */

.hero-area2 {
    position: relative;
}

.hero-area2 .single-slider.overlay:before {
    background: #fe5d09;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.9);
}

.hero-area2 .single-slider.overlay:hover:before {
    opacity: 0.9;
    visibility: visible;
    transform: scale(1);
}

.hero-area2 .single-slider {
    height: 500px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-area2 .single-slider .content {
    position: relative;
}

.hero-area2 .single-slider .content {
    width: 100%;
    padding: 15px;
    z-index: 2;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    text-align: center;
    padding-top: 120px;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
}

.hero-area2 .single-slider:hover .content {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-area2 .single-slider .content .sub-title {
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
}

.hero-area2 .single-slider .content .title {
    color: #fff;
    text-transform: uppercase;
    font-size: 24px;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
}

.hero-area2 .single-slider .content .des {
    color: #fff;
}

.hero-area2 .single-slider .content .button {}

.hero-area2 .single-slider .content .button .btn {
    padding: 9px 25px;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    margin-top: 25px;
}

.hero-area2 .single-slider .content .button .btn:hover {
    background: #fff;
    color: #333;
    border-color: transparent;
}


/* Owl Nav CSS */

.hero-area2 .owl-carousel .owl-nav {
    margin: 0;
    position: absolute;
    top: 50%;
    width: 100%;
    margin-top: -30px;
}

.hero-area2 .owl-carousel .owl-nav div {
    height: 60px;
    width: 40px;
    line-height: 60px;
    text-align: center;
    background: #333;
    color: #fff;
    font-size: 14px;
    position: absolute;
    margin: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    padding: 0;
    border-radius: 0;
}

.hero-area2 .owl-carousel .owl-nav div:hover {
    background: #fe5d09;
    color: #fff;
}

.hero-area2 .owl-carousel .owl-controls .owl-nav .owl-prev {
    left: 0;
}

.hero-area2 .owl-carousel .owl-controls .owl-nav .owl-next {
    right: 0;
}


/* Hero Area 3 */

.hero-area3 {}

.hero-area3 .big-content {
    background-image: url('https://via.placeholder.com/850x530');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 511px;
    margin-top: 30px;
    position: relative;
}

.hero-area3 .big-content .inner {
    position: absolute;
    right: 0;
    top: 50%;
    padding: 0 50px 0 360px;
    transform: translateY(-50%);
}

.hero-area3 .big-content .title {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 37px;
}

.hero-area3 .big-content .title span {
    color: #fe5d09;
}

.hero-area3 .big-content .des {}

.hero-area3 .big-content .button {
    margin-top: 40px;
    display: block;
}

.hero-area3 .big-content .button .btn {
    color: #fff;
}

.hero-area3 .small-content {
    height: 240px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 30px;
    position: relative;
}

.hero-area3 .small-content.first {
    background-image: url('https://via.placeholder.com/450x300');
}

.hero-area3 .small-content.secound {
    background-image: url('https://via.placeholder.com/450x300');
}

.hero-area3 .small-content .inner {
    padding: 30px;
    text-align: right;
    position: absolute;
    right: 0;
    bottom: 0;
}

.hero-area3 .small-content .title {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: capitalize;
}

.hero-area3 .small-content .title span {
    color: #fe5d09;
}

.hero-area3 .small-content .des {}

.hero-area3 .small-content .button {
    margin-top: 10px;
    display: block;
}

.hero-area3 .small-content .button .btn {
    background: transparent;
    padding: 0;
    color: #333;
    border-bottom: 2px solid #333;
    font-size: 13px;
}

.hero-area3 .small-content .button .btn:hover {
    color: #fe5d09;
    border-color: #fe5d09;
}


/* Hero Area 4 */

.hero-area4 .big-content {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 510px;
    margin-top: 30px;
    position: relative;
}

.hero-area4 .big-content .inner {
    position: absolute;
    right: 0;
    top: 50%;
    padding: 0 80px 0 50px;
    transform: translateY(-50%);
}

.hero-area4 .big-content .title {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 35px;
}

.hero-area4 .big-content .title span {
    color: #fe5d09;
}

.hero-area4 .big-content .des {}

.hero-area4 .big-content .button {
    margin-top: 40px;
    display: block;
}

.hero-area4 .big-content .button .btn {
    color: #fff;
}

.hero-area4 .owl-carousel .owl-nav {
    margin: 0;
    position: absolute;
    top: 50%;
    width: 100%;
    margin-top: -20px;
}

.hero-area4 .owl-carousel .owl-nav div {
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    background: #333;
    color: #fff;
    font-size: 14px;
    position: absolute;
    margin: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    padding: 0;
    border-radius: 0;
}

.hero-area4 .owl-carousel .owl-nav div:hover {
    background: #fe5d09;
    color: #fff;
}

.hero-area4 .owl-carousel .owl-controls .owl-nav .owl-prev {
    left: 0;
}

.hero-area4 .owl-carousel .owl-controls .owl-nav .owl-next {
    right: 0;
}


/*======================================
   End Hero Area CSS
========================================*/


/*======================================
   Start Small Banner CSS
========================================*/

.small-banner {
    padding: 30px 0;
    padding-bottom: 0;
}

.small-banner .single-banner {
    overflow: hidden;
    position: relative;
}

.small-banner .single-banner img {
    /*height: 220px;*/
    width: 100%;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    object-fit: cover;
}

.small-banner .single-banner .content {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    padding-left: 35px;
}

.small-banner .single-banner h3 {
    font-size: 22px;
    font-weight: 700;
    text-transform: capitalize;
    color: #333;
}

.small-banner .single-banner h3 span {
    color: #fe5d09;
}

.small-banner .single-banner p {
    font-size: 14px;
    color: #fe5d09;
    font-weight: 500;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.small-banner .single-banner a {
    color: #333;
    /*margin-top: 22px;*/
    display: block;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
    text-transform: uppercase;
    /*border-bottom:2px solid #333;*/
    width: 100%;
}

.small-banner .single-banner a:hover {
    color: #fe5d09;
    border-color: #fe5d09;
}


/*======================================
   End Small Banner CSS
========================================*/


/*======================================
   Start Mid Banner CSS
========================================*/

.midium-banner {
    padding: 0;
}

.midium-banner .single-banner {
    position: relative;
}

.midium-banner .single-banner img {
    height: 100%;
    width: 100%;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.midium-banner .single-banner .content {
    padding-left: 50px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.midium-banner .single-banner h3 {
    font-size: 27px;
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
    line-height: 30px;
}

.midium-banner .single-banner h3 span {
    color: #fe5d09;
}

.midium-banner .single-banner p {
    font-size: 13px;
    color: #fe5d09;
    font-weight: 500;
    margin-bottom: 5px;
    text-transform: uppercase;
}


/*.midium-banner .single-banner a {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: .375rem .75rem;
    font-size: 13px;
    border-radius: .25rem;
    background: #333;
    color: #fff !important;
    padding: 10px 27px;
    border-radius: 30px;
    margin-top: 25px;
    text-transform: uppercase;
}
.midium-banner .single-banner a:hover{
    background:#fe5d09;
    color:#fff;
}*/


/*======================================
   End Mid Banner CSS
========================================*/


/*======================================
   Start Most Popular CSS
========================================*/

.pro-tab-viewmore-wrap {
    position: relative;
    text-align: center;
}

.most-popular .section-title {
    margin-bottom: 10px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* border-bottom: 1px solid #cfcdcd; */
}

.pro-tab-viewmore-wrap .pro-viewmore {
    position: absolute;
    right: 40px;
    top: 0;
}

.most-popular .single-product {
    margin: 0px 15px 0 15px;
}


/* Slider Nav */

.most-popular .owl-nav,
.cate-sec .owl-nav {
    margin: 0;
    position: absolute;
    top: 50%;
    width: 100%;
    margin-top: -25px;
}

.most-popular .owl-carousel .owl-nav div,
.cate-sec .owl-carousel .owl-nav div {
    height: 60px;
    width: 30px;
    line-height: 58px;
    background: #fff0;
    color: #064E8C;
    position: absolute;
    margin: 0;
    border-radius: 0;
    font-size: 34px;
    text-align: center;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    /* / box-shadow: 0px 0px 10px #3333331c; /*/
    font-weight: bold;
}

.most-popular .owl-carousel .owl-nav div:hover,
.cate-sec .owl-carousel .owl-nav div:hover {
    color: #9e9e9e;
    background: #fe5d0900;
}

.most-popular .owl-carousel .owl-controls .owl-nav .owl-prev {
    left: -15px;
}

.most-popular .owl-carousel .owl-controls .owl-nav .owl-next {
    right: -15px;
}


/*======================================
   End Most Popular CSS
========================================*/


/*======================================
   Start Single Product CSS
========================================*/

.product-area .nav-tabs {
    text-align: center;
    display: inline-block;
    width: 100%;
    border: none;
}

.product-area .nav-tabs .nav-item {
    margin-bottom: -1px;
    display: inline-block;
}

.product-area .nav-tabs li a {
    color: #333;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    margin-right: 5px;
    font-weight: 500;
    background: #fff;
    color: #333;
    padding: 3px 14px;
    border-radius: 3px;
    font-size: 13px;
}

.product-area .nav-tabs li:last-child a {
    border-color: transparent;
}

.product-area .nav-tabs li a i {
    margin-right: 10px;
}

.product-area .nav-tabs li a.active,
.product-area .nav-tabs li:hover a {
    background: #fe5d09;
    color: #fff;
    border-color: transparent;
}


/* Sinlge Product */

.single-product {
    margin-top: 50px;
}

.single-product .product-img {
    position: relative;
    /*overflow: hidden;*/
    cursor: pointer;
}

.single-product .product-img a {
    display: block;
    position: relative;
}

.single-product .product-img a img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    border: 1px solid #DDD;
}

.single-product .product-img a img.hover-img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease, transform 2s cubic-bezier(0, 0, 0.44, 1.18), -webkit-transform 2s cubic-bezier(0, 0, 0.44, 1.18);
}

.single-product .product-img a span.price-dec {
    background-color: #f6931d;
    display: inline-block;
    font-size: 11px;
    color: #fff;
    right: 20px;
    top: 20px;
    padding: 1px 16px;
    font-weight: 700;
    border-radius: 0;
    text-align: center;
    position: absolute;
    text-transform: uppercase;
    border-radius: 30px;
    height: 26px;
    line-height: 25px;
}

.single-product .product-img a span.new {
    background-color: #8493ca;
    display: inline-block;
    font-size: 11px;
    color: #fff;
    right: 20px;
    top: 20px;
    padding: 1px 16px;
    font-weight: 700;
    border-radius: 0;
    text-align: center;
    position: absolute;
    text-transform: uppercase;
    border-radius: 30px;
    height: 26px;
    line-height: 24px;
    background-image: linear-gradient(to right, rgb(6 46 109), rgb(7 161 218));
}

.single-product .product-img a span.out-of-stock {
    background-color: #ed1b24;
    display: inline-block;
    font-size: 11px;
    color: #fff;
    right: 20px;
    top: 20px;
    padding: 1px 16px;
    font-weight: 700;
    border-radius: 0;
    text-align: center;
    position: absolute;
    text-transform: uppercase;
    border-radius: 30px;
    height: 26px;
    line-height: 24px;
}

.single-product .product-img .product-action {
    display: inline-block;
    position: absolute;
    right: 6px;
    bottom: 0;
    z-index: 99;
    border-radius: 3px;
}

.single-product .product-img .product-action a {
    background-color: transparent;
    color: #fff;
    display: block;
    font-size: 16px;
    display: inline-block;
    margin-right: 0px;
    text-align: right;
    height: 35px;
    position: relative;
    top: 2px;
}

.single-product .product-img .product-action a:last-child {
    margin-right: 0;
    border: none;
}

.single-product .product-img .product-action a i {
    line-height: 40px;
}

.single-product .product-img .product-action a span {
    visibility: hidden;
    position: absolute;
    background: #fe5d09 !important;
    color: #fff !important;
    text-align: center;
    padding: 3px 12px;
    z-index: 3;
    opacity: 0;
    -webkit-transition: opacity .6s, margin .3s;
    -o-transition: opacity .6s, margin .3s;
    transition: opacity .6s, margin .3s;
    font-size: 11px;
    right: 8px;
    line-height: 14px;
    top: -3px;
    margin-top: -5px;
    margin-right: 0;
    display: inline-block;
    width: 120px;
    border-radius: 15px 0 0 15px;
}

.single-product .product-img .button-head .product-action a span::after {
    position: absolute;
    content: "";
    right: 0;
    bottom: -12px;
    border: 6px solid #fe5d09;
    border-left: 0px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.single-product .product-img .product-action a:hover {
    color: #fe5d09;
}

.single-product .product-img .product-action a:hover span {
    visibility: visible;
    opacity: 1;
    color: #333;
    background: #fff;
    margin-top: -12px;
}

.single-product .product-img .product-action.pro-action-width-dec a {
    width: 30px;
    height: 30px;
    font-size: 14px;
}

.single-product .product-img .product-action.pro-action-width-dec a i {
    line-height: 30px;
}

.single-product .product-img .product-action.pro-action-width-dec-2 {
    bottom: 45px;
}

.single-product .product-img .product-action-2 {
    position: absolute;
    right: 14px;
    bottom: -51%;
    text-align: left;
    z-index: 10;
    /*z-index: 1500;*/
    -webkit-transition: all 250ms ease-out;
    -o-transition: all 250ms ease-out;
    transition: all 250ms ease-out;
    /* display: inline-block; */
    /* height: 100%; */
    display: none;
}

.single-product .product-img .product-action-2 a {
    display: block;
    background-color: #fe5a09;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    border: 1px solid #ebebeb;
    border-radius: 4px;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    padding: 6px 16px 4px 16px;
}


/*.single-product .product-img .product-action-2 a:hover {
    color: #ffffff;
}*/

.single-product .button-head {
    /* background: #063977; */
    /* display: inline-block; */
    /* height: 40px; */
    /* width: 100%; */
    /* position: absolute; */
    /* left: 0; */
    /* bottom: 0px; */
    z-index: 9;
    /* height: 40px; */
    line-height: 40px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    /* background-image: linear-gradient(to right, rgb(6 46 109), rgb(7 161 218)); */
}


/*.single-product:hover .button-head{
    bottom:0;
}*/

.single-product .product-img .shop-list-quickview {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    text-align: center;
    z-index: 99;
    margin-top: 20px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .35s ease 0s;
    -o-transition: all .35s ease 0s;
    transition: all .35s ease 0s;
}

.single-product .product-img .shop-list-quickview a {
    color: #000;
    background-color: #fff;
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    font-size: 18px;
}

.single-product .product-img .shop-list-quickview a:hover {
    background-color: #222;
    color: #fff;
}

.single-product .product-img .shop-list-quickview a i {
    line-height: 50px;
}

.single-product .product-content {
    /*margin-top:20px;*/
    padding: 20px;
    /*          height: 95px;*/
}

.single-product .product-img:hover.default-overlay::before {
    background-color: rgba(38, 38, 38, 0.2);
    z-index: 9;
    -webkit-transition: all 250ms ease-out;
    -o-transition: all 250ms ease-out;
    transition: all 250ms ease-out;
    pointer-events: none;
    opacity: 1;
}

.single-product .product-img:hover.default-overlay.metro-overlay::before {
    background-color: rgba(38, 38, 38, 0.4);
    z-index: 9;
    -webkit-transition: all 250ms ease-out;
    -o-transition: all 250ms ease-out;
    transition: all 250ms ease-out;
    pointer-events: none;
    opacity: 1;
}

.single-product .product-img:hover img.hover-img {
    opacity: 1;
}

.single-product .product-content h3 {
    line-height: 14px;
    /*    text-align: left;*/
    margin: 0 !IMPORTANT;
    /* height: 41px;*/
    overflow: hidden;
}

.single-product .product-content h3 a {
    margin: 0;
    font: normal normal normal 17px/20px Roboto;
    letter-spacing: 0px;
    color: #4E4D4D;
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 42px;
    width: 100%;
}

.single-product .product-content h3 a:hover {
    color: #fe5d09;
}

.single-product .product-content .product-price {
    /* margin: 8px 0 0; */
    /* position: absolute; */
    /* bottom: 8px; */
    display: flex;
    column-gap: 5px;
    align-items: center;
    justify-content: center;
    text-align: center;
}


/*.product-area .owl-carousel .owl-stage-outer {
    width: 95%;
    margin: 0 auto;
}*/

.single-product .product-content .product-price span {
    font-size: 18px;
    font-weight: 500;
    order: 1;
    color: #FE6109;
    text-transform: capitalize;
    margin-top: 12px;
    letter-spacing: -1.4px;
}

.single-product .product-content .product-price span.old {
    text-decoration: line-through;
    opacity: 1;
    margin-right: 2px;
    order: 2;
    font-size: 16px;
    font-weight: 400;
    color: #818181;
}


/*======================================
   End Single Product CSS
========================================*/


/*======================================
   Start Shop Sidebar CSS
========================================*/

.shop-sidebar .single-widget {
    margin-top: 30px;
    background: #F6F7FB;
    padding: 30px;
}

.shop-sidebar .single-widget:first-child {
    margin-top: 0;
}

.shop-sidebar .single-widget .title {
    position: relative;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 25px;
    display: block;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}


/* Shop Price */

.shop .range .price-filter {
    display: block;
    margin-top: 20px;
}

.shop .range #slider-range {
    box-shadow: none;
    border: none;
    height: 4px;
    background: #fe5d09;
    color: #fe5d09;
    border-radius: 0px;
}

.shop .range #slider-range .ui-slider-range {
    box-shadow: none;
    background: #222;
    border-radius: 0px;
    border: none;
}

.shop .range .ui-slider-handle.ui-state-default.ui-corner-all {
    width: 14px;
    height: 14px;
    line-height: 10px;
    background: #222;
    border: none;
    border-radius: 100%;
    top: -5px;
}

.shop .range .label-input {
    margin-top: 15px;
}

.shop .range .label-input span {
    margin-right: 5px;
    color: #282828;
}

.shop .range .ui-slider-handle.ui-state-default.ui-corner-all {
    background: #fe5d09;
    color: #fe5d09;
    cursor: pointer;
}

.shop .range .label-input input {
    border: none;
    margin: 0;
    font-weight: 600;
    font-size: 14px;
    color: #222;
    background: transparent;
}

.shop .range .check-box-list {
    margin-top: 15px;
}

.shop .range .check-box-list li {
    margin-bottom: 5px;
}

.shop .range .check-box-list li:last-child {
    margin: 0;
}

.shop .range .check-box-list li label input {
    display: inline-block;
    margin-right: 6px;
    position: relative;
    top: 1px;
}

.shop .range .check-box-list li label {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    cursor: pointer;
}

.shop .range .check-box-list .count {
    margin-left: 5px;
    color: #666;
}


/* Category List */

.shop-sidebar .categor-list {
    margin-top: 10px;
}

.shop-sidebar .categor-list li {}

.shop-sidebar .categor-list li {
    margin-bottom: 10px;
}

.shop-sidebar .categor-list li:last-child {
    margin-bottom: 0px;
}

.shop-sidebar .categor-list li a {
    display: inline-block;
    color: #666;
    font-weight: 400;
    font-size: 14px;
    text-transform: capitalize;
}

.shop-sidebar .categor-list li a:hover {
    color: #fe5d09;
}


/* Recent Post */

.shop-sidebar .single-post {
    position: relative;
    margin-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
}

.shop-sidebar .single-post.first {
    padding-top: 0px;
}

.shop-sidebar .single-post:last-child {
    padding-bottom: 0px;
    border: none;
}

.shop-sidebar .single-post .image img {
    height: 80px;
    width: 80px;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 100%;
}

.shop-sidebar .single-post .content {
    padding-left: 100px;
}

.shop-sidebar .single-post .content h5 {
    line-height: 18px;
}

.shop-sidebar .single-post .content h5 a {
    color: #222;
    font-weight: 500;
    font-size: 14px;
    font-weight: 500;
    display: block;
}

.shop-sidebar .single-post .content h5 a:hover {
    color: #fe5d09;
}

.shop-sidebar .single-post .content .price {
    display: block;
    color: #333;
    font-weight: 500;
    margin: 5px 0 0px 0;
    text-transform: uppercase;
    font-size: 14px;
}

.shop-sidebar .single-post .reviews li {
    display: inline-block;
}

.shop-sidebar .single-post .reviews li i {
    color: #999;
}

.shop-sidebar .single-post .reviews li.yellow i {
    color: #fe5d09;
}


/* Shop Topbar */

.shop .shop-top {
    clear: both;
    background: #f6f7fb;
    padding: 18px 20px 50px 20px;
}

.shop .shop-shorter {
    float: left;
}

.shop .single-shorter {
    display: inline-block;
    margin-right: 10px;
}

.shop .single-shorter:last-child {
    margin: 0;
}

.shop .single-shorter label {
    display: inline-block;
    float: left;
    margin: 4px 5px 0 0;
    font-weight: 500;
}

.shop .single-shorter option {}

.shop .view-mode {
    float: right;
}

.shop .view-mode li {
    display: inline-block;
    margin-right: 5px;
}

.shop .view-mode li:last-child {
    margin: 0;
}

.shop .view-mode li a {
    width: 43px;
    height: 32px;
    background: transparent;
    border: 1px solid #77777775;
    text-align: center;
    display: block;
    line-height: 32px;
    color: #888;
    border-radius: 0px;
}

.shop .view-mode li.active a,
.shop .view-mode li:hover a {
    background: #fe5d09;
    color: #fff;
    border-color: transparent;
}


/*======================================
   End Shop Sidebar CSS
========================================*/


/*======================================
   Start Shop Single CSS
========================================*/

.shop.single {
    padding: 70px 0 100px;
}

.shop.single .product-gallery {
    margin-top: 30px;
}

.shop.single .flexslider-thumbnails {
    position: relative;
}

.shop.single .product-gallery .slides li {
    position: relative;
}

.shop.single .product-gallery .slides li img {
    width: 100%;
}

.shop.single .flex-control-nav {
    margin-top: 15px;
}

.shop.single .flex-control-thumbs li {
    width: 20%;
    position: relative;
    margin: 0 8px 10px -3px;
}

.shop.single .flex-control-thumbs li img {
    border: none;
    padding: 0;
    border: 1px solid transparent;
}

.shop.single .flex-control-thumbs li img.flex-active {
    border-color: #fe5d09;
}

.shop.single .flex-direction-nav {
    display: none;
}

.shop.single .product-des {
    margin-top: 30px;
}

.shop.single .product-des .short h4 {
    font-size: 22px;
    font-weight: 600;
    margin-top: -5px;
    line-height: 28px;
}

.shop.single .product-des .short .description {
    font-size: 14px;
    color: #555555;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.shop.single .product-des {}

.shop.single .product-des .total-review {
    font-size: 14px;
    font-weight: 500;
    margin-left: 10px;
    display: inline-block;
}

.shop.single .product-des .total-review:hover {
    color: #fe5d09;
}

.shop.single .product-des .rating {
    margin-top: 20px;
    display: inline-block;
}

.shop.single .product-des .rating li {
    display: inline-block;
}

.shop.single .product-des .rating li i {
    color: #fe5d09;
}

.shop.single .product-des .rating li.dark i {
    color: #555;
}

.shop.single .product-des .price {
    font-size: 20px;
    color: #333;
    font-weight: 600;
    margin-top: 15px;
}

.shop.single .product-des .price s {
    color: #333;
}

.shop.single .product-des .price span {
    display: inline-block;
    margin-right: 15px;
    color: #fe5d09;
}

.shop.single .product-des .product-buy {
    margin-top: 40px;
}

.shop.single .product-des .product-buy {}

.shop.single .product-des .color {
    display: inline-block;
    margin-right: 50px;
}

.shop.single .product-des .color h4 {
    font-size: 18px;
    font-weight: 600;
}

.shop.single .product-des .color h4 span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-top: 4px;
}

.shop.single .product-des .color ul {
    margin-top: 10px;
}

.shop.single .product-des .color ul li {
    display: inline-block;
    margin-right: 5px;
}

.shop.single .product-des .color ul li:last-child {
    margin-right: 0;
}

.shop.single .product-des .color ul li a {
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    display: block;
    background: #333;
}

.shop.single .product-des .color ul li a i {
    font-size: 11px;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.shop.single .product-des .color ul li a:hover i {
    opacity: 1;
    visibility: visible;
}

.shop.single .product-des .color ul li .one {
    background: #3498db;
}

.shop.single .product-des .color ul li .two {
    background: #fe5d09;
}

.shop.single .product-des .color ul li .three {
    background: #8e44ad;
}

.shop.single .product-des .color ul li .four {
    background: #2ecc71;
}


/* Size */

.shop.single .product-des .size {
    display: inline-block;
}

.shop.single .product-des .size h4 {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-top: 0px;
}

.shop.single .product-des .size ul {
    display: inline-block;
    margin-top: 10px;
}

.shop.single .product-des .size ul li {
    display: inline-block;
    margin-right: 5px;
}

.shop.single .product-des .size ul li:last-child {
    margin-right: 0;
}

.shop.single .product-des .size ul li a {
    display: block;
    height: 30px;
    width: 36px;
    border: 1px solid #eee;
    text-align: center;
    line-height: 30px;
    font-size: 14px;
}

.shop.single .product-des .size ul li a:hover {
    color: #fe5d09;
}

.shop.single .quantity {
    display: inline-block;
    margin-right: 10px;
}

.shop.single .quantity h6 {
    display: inline-block;
    margin-right: 10px;
    font-size: 15px;
    font-weight: 500;
}

.shop.single .quantity .input-group {
    width: 151px;
    display: inline-block;
}

.shop.single .quantity .button {
    display: inline-block;
    position: absolute;
    top: 0;
    display: inline-block;
}

.shop.single .quantity .button.minus {
    left: 0;
    border-radius: 0;
    overflow: hidden;
}

.shop.single .quantity .button.plus {
    right: 0;
    border-radius: 0;
    overflow: hidden;
}

.shop.single .quantity .button .btn {
    padding: 0;
    width: 35px;
    height: 45px;
    line-height: 45px;
    border-radius: 0px;
    background: transparent;
    color: #282828;
    font-size: 12px;
    border: none;
}

.shop.single .quantity .button .btn:hover {
    color: #fe5d09;
}

.shop.single .quantity .input-number {
    border: 1px solid #eceded;
    width: 100%;
    text-align: center;
    height: 45px;
    border-radius: 0px;
    overflow: hidden;
    padding: 0px 38px;
}

.shop.single .add-to-cart {
    display: inline-block;
}

.shop.single .add-to-cart .btn {
    height: 45px;
    width: auto;
    padding: 0 42px;
    line-height: 45px;
    text-align: center;
    text-transform: capitalize;
    margin-right: 5px;
    border-radius: 0px;
    background: #333;
    color: #fff;
    display: inline-block;
    font-weight: 500;
}

.shop.single .add-to-cart .btn:hover {
    color: #fff;
    background: #fe5d09;
}

.shop.single .add-to-cart .btn.min {
    padding: 0 20px;
    font-size: 17px;
    position: relative;
    top: 1px;
    line-height: 45px;
}

.shop.single .cat {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-top: 30px;
}

.shop.single .cat a {
    display: inline-block;
    margin-left: 10px;
}

.shop.single .cat a:hover {
    color: #fe5d09;
}

.shop.single .availability {
    color: #333;
    font-size: 14px;
    margin-top: 6px;
}


/* Product Tab */

.shop.single .product-info {
    margin-top: 50px;
}

.shop.single .nav-tabs {
    border: none;
}

.shop.single .nav-tabs li {
    margin-right: 10px;
}

.shop.single .nav-tabs li:last-child {
    margin-right: 0;
}

.shop.single .nav-tabs li a {
    border: 0px solid;
    border-radius: 0px;
    background: #fff;
    color: #333;
    padding: 10px 30px;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid #eee;
}

.shop.single .nav-tabs li a i {
    margin-right: 10px;
}

.shop.single .nav-tabs li a.active,
.shop.single .nav-tabs li:hover a {
    background: #fe5d09;
    color: #fff;
    border-color: transparent;
}

.shop.single .tab-single {}

.shop.single .single-des {
    margin-top: 35px;
}

.shop.single .single-des h4 {
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 22px;
}

.shop.single .single-des ul {}

.shop.single .single-des ul li {
    color: #555;
    display: block;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.shop.single .single-des ul li::before {
    position: absolute;
    content: "";
    left: 0;
    top: 9px;
    height: 7px;
    width: 7px;
    background: #fe5d09;
    border-radius: 50%;
}

.shop.single .single-des p {}

.shop.single .item-info {
    width: 100%;
}

.shop.single .item-info tbody {}

.shop.single .item-info tbody tr {}

.shop.single .item-info tbody td {
    border: 1px solid #e6e6e6;
    padding: 10px;
}

.shop.single .item-info tbody strong {}

.shop.single .ratting-main {}

.shop.single .avg-ratting {
    margin-bottom: 20px;
}

.shop.single .avg-ratting h4 {
    font-size: 18px;
    margin: 0;
}

.shop.single .avg-ratting h4 span {
    font-size: 14px;
}

.shop.single .single-rating {
    margin-bottom: 20px;
}

.shop.single .single-rating:last-child {
    margin: 0;
    border: none;
    padding: 0;
}

.shop.single .rating-author {
    float: left;
    margin-right: 10px;
    padding: 20px;
    padding-right: 10px;
}

.shop.single .rating-author img {
    width: 60px;
    border-radius: 100%;
    height: 60px;
}

.shop.single .rating-des {
    padding-left: 72px;
    background: #f9f8f8;
    padding: 17px 20px 17px 107px;
}

.shop.single .rating-des .ratings {
    margin: 0;
}

.shop.single .rating-des h6 {
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
}

.shop.single .ratting-main .single-rating ul {}

.shop.single .ratting-main .single-rating ul li {
    display: inline-block;
}

.shop.single .ratting-main .single-rating ul li i {
    color: #fe5d09;
    font-size: 14px;
}

.shop.single .review-inner label {
    display: inline-block;
    margin: 0 5px 0 0;
}

.shop.single .review-inner .ratings {
    overflow: visible;
    display: inline-block;
    margin: 0;
}

.shop.single .review-inner .ratings ul {
    display: inline-block;
}

.shop.single .ratting-main .single-rating ul {
    display: inline-block;
    margin-right: 5px;
}

.shop.single .ratings .rate-count {
    display: inline-block;
    color: #666;
    font-size: 13px;
}

.shop.single .comment-review {
    margin-bottom: 30px;
}

.shop.single .comment-review .add-review {
    margin-top: 30px;
}

.shop.single .comment-review .add-review h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 7px;
}

.shop.single .comment-review .add-review p {
    color: #333;
}

.shop.single .comment-review h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 7px;
    margin-top: 20px;
}

.shop.single .comment-review .review-inner {
    margin-bottom: 15px;
    display: block;
}

.shop.single .comment-review .rating li {
    display: inline-block;
}

.shop.single .comment-review .rating li i {
    color: #fe5d09;
    font-size: 14px;
}

.shop.single .rating-des p {
    margin-top: 5px;
}

.shop.single .avg-ratting h4 {
    font-size: 20px;
    color: #333;
}

.shop.single .avg-ratting {}

.shop.single .form .form-group input {
    width: 100%;
    height: 45px;
    padding: 10px 20px;
    background: #fff;
    border: 1px solid #ddd;
    resize: none;
    border-radius: 0;
    color: #333;
}

.shop.single .form .form-group button {
    border: none;
    padding: 17px 50px;
}

.shop.single .form .form-group textarea {
    width: 100%;
    height: 200px;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    resize: none;
    border-radius: 0;
    color: #333;
}

.shop.single .form .form-group label {
    color: #333;
    position: relative;
}

.shop.single .form .form-group label span {
    color: #ff2c18;
    display: inline-block;
    position: absolute;
    right: -12px;
    top: 4px;
    font-size: 16px;
}

.shop.single .review-panel {
    margin-top: 35px;
}


/*======================================
   End Shop Single CSS
========================================*/


/*======================================
   Start Shop Home List CSS
========================================*/

.shop-home-list {
    padding: 0;
    padding-bottom: 100px;
    display: none;
}

.shop-home-list .shop-section-title {
    margin-bottom: 20px;
}

.shop-home-list .shop-section-title h1 {
    font-size: 22px;
    margin-bottom: 0;
    text-transform: capitalize;
    position: relative;
    color: #2c2d3f;
    font-weight: 700;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.shop-home-list .shop-section-title h1::before {
    position: absolute;
    content: "";
    height: 2px;
    width: 50px;
    background: #fe5d09;
    left: 0;
    bottom: -1px;
}

.shop-home-list .single-list {
    overflow: hidden;
    position: relative;
    margin-top: 30px;
    border: 1px solid #eee;
    padding: 10px;
}

.shop-home-list .single-list .list-image {
    position: relative;
}

.shop-home-list .single-list .list-image.overlay:before {
    background: #000;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.shop-home-list .single-list .list-image.overlay:hover:before {
    opacity: 0.3;
    visibility: visible;
}

.shop-home-list .single-list .list-image .buy {
    height: 40px;
    width: 40px;
    line-height: 40px;
    font-size: 14px;
    color: #fff;
    background: #fe5d09;
    border-radius: 100%;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -20px;
    margin-top: -20px;
    text-align: center;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
}

.shop-home-list .single-list .list-image .buy:hover {
    background: #fff;
    color: #333;
}

.shop-home-list .single-list .list-image:hover .buy {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.shop-home-list .single-list .no-padding {
    padding-right: 0px;
}

.shop-home-list .single-list img {
    width: 100%;
    height: 100%;
}

.shop-home-list .single-list .content {
    padding-top: 45px;
    padding-right: 12px;
}

.shop-home-list .single-list .content .title {
    line-height: 18px;
}

.shop-home-list .single-list .content .title a {
    font-size: 14px;
    font-weight: 600;
}

.shop-home-list .single-list .content .titlea {
    color: #333;
}

.shop-home-list .single-list .content a:hover {
    color: #fe5d09;
}

.shop-home-list .single-list .content .price {
    margin-top: 15px;
    font-weight: 500;
    background: #fe5d09;
    display: inline-block;
    color: #fff;
    padding: 2px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
}


/*======================================
   End Shop Home List CSS
========================================*/


/*======================================
   Start Shopping Cart CSS
========================================*/

.table.shopping-summery {
    background: #fff;
}

.shopping-cart {
    background: #f6f6f6;
    padding: 50px 0;
}

.shopping-summery thead .main-hading {
    padding: 0px 50px;
}

.shopping-summery thead {
    background: #06407e;
    color: #fff;
}

.shopping-summery thead tr th {
    border: none;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.shopping-summery tbody tr {
    border-bottom: 1px solid #fe5d09;
    margin-top: 20px;
}

.shopping-summery tbody tr img {
    /* border-radius: 0;
    width: 80px;
    height: 80px;
    object-fit: contain;*/
    /*border: 1px solid #ddd;*/
}

.shopping-summery tbody tr img {
    border-radius: 0;
    width: 100%;
    height: 80px;
    object-fit: contain;
    /* border: 1px solid #ddd; */
}

.shopping-cart.custom-shopping .table td.product-name-text {
    width: 100%;
}

.shopping-summery tbody tr:last-child {
    border: none;
}

.shopping-summery tbody tr {
    border-bottom: 0.8pt solid #f3f5f6 !important;
    width: 100%;
}

.shopping-summery tbody .product-name a {
    font-weight: 600;
    color: #282828;
    font-weight: 600;
    font-size: 14px;
}

.shopping-cart .table p {
    font-size: 14px;
    color: #666;
}

.shopping-summery tbody .product-name a:hover {
    color: #fe5d09;
}

.shopping-summery tbody .product img {
    max-width: 70px;
    border-radius: 100%;
    max-height: 65px;
    border: 1px solid #e6e6e6;
    padding: 4px;
}

.shopping-summery tbody .product:hover img {
    border-color: #fe5d09;
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
}

.shopping-cart .border {}

.shopping-cart .table .remove-icon {
    font-size: 16px;
}

.shopping-cart .table td {
    vertical-align: middle;
    border-top: 1px solid #eee;
    padding: 30px;
}

.shopping-summery tbody .price {
    text-align: center;
}

.shopping-summery tbody .price span {}

.shopping-cart tbody .qty .input-group {
    width: 100px;
    display: inline-block;
}

.shopping-cart .qty .button {
    display: inline-block;
    position: absolute;
    top: 0;
}

.shopping-cart .qty .button.minus {
    left: 0;
    border-radius: 0;
    overflow: hidden;
}

.shopping-cart .qty .button.plus {
    right: 0;
    border-radius: 0;
    overflow: hidden;
}

.shopping-cart .qty .button .btn {
    padding: 0;
    width: 44px;
    height: 47px;
    line-height: 50px;
    border-radius: 0px;
    background: transparent;
    color: #282828;
    border: none;
    font-size: 12px;
}

.shopping-cart .qty .button .btn:hover {
    color: #fe5d09;
}

.shopping-cart .qty .input-number {
    border: 1px solid #eceded;
    width: 100%;
    text-align: center;
    height: 47px;
    border-radius: 0;
    overflow: hidden;
    padding: 0px 45px;
}

.shopping-summery tbody .total-amount {
    text-align: center;
}

.shopping-summery tbody .total-amount span {}

.shopping-summery tbody .action {
    text-align: center;
}

.shopping-summery tbody .action a:hover {
    color: #fe5d09;
}

.shopping-cart .total-amount {
    margin-top: 50px;
}

.shopping-cart .total-amount .left {}

.shopping-cart .total-amount .left .coupon {}

.shopping-cart .total-amount .left .coupon form {}

.shopping-cart .total-amount .left .coupon form input {
    width: 220px;
    display: inline-block;
    height: 48px;
    color: #333;
    padding: 0px 20px;
    border: none;
    box-shadow: 0px 0px 5px #0000000a;
}

.shopping-cart .total-amount .left .coupon form .btn {
    display: inline-block;
    height: 48px;
    border: navajowhite;
    margin-left: 4px;
    background: transparent;
    color: #333;
    background: #fff;
    box-shadow: 0px 0px 5px #00000012;
}

.shopping-cart .total-amount .left .coupon form .btn:hover {
    background: #fff;
    color: #fe5d09;
}

.shopping-cart .total-amount .left label {
    font-size: 22px;
    font-weight: 500;
    color: #333;
}

.shopping-cart .total-amount .left .checkbox {
    text-align: left;
    margin: 0;
    margin-top: 20px;
}

.shopping-cart .total-amount .left .checkbox label {
    font-size: 15px;
    font-weight: 400;
    color: #333;
    position: relative;
    padding-left: 30px;
}

.shopping-cart .total-amount .left .checkbox label:hover {
    cursor: pointer;
}

.shopping-cart .total-amount .left .checkbox label input {
    display: none;
}

.shopping-cart .total-amount .left .checkbox label::before {
    position: absolute;
    content: "";
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    border: 1px solid #555555;
    border-radius: 0px;
}

.shopping-cart .total-amount .left .checkbox label::after {
    position: absolute;
    content: "\f00c";
    font-family: "Fontawesome";
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    line-height: 24px;
    left: 3px;
    top: 0px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    display: block;
    font-size: 11px;
}

.shopping-cart .total-amount .left .checkbox label.checked::after {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.shopping-cart .total-amount .right {
    padding-left: 100px;
}

/*.shopping-cart .total-amount .right ul {}*/

.shopping-cart .total-amount .right ul li {
    font-size: 15px;
    font-weight: 400;
    color: #333;
    margin-bottom: 12px;
}

.shopping-cart .total-amount .right ul li.last {
    padding-top: 12px;
    border-top: 1px solid #c8c8c8;
    color: #333;
    font-size: 15px;
    font-weight: 400;
}

.shopping-cart .total-amount .right ul li span {
    display: inline-block;
    float: right;
}

.shopping-cart .total-amount .right .button5 .btn {
    text-align: center;
    border-radius: 0;
    width: 100%;
    margin-top: 10px;
    height: 46px;
    line-height: 18px;
    font-size: 13px;
    color: #fff;
}


/*======================================
   End Shopping Cart CSS
========================================*/


/*======================================
   Start Checkout Form CSS
========================================*/

.shop.checkout {
    padding: 0;
    background: #fff;
    padding-top: 20px;
    padding-bottom: 50px;
}

.shop.checkout .checkout-form {
    margin-top: 30px;
}

.shop.checkout .checkout-form h2 {
    font-size: 25px;
    color: #333;
    font-weight: 700;
    line-height: 27px;
}

.shop.checkout .checkout-form p {
    font-size: 16px;
    color: #333;
    font-weight: 400;
    margin-top: 12px;
    margin-bottom: 30px;
}

.shop.checkout .form {}

.shop.checkout .form .form-group {
    margin-bottom: 25px;
}

.shop.checkout .form .form-group label {
    color: #333;
    position: relative;
}

.shop.checkout .form .form-group label span {
    color: #ff2c18;
    display: inline-block;
    position: absolute;
    right: -12px;
    top: 4px;
    font-size: 16px;
}

.shop.checkout .form .form-group input {
    width: 100%;
    height: 45px;
    line-height: 50px;
    padding: 0 20px;
    border-radius: 3px;
    border-radius: 0px;
    color: #333 !important;
    border: none;
    background: #F6F7FB;
}

.shop.checkout .form .form-group input:hover {}

.shop.checkout .form .address input {
    margin-bottom: 15px;
}

.shop.checkout .form .address input:last-child {
    margin: 0;
}

.shop.checkout .form .create-account {
    margin: 0;
}

.shop.checkout .form .create-account input {
    width: auto;
    display: inline-block;
    height: auto;
    border-radius: 100%;
    margin-right: 3px;
}

.shop.checkout .form .create-account label {
    display: inline-block;
    margin: 0;
}

.shop.checkout .order-details {
    margin-top: 30px;
    background: #fff;
    padding: 15px 0 30px 0;
    border: 1px solid #eee;
}

.shop.checkout .single-widget {
    margin-bottom: 30px;
}

.shop.checkout .single-widget:last-child {
    margin: 0;
}

.shop.checkout .single-widget h2 {
    position: relative;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 30px;
    line-height: 24px;
    text-transform: uppercase;
    color: #333;
    padding-bottom: 5px;
}

.shop.checkout .single-widget h2:before {
    position: absolute;
    content: "";
    left: 30px;
    bottom: 0;
    height: 2px;
    width: 50px;
    background: #fe5d09;
}

.shop.checkout .single-widget .content ul {
    margin-top: 30px;
}

.shop.checkout .single-widget .content ul li {
    display: block;
    padding: 0px 30px;
    font-size: 15px;
    font-weight: 400;
    color: #333;
    margin-bottom: 12px;
}

.shop.checkout .single-widget .content ul li span {
    display: inline-block;
    float: right;
}

.shop.checkout .single-widget .content ul li.last {
    padding-top: 12px;
    border-top: 1px solid #ebebeb;
    display: block;
    font-size: 15px;
    font-weight: 400;
    color: #333;
}

.shop.checkout .single-widget .checkbox {
    text-align: left;
    margin: 0;
    padding: 0px 30px;
    margin-top: 30px;
}

.shop.checkout .single-widget .checkbox label {
    color: #555555;
    position: relative;
    font-size: 14px;
    padding-left: 20px;
    margin-top: -5px;
    font-weight: 400;
    display: block;
    margin-bottom: 15px;
}

.shop.checkout .single-widget .checkbox label:last-child {
    margin-bottom: 0;
}

.shop.checkout .single-widget .checkbox label:hover {
    cursor: pointer;
}

.shop.checkout .single-widget .checkbox label input {
    display: none;
}

.shop.checkout .single-widget .checkbox label::before {
    position: absolute;
    left: 0;
    top: 7px;
    width: 12px;
    height: 12px;
    line-height: 16px;
    border: 1px solid #666;
    border-radius: 100%;
}

.inner-checkbox {
    display: flex;
}

.shop.checkout .single-widget .checkbox label::after {
    position: absolute;
    content: "";
    left: 0;
    top: 7px;
    width: 12px;
    height: 12px;
    line-height: 16px;
    border-radius: 100%;
    display: block;
    background: #666;
    transform: scale(0);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.shop.checkout .single-widget .checkbox label.checked::after {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.shop.checkout .single-widget.payement {
    padding: 0px 38px;
    text-align: center;
    margin-top: 30px;
}

.shop.checkout .single-widget.get-button {
    text-align: center;
    padding: 0px 35px;
}

.shop.checkout .single-widget.get-button .btn {
    height: 46px;
    width: 100%;
    line-height: 19px;
    text-align: center;
    border-radius: 0;
    text-transform: uppercase;
    color: #fff;
}


/*======================================
   End Checkout Form CSS
========================================*/


/*======================================
   Login & Register CSS
========================================*/

.shop.login {
    padding: 100px 0;
}

.shop.login .login-form h2 {
    position: relative;
    font-size: 35px;
    color: #333;
    font-weight: 400;
    line-height: 27px;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding-bottom: 20px;
    text-align: center;
}

.shop.login .login-form h2:before {
    position: absolute;
    content: "";
    left: 50%;
    bottom: 0;
    height: 2px;
    width: 50px;
    background: #fe5d09;
    margin-left: -25px;
}

.shop.login .login-form p {
    font-size: 14px;
    color: #333;
    font-weight: 400;
    text-align: center;
    margin-bottom: 50px;
}

.shop.login .form {
    margin-top: 30px;
}

.shop.login .form .form-group {
    margin-bottom: 22px;
}

.shop.login .form .form-group input {
    width: 100%;
    height: 45px;
    line-height: 50px;
    padding: 0 20px;
    border-radius: 3px;
    border-radius: 0px;
    color: #333 !important;
    border: none;
    background: #F6F7FB;
}

.shop.login .form .form-group label {
    color: #333;
    position: relative;
}

.shop.login .form .form-group label span {
    color: #ff2c18;
    display: inline-block;
    position: absolute;
    right: -12px;
    top: 4px;
    font-size: 16px;
}

.shop.login .form .form-group input:hover {
    border-color: #1308a3;
    color: #1308a3;
}

.shop.login .form .form-group.login-btn {
    margin: 0;
}

.shop.login .form button {
    border: none;
}

.shop.login .form .btn {
    display: inline-block;
    margin-right: 10px;
    height: 46px;
    color: #fff;
    line-height: 20px;
}

.shop.login .form .btn:hover {
    background: #fe5d09;
    color: #fff;
}

.shop.login .login-form .checkbox {
    text-align: left;
    margin: 0;
    margin-top: 20px;
    display: inline-block;
}

.shop.login .login-form .checkbox label {
    font-size: 14px;
    font-weight: 400;
    color: #333;
    position: relative;
    padding-left: 20px;
}

.shop.login .login-form .checkbox label:hover {
    cursor: pointer;
}

.shop.login .login-form .checkbox label input {
    display: none;
}

.shop.login .login-form .checkbox label::before {
    position: absolute;
    content: "";
    left: 0;
    top: 6px;
    width: 12px;
    height: 12px;
    border: 1px solid #555555;
    border-radius: 0px;
}

.shop.login .login-form .checkbox label::after {
    position: absolute;
    content: "\f00c";
    font-family: "Fontawesome";
    width: 12px;
    height: 12px;
    line-height: 23px;
    left: 2px;
    top: 0px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    display: block;
    font-size: 9px;
}

.shop.login .login-form .checkbox label.checked::after {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.shop.login .login-form .lost-pass {
    display: inline-block;
    margin-left: 25px;
    color: #333;
    font-size: 14px;
    font-weight: 400;
}

.shop.login .login-form .lost-pass:hover {
    color: #fe5d09;
}


/*======================================
    End Login CSS
========================================*/


/*======================================
   Start Shop List CSS
========================================*/

.shop-list .list-content {
    margin-top: 50px;
}

.shop-list .list-content .product-price {}

.shop-list .list-content .product-price span {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
    display: block;
}

.shop-list .list-content .title {
    line-height: 20px;
}

.shop-list .list-content .title a:hover {
    color: #fe5d09;
}

.shop-list .list-content .title a {
    font-size: 18px;
    font-weight: 600;
}

.shop-list .list-content .rating {
    margin: 5px 0 8px 0;
}

.shop-list .list-content .rating li {
    display: inline-block;
}

.shop-list .list-content .rating li i {
    color: #fe5d09;
}

.shop-list .list-content .rating li.total {
    color: #333;
    font-size: 12px;
    margin-left: 3px;
}

.shop-list .list-content .des {}

.shop-list .list-content .btn {
    margin-top: 22px;
    height: 42px;
    line-height: 15px;
    color: #333;
    background: transparent;
    border: 1px solid #cecece;
    font-size: 13px;
    border-radius: 30px;
    height: auto;
    line-height: a;
    padding: 13px 32px;
}

.shop-list .list-content .btn:hover {
    background: #fe5d09;
    color: #fff;
    border-color: transparent;
}


/* Pagination CSS */

.pagination {
    text-align: left;
    margin: 50px 0 0 0;
    display: block;
}

.pagination.center {
    text-align: center;
}

.pagination .pagination-list li {
    margin-right: 5px;
    display: inline-block;
}

.pagination .pagination-list li:last-child {
    margin-right: 0px;
}

.pagination .pagination-list li a {
    background: #F6F7FB;
    color: #666;
    padding: 6px 18px;
    font-weight: 400;
    border: 1px solid #e1e1e1;
    font-size: 16px;
    border-radius: 0px;
}

.pagination .pagination-list li.active a,
.pagination .pagination-list li:hover a {
    background: #fe5d09;
    color: #fff;
    border-color: transparent;
}

.pagination .pagination-list li a i {
    font-size: 13px;
}

.pagination .pagination-list li a i {}

.blog-grids.pagination {
    margin-top: 50px;
    text-align: center;
}


/*======================================
   End Shop List CSS
========================================*/


/*=============================
    Start Cowndown CSS
===============================*/

.cown-down {
    position: relative;
    height: 515px;
    overflow: hidden;
}

.cown-down .padding-right {
    padding-right: 0;
}

.cown-down .padding-left {
    padding-left: 0;
}

.cown-down .image img {
    width: 100%;
    height: 100%;
}

section.product-detail.section .product-detail-list ._product-images.product-main-img img {
    object-fit: contain;
}

.cown-down .content {
    text-align: center;
    background: #FDFBEF;
    height: 100%;
    position: relative;
}

.cown-down .content .heading-block {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 75px;
}

.cown-down .content .small-title {
    font-size: 13px;
    color: #777;
    display: block;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 600;
}

.cown-down .content .title {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.cown-down .content .price {
    margin-top: 35px;
    font-size: 35px;
    font-weight: 700;
    color: #fe5d09;
}

.cown-down .content .price s {
    margin-top: 35px;
    font-size: 24px;
    font-weight: 500;
    color: #666;
}

.cown-down .content .cdown {
    float: none;
    text-align: center;
    margin-top: 40px;
    width: 80px;
    display: inline-block;
}

.cown-down .content .cdown {
    text-align: center;
}

.cown-down .content .cdown {
    display: inline-block;
}

.cown-down .content .cdown span {
    color: #333;
    font-size: 22px;
    font-weight: 400;
    text-transform: uppercase;
}

.cown-down .content .cdown p {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
}


/*=============================
    End Cowndown CSS
===============================*/


/*======================================
   Start Shop Services CSS
========================================*/

.shop-services.section {
    padding: 80px 0 0px 0;
    background: #fff;
}

.shop-services.home {
    padding: 35px 0;
    /* background: #F6F7FB; */
}

.shop-services.home .row .mid {
    border-right: 1px solid #e7e7e7;
    border-left: 1px solid #e7e7e7;
}

.shop-services .single-service {
    position: relative;
    padding-left: 65px;
    margin-left: 50px;
}

.shop-services .single-service i {
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    color: #333;
    background: transparent;
    border-radius: 100%;
    display: block;
    font-size: 32px;
    position: absolute;
    left: 0;
    top: 0;
}

.shop-services .single-service h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 22px;
    color: #333;
}

.shop-services .single-service p {
    color: #898989;
    line-height: 28px;
    font-size: 14px;
}


/*======================================
   End Shop Services CSS
========================================*/


/*======================================
   Start Shop Newsletter CSS
========================================*/

.shop-newsletter {
    background: #fff;
}

.shop-newsletter .inner {
    text-align: center;
}

.shop-newsletter .inner h4 {
    color: #333;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.shop-newsletter .inner p {
    color: #777;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 30px;
}

.shop-newsletter .inner p span {
    color: #fe5d09;
}

.shop-newsletter .newsletter-inner {
    position: relative;
    display: inline-block;
}

.shop-newsletter .newsletter-inner input {
    width: 480px;
    height: 55px;
    border-radius: 0px;
    padding: 0px 30px;
    font-weight: 400;
    display: inline-block;
    text-shadow: none;
    box-shadow: none;
    border-radius: 0;
    border: none;
    border: 1px solid #a7a2a2;
    border-radius: 30px 0 0 30px;
}

.shop-newsletter .newsletter-inner button {
    border: none;
    text-shadow: none;
    box-shadow: none;
    border-radius: 0;
}

.shop-newsletter .newsletter-inner .btn {
    display: inline-block;
    height: 55px;
    padding: 10px 30px;
    position: relative;
    top: 0;
    background: #fe5d09;
    color: #fff;
    left: -4px;
    border-radius: 0 30px 30px 0;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.shop-newsletter .newsletter-inner .btn:hover {
    background: #333;
    color: #fff;
}


/*======================================
   End Shop Newsletter CSS
========================================*/


/*=============================
    About US CSS
===============================*/

.about-us {
    background: #fff;
}

.about-us .about-content {
    padding-right: 50px;
}

.about-us .about-content .story {
    display: block;
    color: #04AAF4;
    margin-bottom: 20px;
    font-size: 17px;
}

.about-us .about-content .story i {
    color: #04AAF4;
    margin-right: 5px;
    font-size: 22px;
}

.about-us .about-content h3 {
    font-size: 30px;
    font-weight: 600;
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.about-us .about-content h3::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: -1px;
    height: 2px;
    width: 60px;
    background: #fe5d09;
}

.about-us .about-content h3 span {
    display: inline-block;
    font-weight: 700;
    color: #fe5d09;
}

.about-us .about-content p {
    line-height: 26px;
    margin-bottom: 10px;
}

.about-us .about-content p:last-child {
    margin: 0;
}

.about-us .about-content .button {
    margin-top: 40px;
}

.about-us .about-content .button .btn {
    background: #333;
    color: #fff;
    margin-right: 15px;
}

.about-us .about-content .button .btn:hover {
    background: #fe5d09;
    color: #fff;
}

.about-us .about-content .button .btn.primary {
    background: #fe5d09;
    color: #fff;
}

.about-us .about-content .button .btn.primary:hover {
    background: #333;
    color: #fff;
}

.about-us .about-content .button .btn:last-child {
    margin: 0;
}

.about-us .about-img {
    position: relative;
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    border: 10px solid #fff;
}

.about-us .about-img:before {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.about-us .about-img:hover:before {
    opacity: 0.6;
    visibility: visible;
}

.about-us .about-img .video {
    height: 64px;
    width: 64px;
    line-height: 64px;
    background: #fe5d09;
    color: #fff;
    font-size: 20px;
    border-radius: 100%;
    display: block;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -32px;
    margin-top: -32px;
    padding-left: 4px;
    transform: scale(0);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.about-us .about-img .video:hover {
    background: #fff;
    color: #fe5d09;
}

.about-us .about-img:hover .video {
    transform: scale(1);
}

.about-us .about-img img {
    height: 100%;
    width: 100%;
}


/*=============================
    End About US CSS
===============================*/


/*======================================
  10. Start Team CSS
========================================*/

.team {
    background: #F6F7FB;
}

.team .title-line {
    margin-bottom: 40px;
}

.team .single-team {
    margin-top: 30px;
    position: relative;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
    display: inline-block;
    overflow: hidden;
    text-align: center;
    background: #fff;
}

.team .single-team .info-head {
    padding: 35px 30px;
}

.team .single-team .image img {
    height: 100%;
    width: 100%;
}

.team .single-team .info-box {
    text-align: center;
}

.team .single-team .info-box .name {
    display: block;
    font-size: 17px;
    color: #333;
    font-weight: 500;
    margin-bottom: 3px;
    text-transform: capitalize;
}

.team .single-team .info-box .designation {
    color: #aaa;
    font-size: 13px;
}

.team .single-team .social-links {
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
    margin-top: 15px;
}

.team .single-team .social-links .social li {
    display: inline-block;
    margin-right: 15px;
}

.team .single-team .social-links .social li:last-child {
    margin-right: 0px;
}

.team .single-team .social-links .social li a {
    color: #666;
    display: block;
    font-size: 14px;
}

.team .single-team .social-links .social li a:hover {
    color: #fe5d09;
}


/*======================================
  End Team CSS
========================================*/


/*======================================
   Start Shop Blog CSS
========================================*/

.shop-blog.grid .shop-single-blog {
    margin-top: 30px;
}

.shop-blog .shop-single-blog {
    text-align: center;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.shop-blog .shop-single-blog:hover {
    box-shadow: 0px 10px 10px #0000000a;
}

.shop-blog .shop-single-blog img {
    height: 360px;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.shop-blog .shop-single-blog .content {
    padding: 40px;
}

.shop-blog .shop-single-blog .content .title {
    font-size: 17px;
    font-weight: 600;
    color: #333;
}

.shop-blog .shop-single-blog .content .title:hover {
    color: #fe5d09;
}

.shop-blog .shop-single-blog .content .date {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 5px;
    color: #B7B7B7;
}

.shop-blog .shop-single-blog .content .more-btn {
    font-size: 14px;
    font-weight: 400;
    color: #3c3c3c;
    margin-top: 10px;
    display: block;
}

.shop-blog .shop-single-blog .content .more-btn:hover {
    color: #fe5d09;
}


/* Related Product */

.related-product {
    padding-top: 0;
}

.related-product .section-title {
    text-align: center;
    margin-bottom: 10px;
    padding: 0;
}

.related-product .section-title h2 {
    font-size: 25px;
    margin-bottom: 0;
    text-transform: capitalize;
    position: relative;
    color: #2c2d3f;
    font-weight: 700;
    padding-bottom: 15px;
}


/* Blog Sidebar */

.main-sidebar {
    background: #fff;
    margin-top: 30px;
    padding: 40px;
    background: transparent;
    border: 1px solid #eeeeeec2;
}

.main-sidebar .single-widget {
    margin-bottom: 50px;
}

.main-sidebar .single-widget .title {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 30px;
    display: block;
    background: #fff;
    padding-left: 12px;
}

.main-sidebar .single-widget .title::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: -1px;
    height: 100%;
    width: 3px;
    background: #fe5d09;
}

.main-sidebar .single-widget:last-child {
    margin: 0;
}

.main-sidebar .search {
    position: relative;
}

.main-sidebar .search input {
    width: 100%;
    height: 45px;
    box-shadow: none;
    text-shadow: none;
    font-size: 14px;
    border: none;
    color: #222;
    background: transparent;
    padding: 0 70px 0 20px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border-radius: 0;
    border: 1px solid #eee;
}

.main-sidebar .search .button {
    position: absolute;
    right: 0;
    top: 0;
    height: 44px;
    width: 50px;
    line-height: 45px;
    box-shadow: none;
    text-shadow: none;
    text-align: center;
    border: none;
    font-size: 14px;
    color: #fff;
    background: #333;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.main-sidebar .search .button:hover {
    background: #fe5d09;
    color: #fff;
}


/* Category List */

.main-sidebar .categor-list {
    margin-top: 15px;
}

.main-sidebar .categor-list li {}

.main-sidebar .categor-list li {
    margin-bottom: 10px;
}

.main-sidebar .categor-list li:last-child {
    margin-bottom: 0px;
}

.main-sidebar .categor-list li a {
    display: inline-block;
    color: #333;
    font-size: 14px;
}

.main-sidebar .categor-list li a:hover {
    color: #fe5d09;
    padding-left: 7px;
}

.main-sidebar .categor-list li a i {
    display: inline-block;
    margin-right: 0px;
    font-size: 9px;
    transform: translateY(-1px);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.main-sidebar .categor-list li a:hover i {
    margin-right: 6px;
    opacity: 1;
    visibility: visible;
}


/* Recent Post */

.main-sidebar .recent-post {}

.main-sidebar .single-post {
    position: relative;
    border-bottom: 1px solid #ddd;
    display: inline-block;
    padding: 17px 0;
}

.main-sidebar .single-post:last-child {
    padding-bottom: 0px;
    border: none;
}

.main-sidebar .single-post .image {}

.main-sidebar .single-post .image img {
    float: left;
    width: 80px;
    height: 80px;
    margin-right: 20px;
}

.main-sidebar .single-post .content {
    padding-left: 100px;
}

.main-sidebar .single-post .content h5 {
    line-height: 18px;
}

.main-sidebar .single-post .content h5 a {
    color: #2C2D3F;
    font-weight: 500;
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
    display: block;
    margin-bottom: 10px;
    margin-top: 0;
}

.main-sidebar .single-post .content h5 a:hover {
    color: #fe5d09;
}

.main-sidebar .single-post .content .comment {}

.main-sidebar .single-post .content .comment li {
    color: #888;
    display: inline-block;
    margin-right: 15px;
    font-weight: 400;
    font-size: 14px;
}

.main-sidebar .single-post .content .comment li:last-child {
    margin-right: 0;
}

.main-sidebar .single-post .content .comment li i {
    display: inline-block;
    margin-right: 5px;
}


/* Blog Tags */

.main-sidebar .side-tags {}

.main-sidebar .side-tags .tag {
    margin-top: 40px;
}

.main-sidebar .side-tags .tag li {
    display: inline-block;
    margin-right: 7px;
    margin-bottom: 20px;
}

.main-sidebar .side-tags .tag li a {
    background: #fff;
    color: #333;
    padding: 8px 14px;
    text-transform: capitalize;
    border-radius: 0;
    font-size: 13px;
    background: #F6F7FB;
}

.main-sidebar .side-tags .tag a:hover {
    color: #fff;
    background: #fe5d09;
    border-color: transparent;
}


/* Blog Newslatter CSS */

.main-sidebar .newsletter {}

.main-sidebar .newsletter .letter-inner {
    position: relative;
    padding: 35px 30px;
    box-shadow: 0px 0px 12px #00000014;
    z-index: 2;
    overflow: hidden;
}

.main-sidebar .newsletter .letter-inner h4 {
    text-transform: capitalize;
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}

.main-sidebar .newsletter .letter-inner p {
    margin-bottom: 20px;
}

.main-sidebar .newsletter .letter-inner .form-inner {
    position: relative;
}

.main-sidebar .newsletter .letter-inner input {
    width: 100%;
    height: 45px;
    background: #fff;
    border: none;
    border: 1px solid #ddd;
    padding: 0px 60px 0px 20px;
    box-shadow: none;
    text-shadow: none;
    border-radius: 0;
}

.main-sidebar .newsletter .letter-inner .form-inner a {
    height: 42px;
    width: 100%;
    background: #fe5d09;
    color: #fff;
    font-size: 14px;
    display: block;
    text-align: center;
    line-height: 42px;
    margin-top: 10px;
    text-transform: uppercase;
    font-weight: 500;
}

.main-sidebar .newsletter .letter-inner .form-inner a:hover {
    background: #333;
    color: #fff;
}


/* Blog Single CSS */

.blog-single {
    background: #fff;
    padding: 70px 0 100px;
}

.blog-single .blog-single-main {
    margin-top: 30px;
    background: #fff;
}

.blog-single .blog-detail {
    background: #fff;
}

.blog-single .image {
    position: relative;
}

.blog-single .image img {
    width: 100%;
    height: 100%;
}

.blog-single .blog-title {
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 40px 0 15px 0;
}

.blog-single .blog-meta {
    margin-bottom: 0;
    overflow: hidden;
    border-bottom: 1px solid #dddddd6e;
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.blog-single .blog-meta .author i {
    color: #fe5d09;
    margin-right: 10px;
    font-size: 13px;
}

.blog-single .blog-meta .author a {
    font-size: 13px;
    border-right: 1px solid #ddd;
    padding: 0px 15px;
}

.blog-single .blog-meta .author a:first-child {
    padding-left: 0;
}

.blog-single .blog-meta .author a:last-child {
    padding-right: 0;
    border: none;
}

.blog-single .blog-meta span {
    display: inline-block;
    font-size: 14px;
    color: #666;
}

.blog-single .blog-meta span a i {
    margin-right: 10px;
    color: #fe5d09;
}

.blog-single .blog-meta span a:hover {
    color: #fe5d09;
}

.blog-single .content p {
    margin-bottom: 25px;
    line-height: 26px;
}

.blog-single .content p:last-child {
    margin: 0;
}

.blog-single blockquote {
    position: relative;
    font-size: 13px;
    font-weight: 400;
    padding-left: 20px;
    padding: 10px 20px;
    background: #F6F6F6;
    padding: 30px 40px 30px 70px;
    color: #555;
    border: none;
    margin-bottom: 25px;
    border-left: 3px solid #fe5d09;
}

.blog-single blockquote i {
    font-size: 30px;
    color: #fe5d09;
    position: absolute;
    left: 20px;
    top: 20px;
}

.blog-single .content .img-post {
    margin-bottom: 25px;
}

.blog-single .share-social .content-tags {
    position: relative;
    margin-top: 25px;
}

.blog-single .share-social .content-tags h4 {
    position: absolute;
    left: 0;
    top: 7px;
    font-size: 15px;
    font-weight: 500;
}

.blog-single .share-social .content-tags .tag-inner {
    padding-left: 60px;
}

.blog-single .share-social .content-tags .tag-inner li {
    display: inline-block;
    margin-right: 7px;
    margin-bottom: 10px;
    margin-top: 4px;
}

.blog-single .share-social .content-tags .tag-inner li:last-child {
    margin-right: 0px;
    margin-bottom: 0px;
}

.blog-single .share-social .content-tags .tag-inner li a {
    border-radius: 30px;
    padding: 5px 15px;
    background: #f4f7fc;
    font-size: 13px;
}

.blog-single .share-social .content-tags .tag-inner li a:hover {
    color: #fff;
    background: #fe5d09;
}


/* Comments */

.blog-single .comments {
    margin-top: 40px;
}

.blog-single .comments .comment-title {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 30px;
    display: block;
    background: #fff;
    padding-left: 12px;
}

.blog-single .comments .comment-title:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: -1px;
    height: 100%;
    width: 3px;
    background: #fe5d09;
}

.blog-single .comments {}

.blog-single .comments .single-comment {
    position: relative;
    margin-bottom: 40px;
    border-radius: 5px;
    padding-left: 95px;
}

.blog-single .comments .single-comment.left {
    margin-left: 110px;
}

.blog-single .comments .single-comment img {
    height: 70px;
    width: 70px;
    border-radius: 100%;
    position: absolute;
    left: 0;
}

.blog-single .single-comment .content {}

.blog-single .single-comment .content h4 {
    color: #333;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    display: inline-block;
    margin-bottom: 18px;
    text-transform: capitalize;
}

.blog-single .single-comment .content h4 span {
    display: inline-block;
    font-size: 13px;
    color: #8D8D8D;
    margin: 0;
    font-weight: 400;
    text-transform: capitalize;
    display: block;
    margin-top: 5px;
}

.blog-single .single-comment .content p {
    color: #666;
    font-weight: 400;
    display: block;
    margin: 0;
    margin-bottom: 20px;
    line-height: 22px;
}

.blog-single .single-comment .content .button {}

.blog-single .single-comment .content .btn {
    display: inline-block;
    color: #666;
    font-weight: 400;
    color: #6a6a6a;
    border-radius: 4px;
    text-transform: capitalize;
    font-size: 14px;
    background: transparent;
    padding: 0;
}

.blog-single .single-comment .content a i {
    display: inline-block;
    margin-right: 5px;
}

.blog-single .single-comment .content a:hover {
    color: #fe5d09;
}


/* Comment Form */

.blog-single .reply form {
    padding: 40px;
    border: 1px solid #eee;
}

.blog-single .reply .reply-title {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 30px;
    display: block;
    background: #fff;
    padding-left: 12px;
}

.blog-single .reply .reply-title:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: -1px;
    height: 100%;
    width: 3px;
    background: #fe5d09;
}

.blog-single .reply .form-group {
    margin-bottom: 20px;
}

.blog-single .reply .form-group input {
    width: 100%;
    height: 45px;
    line-height: 50px;
    padding: 0 20px;
    border-radius: 0px;
    color: #333 !important;
    border: none;
    border: 1px solid #eee;
}

.blog-single .reply .form-group textarea {
    width: 100%;
    height: 200px;
    line-height: 50px;
    padding: 0 20px;
    border-radius: 0px;
    color: #333 !important;
    border: none;
    border: 1px solid #eee;
}

.blog-single .reply .form-group label {
    color: #333;
    position: relative;
}

.blog-single .reply .form-group label span {
    color: #ff2c18;
    display: inline-block;
    position: absolute;
    right: -12px;
    top: 4px;
    font-size: 16px;
}

.blog-single .reply .button {
    text-align: left;
    margin-bottom: 0px;
}

.blog-single .reply .button .btn {
    height: 50px;
    border: none;
}


/*======================================
   End Shop Blog CSS
========================================*/


/*======================================
  21. Contact CSS
========================================*/

.contact-us {
    position: relative;
    z-index: 43;
}

.contact-us .title {
    margin-bottom: 30px;
}

.contact-us .title h4 {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #fe5d09;
}

.contact-us .title h3 {
    font-size: 25px;
    text-transform: capitalize;
    font-weight: 600;
}

.contact-us .single-head {
    padding: 50px;
    box-shadow: 0px 0px 15px #0000001a;
    height: 100%;
}

.contact-us .single-info {
    text-align: left;
    margin-bottom: 30px;
}

.contact-us .single-info i {
    color: #fff;
    font-size: 18px;
    display: inline-block;
    margin-bottom: 15px;
    height: 40px;
    width: 40px;
    display: block;
    text-align: center;
    border-radius: 3px;
    line-height: 40px;
    background: #fe5d09;
}

.contact-us .single-info ul .contact-us .single-info ul li {
    margin-bottom: 5px;
}

.contact-us .single-info ul li:last-child {
    margin-bottom: 0;
}

.contact-us .single-info ul li a {
    font-weight: 400;
}

.contact-us .single-info ul li a:hover {
    color: #fe5d09;
}

.contact-us .single-info .title {
    margin-bottom: 10px;
    font-weight: 500;
    color: #333;
    font-size: 18px;
}

.contact-us .form-main {
    box-shadow: 0px 0px 15px #0000001a;
    padding: 50px;
}

.contact-us .form .form-group input {
    height: 48px;
    line-height: 48px;
    width: 100%;
    border: 1px solid #e6e2f5;
    padding: 0px 20px;
    color: #333;
    border-radius: 0px;
    font-weight: 400;
}

.contact-us .form .form-group textarea {
    height: 180px;
    width: 100%;
    border: 1px solid #e6e2f5;
    padding: 15px 20px;
    color: #333;
    border-radius: 0px;
    resize: none;
    font-weight: 400;
}

.contact-us .form .form-group label {
    color: #333;
    position: relative;
}

.contact-us .form .form-group label span {
    color: #ff2c18;
    display: inline-block;
    position: absolute;
    right: -12px;
    top: 4px;
    font-size: 16px;
}

.contact-us .form .button {
    margin: 0;
}

.contact-us .form .button .btn {
    height: 50px;
    border: none;
}

#myMap {
    height: 500px;
    width: 100%;
}


/*======================================
  End Contact CSS
========================================*/


/* Mail Success */

.mail-success .mail-inner {
    text-align: center;
    background: #fff;
    padding: 0px 30px;
}

.mail-success .mail-inner h2 {
    margin-bottom: 10px;
    display: block;
    font-weight: 600;
    color: #fe5d09;
    text-transform: uppercase;
    font-size: 30px;
}

.mail-success .mail-inner p {
    font-size: 14;
    color: #333;
    margin-bottom: 30px;
    line-height: 22px;
}

.mail-success .mail-inner .btn {
    color: #fff;
    padding: 10px 30px;
}

.mail-success .mail-inner .btn i {
    margin-right: 5px;
}


/*=============================
    Start 404 Error CSS
===============================*/

.error-page {
    background: #fff;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.error-page .error-inner {
    text-align: center;
    flex-direction: initial;
    height: auto;
    text-align: center;
}

.error-page .error-inner h2 {
    color: #fe5d09;
    margin-bottom: 0;
    font-weight: 700;
    font-size: 100px;
    display: inline-block;
    font-size: 120px;
}

.error-page .error-inner h5 {
    display: block;
    color: #444;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: capitalize;
}

.error-page .error-inner p {
    color: #666;
    font-weight: 400;
    line-height: 22px;
    font-size: 15px;
    padding: 0 30px;
}

.error-page .button {
    margin-top: 30px;
}

.error-page .button .btn {
    margin-right: 15px;
    border-radius: 30px;
    background: #333;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #d7d7d7;
    background: transparent;
    color: #333;
    padding: 10px 28px;
}

.error-page .button .btn:hover {
    color: #fff;
    background: #fe5d09;
    border-color: transparent;
}


/*=============================
    /End 404 Error CSS
===============================*/

.free-version-banner {
    position: relative;
    background: #333;
    text-align: center;
    /* background-color: #8c4aa4; */
    /* margin-bottom: 100px; */
    /* background-image: url(../img/b1.jpg); */
    background-repeat: no-repeat;
    /* background-size: 90%  auto; */
    /* height: 330px; */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 90px 0px;
    padding: 0 !important;
}

.free-version-banner .section-title span {
    font-weight: 500;
    text-transform: capitalize;
}

.free-version-banner .section-title {
    margin: 0;
    padding: 0;
    text-align: center;
}

.free-version-banner .section-title h2 {
    padding-bottom: 15px;
}

.free-version-banner .section-title h2::before {
    background-color: #fff;
}

.free-version-banner .button {
    z-index: 5;
    margin-top: 40px;
}

.free-version-banner .button .btn {
    background-color: #fff;
    color: #333;
    text-transform: capitalize;
}


/*=============================
    20. Start Footer CSS
===============================*/

.footer {
    background: #222;
    background-color: #efeff0;
    background-size: cover;
}

.footer .about {
    padding-right: 50px;
    text-align: center;
}

.footer .single-footer h4 {
    text-transform: capitalize;
    font-size: 20px;
    color: #424242;
    margin-bottom: 20px;
    pointer-events: none;
    font-weight: 500;
}

.footer .about .logo {
    margin-bottom: 20px;
}


/*.footer .about .logo img {
    width: 50%;
}*/

.footer .about .text {
    font-size: 16px;
    line-height: 1.5;
    color: #2e2e2e;
    font-weight: 400;
}

.footer .about .call {
    display: inline-flex;
    color: #2e2e2e;
    margin-top: 15px;
    font-weight: bold;
    font-size: 11px;
}

.footer .about .call span {
    display: block;
}

.footer .about .call a {
    color: #fe5d09;
    font-size: 12px;
    font-weight: 600;
}

.footer .links ul {}

.footer .links ul li {
    display: block;
    margin-bottom: 8px;
}

.footer .links ul li:last-child {
    margin-bottom: 0;
}

.footer .links ul li a {
    display: block;
    font: normal normal normal 16px/24px Roboto;
    letter-spacing: 0px;
    color: #3E3E3E;
}

.footer .links ul li a:hover {
    color: #fe5d09;
    padding-left: 10px;
}

.footer .social {}

.footer .social .contact {}

.footer .social .contact ul {}

.footer .social .contact ul li {
    color: #878787;
    display: block;
    margin-bottom: 5px;
    font-weight: 400;
    display: flex;
}

.footer .social .contact ul li p,
.footer .social .contact ul li p a {
    width: 100%;
    font: normal normal normal 15px/21px Roboto;
    letter-spacing: 0px;
    color: #818181;
    padding-left: 3px;
    font-family: 'Roboto', sans-serif !important;
}

p.call {
    font: normal normal normal 13px/16px Roboto;
    color: #000000;
    font-family: 'Roboto', sans-serif !important;
    padding-top: 10px;
}

.footer .contact ul li:last-child {
    margin-bottom: 0;
}

.footer .social ul {
    margin-top: 20px;
}

.footer .social ul li {
    display: inline-block;
    margin-right: 25px;
}

.footer .social ul li:last-child {
    margin-right: 0;
}

.footer .social ul li a {
    color: #fff;
    display: block;
    font-size: 16px;
}

.footer .social ul li a:hover {
    color: #fe5d09;
}


/* Copyright */

.footer .copyright {
    display: none;
}

footer.footer.home-footer .copyright {
    display: block;
}


/*.footer .copyright .inner{
    border-top:1px solid #eeeeee3d;
    padding:20px 0;
}*/

.footer .copyright .left {
    float: right;
}


/*.footer .copyright .right{
    float:right;
}*/

.footer .copyright p {
    color: #2e2e2e;
    font-family: 'Montserrat', sans-serif;
}

.footer .copyright p a {
    color: #fff;
    text-decoration: underline;
}


/*=============================
    End Footer CSS
===============================*/


/*07-02*/

.small-banner .single-banner a:before {
    position: absolute;
    background: rgba(0, 0, 0, 0.3);
    width: 0;
    top: 0;
    left: 50%;
    content: "";
    transition: all 0.3s ease-in-out 0s;
}


/*.small-banner .single-banner a:hover:before {
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
}*/

.hero-slider .container {
    max-width: 100%;
}

.midium-banner .single-banner a:before {
    position: absolute;
    background: rgba(0, 0, 0, 0.3);
    width: 0;
    top: 0;
    left: 50%;
    content: "";
    transition: all 0.3s ease-in-out 0s;
}

.midium-banner .single-banner a:hover:before {
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
}

.small-banner .single-banner.mid img {
    /* border: 1rem solid #063675; */
    margin-bottom: 15px;
}

.small-banner .single-banner:hover {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.single-product:hover {
    box-shadow: 0 5px 25px 0 rgb(0 0 0 / 8%);
}

.single-product {
    text-align: center;
}


/*.d-hide .single-product .product-content {
    display: none;
}*/

.d-hide .single-product .product-img a img {
    height: 154px;
    border: none;
}

.d-hide .single-product .product-img a span.new {
    display: none;
}

.d-hide .single-product .product-img a span.out-of-stock {
    display: none;
}

.d-hide .single-product .button-head {
    display: none;
}

.p-hide .container-fluid {
    padding: 0;
}

.section {
    padding: 60px 0;
}

.header.shop .middle-inner .row {
    align-items: center;
    justify-content: space-between;
}


/*09-02-22*/

div#topNavBar {
    /*  position: fixed;*/
    width: 100%;
    background: #fff;
    z-index: 999;
    left: 0;
    -webkit-transition: .7s all ease-in-out;
    transition: .7s all ease-in-out;
    height: 30px;
    display: none;
}

.headeTopWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 0.7vw 2vw 0;
}

.headeTopWrapper .topNav_bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    -webkit-transition: .7s all;
    transition: .7s all;
}

.headeTopWrapper ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 1.2rem;
    width: 100%;
    display: flex;
}

.headeTopWrapper .topNav_bar .menuItem:first-child {
    padding-left: 0;
}

.headeTopWrapper .topNav_bar .menuItem {
    border-right: 1px solid #ccc;
}

.headeTopWrapper .topNav_bar .menuItem {
    padding: 0 .5vw;
}

.headeTopWrapper .topNav_bar .menuItem a {
    color: #828282;
    font-size: 13px;
    font-family: 'Rajdhani';
    font-weight: 500;
}

.header.shop .right-bar a {
    font-family: 'Rajdhani';
    font-weight: 500;
}

.headeTopWrapper .topRight {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-transition: .7s all;
    transition: .7s all;
}

.headeTopWrapper .topRight .topRightLink {
    color: #828282;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 1vw;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 13px;
    /*font-family: 'Rajdhani';*/
    font-weight: 500;
}

.call-us {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0px;
    color: #000000;
    text-transform: uppercase;
}

.call-btn .call-us,
.call-btn .call-us a {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0px;
    color: #000000;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-family: 'Gilroy-Medium' !important;
    justify-content: end;
}

.call-us img {
    width: 22px;
}

section.cate-sec {
    padding: 50px 30px;
}

.wearTrend {
    /* font-family: 'Rajdhani';*/
    font-size: 39px;
    font-weight: bold;
    text-align: left;
    /* padding-top: 2%;*/
    letter-spacing: -1px;
    line-height: 50px;
}

.TrendyTag {
    /* font-family: 'Rajdhani';*/
    font-size: 16px;
    font-weight: 400;
    margin-top: -5px;
    line-height: 20px;
}

.content-box {
    text-align: center;
    padding: 0 20px;
}

section.cate-sec .content-box h2 {
    font-size: 18px;
    font-weight: 600;
    margin: 15px 0;
    color: #333;
    display: none;
}

section.cate-sec .trendcta {
    background: #07b5ee;
    color: #ffffff;
    padding: 10px 0;
    width: 140px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    border-radius: 5px;
    margin: 0 auto;
    letter-spacing: 0.5px;
}

section.cate-sec .owl-controls {
    display: none;
}

.hero-slider {
    margin-bottom: 16px;
}

h4.font-head.mt70 {
    letter-spacing: 0.5px;
    font-size: 30px;
    text-align: center;
    /* margin-top: 60px;*/
    margin-bottom: 12px;
    position: relative;
    color: #065390;
}

.TtleBrnDmn h2 {
    color: #0d538f;
    font-size: 30px;
    font-weight: 400;
    line-height: 40px;
}

h4.font-head:before,
h4.font-head:after {
    content: '';
    flex: 1 1;
    border-bottom: 1px solid #cfcdcd;
    margin: auto 15px;
    width: 100%;
    height: 1px;
    left: 0;
    position: absolute;
    top: 50%;
    z-index: -999;
}

h4.font-head.mt70 a {
    background-color: #fff;
    padding: 0 12px;
    font-weight: 600;
}

.section-title h2::before {
    display: none;
}

.section-title h2 {
    font-size: 35px;
    text-transform: capitalize;
    position: relative;
    font-weight: 500;
    margin-bottom: 0;
    padding-bottom: 0px;
    letter-spacing: 0px;
    color: #02539D;
}

.most-popular .section-title a.getGaData {
    color: #fe5909;
    font-weight: 500;
    display: none;
}

section.midium-banner.section {
    padding-top: 0;
}

section.cate-sec .trendcta:hover {
    background: #fe6009;
}

.cat-pro {
    display: flex;
    column-gap: 15px;
    flex-wrap: wrap;
}

.cat-pro .single-product {
    width: 32%;
    margin-top: 0;
    margin-bottom: 40px;
}

.grey-bg.filterbtn.dropdown-toggle {
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    padding: 0px 10px 10px 0px;
    line-height: 25px;
    letter-spacing: 0px;
    color: #000000;
    text-transform: capitalize;
}

ul.filter-dropdown-menu.list-unstyled.menu-lk li.list-checkbox {
    display: flex;
    flex-wrap: wrap;
    /*  margin-right: 8px;*/
}

.custom-category .slider-fliter .listItem input:checked+label {
    background: #064E8C;
    border: 1px solid #F1F3F6;
    border-radius: 4px;
    color: #fff;
}

.custom-category .slider-fliter .listItem input:checked+label span {
    color: #fff;
}

.dropdown-toggle::after {
    display: none !important;
}

.listItem input[type=checkbox] {
    /* width: 16px;
    height: 16px;*/
    cursor: pointer;
}

.listItem span {
    padding-top: 0px;
    margin-left: 0;
    overflow: hidden;
    text-transform: capitalize !important;
    font: normal normal normal 14px/14px Roboto;
    letter-spacing: -0.14px;
    color: #8091A5;
}

a:hover {
    text-decoration: none !important;
}


/*.listItem {
    padding-bottom: 9px;
}*/

.listItem label {
    display: flex;
    align-items: center;
    border: 1px solid #F3F4F6;
    border-radius: 4px;
    margin-right: 8px;
    width: auto;
    height: auto;
    padding: 5px 7px;
    text-align: center;
    color: #8091A5;
    font: normal normal normal 14px/14px Roboto;
    letter-spacing: -0.14px;
    text-align: left;
}

.listItem label svg {
    width: 15px;
    height: 15px;
    margin-right: 3px;
    color: #064E8C;
}

.custom-category .slider-fliter .listItem input:checked+label svg {
    color: #fff;
}

.main-filters {
    padding: 15px 15px;
    border-bottom: 2px solid #F1F3F6;
    width: 100%;
    margin: 0 0 15px;
    /*    cursor: all-scroll;*/
}

.product-price .price {
    font: normal normal bold 22px/22px Roboto;
    letter-spacing: 0px;
    color: #064780;
    text-transform: capitalize;
    font-family: 'Roboto', sans-serif !important;
}

section.product-detail.section h2.product-name {
    font: normal normal 600 19px/22px Gilroy ☞;
    letter-spacing: 0px;
    color: #000000;
    font-family: 'Gilroy-Regular' !IMPORTANT;
}


/*.product-price .after-sale {
    font-weight: 800;
}*/

.product-price .price:first-child {
    margin-right: 1.25rem;
}

.product-price .before-sale {
    text-decoration: line-through;
    font-weight: 500;
    opacity: .5;
}

h2.product-name {
    font-size: 30px;
    margin-bottom: 0;
    text-transform: capitalize;
    position: relative;
    color: #2c2d3f;
    font-weight: 600;
    margin-bottom: 2px;
    padding-bottom: 0px;
    font-family: 'Montserrat', sans-serif;
}

.rating-stars .star-icon {
    color: #e4a216;
    font-size: .85rem;
    cursor: pointer;
    transition: color 0.3s ease-in-out 0s;
}

.product-rating {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.product-rating .reviews-number {
    text-transform: capitalize;
    font-weight: 600;
    opacity: .75;
}

.product-disc .disc-text {
    opacity: .9;
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
}

.text-area .product-info {
    display: block;
    align-items: flex-start;
    margin-bottom: 10px;
    column-gap: 10px;
}

ul.product-info-list.cats-list {
    display: flex;
    column-gap: 7px;
}

ul.product-info-list.tags-list {
    display: flex;
    column-gap: 6px;
}

section.product-detail.section {
    padding: 38px 65px;
}

ul.product-info-list.cats-list a.cat-link {
    color: #999;
    font-size: 18px;
    line-height: 29px;
    letter-spacing: 1px;
    border: 2px solid #484848;
    border-radius: 28px;
    padding: 6px 14px 6px 14px;
    display: block;
    text-align: center;
    font-weight: 500;
}

.text-area .product-info h6.product-info-title {
    font-size: 16px;
    text-transform: capitalize;
    color: #999;
    font-weight: 600;
    margin-bottom: 10px;
    padding-bottom: 0px;
    /* font-family: 'Rajdhani'; */
}


/*.text-area {
    font-family: 'Rajdhani';
}*/

.text-area .product-price {
    display: flex;
    align-items: center;
    justify-content: start;
    margin-bottom: 0.5rem;
    margin-top: 9px;
}

.custom-product-info-area .form-group .form-control {
    padding-left: 3px;
}

.text-area .product-info .col-sm-6 {
    padding-right: 0;
}


/*.text-area .product-info-area {
    padding: 1.5rem 0;
}*/

.text-area .cart-area {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
}

.text-area .cart-area .qty-area {
    margin-right: 1rem;
}

.text-area .cart-area .cta-area {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.qty-counter {
    position: relative;
    width: 10rem;
    height: 49px;
    border: 1px solid #cbcbcc;
}

.qty-counter .qty-btn {
    position: absolute;
    width: 30%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 188, 233, 0.15);
    cursor: pointer;
}

.qty-counter .qty-btn.minus {
    left: 0;
    right: auto;
    border-right: 1px solid #08bce9;
}

.qty-counter .qty-input {
    position: absolute;
    font-weight: 700;
    width: 40%;
    height: 100%;
    left: 30%;
    background: transparent;
    color: inherit;
    border: none;
    outline: none;
    text-align: center;
}

.qty-counter .qty-btn.plus {
    left: auto;
    right: 0;
    border-left: 1px solid #08bce9;
}

.text-area .cart-area .cta-area .cta-btn-wrapper:not(:last-child) {
    margin-right: 1rem;
}

.text-area .qty-counter .button {
    display: inline-block;
    position: absolute;
    top: 0;
}

.text-area .qty-counter .button.minus {
    left: 0;
    border-radius: 0;
    overflow: hidden;
}

.text-area .qty-counter .button.plus {
    right: 0;
    border-radius: 0;
    overflow: hidden;
}

.text-area .qty-counter .input-number {
    border: 1px solid #eceded;
    width: 100%;
    text-align: center;
    height: 39px;
    border-radius: 0;
    overflow: hidden;
    padding: 0px 45px;
}

.text-area .qty-counter .input-group {
    /* width: 175px;*/
    display: inline-block;
}

.text-area .qty-counter .button .btn {
    padding: 0;
    width: 44px;
    height: 47px;
    line-height: 33px;
    border-radius: 0px;
    background: transparent;
    color: #282828;
    border: none;
    font-size: 12px;
}

.zoom-thumb {
    width: 100%;
    /* display: flex;*/
    vertical-align: top;
    margin-top: 0px;
}

.zoom-thumb ul.piclist {
    padding-left: 0px;
    top: 0px;
}

.piclist li {
    display: inline-block;
    width: 90px;
    height: 90px;
    border: 1px solid #eee;
}

.piclist li img {
    height: 85px;
    object-fit: cover;
}

._boxzoom ._product-images .picZoomer img.my_img {
    width: 100%;
}

.picZoomer {
    position: inherit;
    top: 0;
}

.picZoomer-zoom-wp {
    position: absolute;
    width: 100% !important;
    left: 0 !important;
    top: 0 !important;
}


/*22/02/2022*/

.right-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
}

.right-menu .imgClmnvr {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}

.right-menu .imgClmnvr .right-menu img {
    object-fit: cover;
    width: auto;
    height: auto;
    margin-bottom: 0px;
}

.right-menu p {
    padding-top: 9.78px;
    text-align: center;
    color: #ffffff;
    font: normal normal normal 13px/12px Roboto;
}

.right-menu i {
    color: #fff;
    font-size: 26px;
}

.right-menu .SrcicnMSvr {
    min-width: 85px;
}

.right-menu small.CrtDtamn {
    position: absolute;
    width: 13px;
    height: 13px;
    background: #e8416a;
    font-size: 8px;
    color: #fff;
    border-radius: 50%;
    top: -2px;
    right: -2px;
}

.right-menu small.CrtDtamn {
    position: absolute;
    width: 13px;
    height: 13px;
    background: #e8416a;
    font-size: 8px;
    color: #fff;
    border-radius: 50%;
    top: -2px;
    right: -2px;
    line-height: 14px;
    text-align: center;
}

.right-menu svg path {
    stroke: #0053a2;
}

.category-01 ul {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 35px;
}

.category-01 ul img {
    /*-webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;*/
    /* border-radius: 50%; */
    /*width: 100%;
    height: 370px;
    object-fit: cover;
    transition: transform 300ms ease 0s;*/
}


/*.category-01 ul li:hover img {
    transform: scale(1.05);
}*/


/*.img01 {
    overflow: hidden;
}*/


/*.SrcicnMSvr.Cartmn img {
    width: 58%;
}*/

.category-01 ul h2 {
    margin-top: 20px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #0c0c0c;
    text-transform: uppercase;
}

h4.font-head.mt70.hide-s:before,
h4.font-head.mt70.hide-s:after {
    display: none;
}

.cl4Rtnmnmvr {
    width: 25%;
    height: 52vh;
    background-color: #f7f7f7;
    padding: 0px 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    text-align: center;
    justify-content: center;
}

.cl12glssytmnVr {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cl12glssytmnVr p {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #0c0c0c;
    text-transform: uppercase;
}

.cl12glssytmnVr .cl4Rtnmnmvr:nth-child(even) {
    background-color: #efeded;
}

.cl12glssytmnVr .cl4Rtnmnmvr:hover .MnswnGls .hvr-buzz-out {
    -webkit-animation-name: hvr-buzz-out;
    animation-name: hvr-buzz-out;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

@keyframes hvr-buzz-out {
    10% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }

    20% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }

    30% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }

    40% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }

    50% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }

    60% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }

    70% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }

    80% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }

    90% {
        -webkit-transform: translateX(1px) rotate(0);
        transform: translateX(1px) rotate(0);
    }

    100% {
        -webkit-transform: translateX(-1px) rotate(0);
        transform: translateX(-1px) rotate(0);
    }
}

section.brands-section.section {
    width: 100%;
    position: relative;
    display: block;
    padding: 95px 0px 115px 119px;
    background-color: #f7f7f7;
}

.TtleBrnDmn {
    /* display: block; */
    /* width: 50%; */
    position: relative;
    /* margin: 0 auto; */
    /* text-align: center; */
    /* padding-bottom: 40px; */
}

section.brands-section.section ul {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 20px;
    flex-wrap: wrap;
}

section.brands-section.section li {
    width: 15%;
    margin-bottom: 20px !important;
}

section.brands-section.section li img {
    height: 120px;
    width: 100%;
    background: #fff;
    padding: 5px;
    object-fit: contain;
    transition: transform 300ms ease 0s;
}

section.brands-section.section li:hover img {
    transform: scale(1.05);
}

section.benefits-section.section .cl12SwNftSnBft .cl4mnBft .ImgSwnvrTvr {
    transition: transform 300ms ease 0s;
}

section.benefits-section.section .cl12SwNftSnBft .cl4mnBft:hover .ImgSwnvrTvr {
    transform: scale(1.05);
}

section.brands-section.section .BrndBtn {
    margin-top: 60px;
    text-align: center;
}

section.brands-section.section .BrndBtn p {
    font-size: 38px;
    color: #2e2e2e;
    font-weight: 400;
}

section.brands-section.section .btSwnSwnvr {
    text-align: center;
    position: relative;
}

section.brands-section.section .btSwnSwnvr a {
    padding: 22px 52px;
    display: inline-block;
    background-color: #fe5d09;
    color: #fff;
    line-height: 1.2;
    font-weight: 500;
    margin-top: 22px;
    font-size: 17px;
}

section.brands-section.section .btSwnSwnvr a:hover {
    background-color: #064e8c;
}

section.p-hide.category-01 .row {
    margin: 0;
}

section.benefits-section.section .cl12SwNftSnBft {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 12px;
    text-align: center;
    flex-wrap: wrap;
}

section.benefits-section.section .cl12SwNftSnBft .cl4mnBft {
    width: 19%;
    background-color: #FFFFFF;
    box-shadow: 0px 6px 19px #0000000F;
    min-height: 230px;
    margin-bottom: 12px;
    padding: 23px;
    text-align: left;
    border-radius: 5px;
}

section.benefits-section.section .cl12SwNftSnBft .cl4mnBft:first-child {
    width: 100%;
    text-align: center;
    padding: 0;
    background-color: transparent;
    height: auto;
    min-height: inherit;
}

.benefits-apecs.specs-back {
    width: 55%;
    margin: 0 auto;
    padding-bottom: 20px;
}

section.benefits-section.section .cl12SwNftSnBft .cl4mnBft .BftSwnVr h5 {
    margin-bottom: 7px;
    height: auto;
    font: normal normal bold 20px/30px Roboto;
    letter-spacing: 0px;
    color: #000000;
    margin-top: 10px;
}

section.benefits-section.section .cl12SwNftSnBft .cl4mnBft .BftSwnVr p {
    font: normal normal normal 15px/23px Roboto;
    letter-spacing: 0px;
    color: #000000;
    font-family: 'Roboto', sans-serif !important;
    min-height: 69px;
}

section.benefits-section.section .cl12SwNftSnBft .cl4mnBft .ImgSwnvrTvr {
    /* width: 130px;
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto;*/
    margin-bottom: 0px;
}

section.benefits-section.section {
    width: 100%;
    position: relative;
    display: block;
    padding: 42px 119px;
    background-color: #fe5d093b;
    background-size: cover;
}

section.brands-section.section .row.m-0 {
    align-items: center;
}

.benefits-apecs.specs-back h2 {
    font: normal normal bold 37px/50px Roboto;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.benefits-apecs.specs-back p {
    font: normal normal 300 15px/23px Roboto;
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif !important;
}

section.benefits-section.section h4.font-head.mt70.hide-s {
    margin: 0;
}

section.p-hide.category-01.section {
    padding-bottom: 0;
}

section.shop-newsletter.section.search-form-sec h4.font-head.mt70 {
    margin-top: 0;
}


/*.footer .logo {
    display: inline-block;
    width: 140px;
}*/


/*.footer .copyright .right ul {
    display: flex;
    column-gap: 11px;
}*/

.footer .copyright .right ul i {
    border: 2px solid #424242;
    border-radius: 50%;
    font-size: 20px;
    padding: 8px;
}

.footer .copyright {
    background-color: #e3e3e3;
    background-color: #000000;
    padding: 20px 80px;
}

.footer .copyright .right li a {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    text-transform: capitalize;
}

ul.footer-social {
    display: flex;
    align-items: center;
    column-gap: 25px;
}

ul.footer-social li a {
    width: 32px;
    height: 32px;
    background: #FFFFFF;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}

ul.footer-social li a i {
    color: #FE6109;
    font-size: 20px;
}

.footer .copyright .row {
    justify-content: center;
    align-items: center;
}

small.whsdta {
    position: absolute;
    width: 13px;
    height: 13px;
    background: #e8416a;
    font-size: 8px;
    color: #fff;
    border-radius: 50%;
    top: -2px;
    right: -2px;
    line-height: 14px;
    text-align: center;
}


/*25/2/22*/

section.banner01 {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 560px;
    display: flex;
    justify-content: center;
    align-items: center;
}


/*section.banner01::before {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color:#064780;
    opacity: 0.71;
}*/

section.banner01 .row {
    justify-content: center;
    align-items: center;
    margin: 0;
}

section.banner01 .row .logo img {
    width: 250px;
}

section.banner01 .logo {
    width: 100%;
    text-align: center;
}

section.banner01 h1.b-h1 {
    text-align: center;
    color: #fff;
    margin: 0px 0 42px;
    font: normal normal 300 42px/25px Gilroy;
    letter-spacing: 2.56px;
}

section.banner01 p {
    text-align: center;
    color: #fff;
    padding-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

section.banner01 input#search {
    border-radius: 0.8rem 0.0rem 0.0rem 0.8rem;
    width: 229px;
    padding: 13px;
    border-color: #fff;
}

section.banner01 form.newsletter-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 825px;
    margin: 0 auto;
}

section.p-hide.category-01 .row .col-12 {
    padding: 0;
}

section.banner01 button.btn {
    width: 55px;
    background-color: #064780;
    border-radius: 34px;
    padding: 0px;
    border: none;
    cursor: pointer;
    position: absolute;
    right: 4px;
    opacity: 1;
    height: 55px;
}

section.banner01 button.btn:hover {
    background-color: #fe5609;
}

section.banner01 button.btn svg {
    width: 22px;
}

section.banner01 button.btn span {
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.pac-target-input:not(:-webkit-autofill) {
    animation-name: endBrowserAutofill;
    width: 360px;
    border: none;
    padding-left: 3px;
    font: normal normal normal 16px/24px Roboto;
    letter-spacing: 0px;
    color: #ACACAC;
    height: 35px;
}

.pac-target-input:not(:-webkit-autofill)::placeholder,
.s02 input::placeholder {
    color: #ACACAC;
}

.s02 input {
    border: none;
    padding-left: 20px;
    font: normal normal normal 16px/24px Roboto;
    letter-spacing: 0px;
    color: #ACACAC;
    margin-left: 40px;
    border-left: 1px solid #ACACAC;
    height: 50px;
    border-radius: 0;
    background-color: transparent;
}


/*header.header.shop.home01 {
    position: absolute;
    z-index: 100;
    width: 100%;
    top: 0;
}*/

svg.sc-rbbb40-0.iRDDBk {
    margin-right: 6px;
}

:focus-visible {
    outline: none;
}


/*section.banner01 button.btn:hover {
    background-color: #064381;
}*/

.footer .copyright .right ul i:hover {
    color: #ffffff;
    background-color: #424242;
}

.category-01 ul li {
    width: 25%;
    height: 435px;
    background-color: #f7f7f7;
    padding: 0px 0px;
}

.category-01 ul li:nth-child(even) {
    background-color: #efeded;
}

.l-01 {
    display: flex;
    background-color: #fff;
    border-radius: 37px;
    /* justify-content: center;*/
    align-items: center;
    min-height: 65px;
    position: relative;
    width: 100%;
}

.l-01 .input-group-addon {
    background-color: #cecece00;
    border: none;
    padding: 0px 20px 0px 30px;
    color: #ACACAC;
    float: left;
    font-weight: 500;
    min-width: 190px;
    border-right: 1px solid #ACACAC;
    margin-right: 16px;
}

select#cat00 {
    border: none;
    font: normal normal normal 16px/24px Roboto;
    letter-spacing: 0px;
    color: #ACACAC;
    width: 100%;
    height: 50px;
}

.l-01 .input-group-addon .where {
    font: normal normal normal 18px/26px Roboto;
    color: #ACACAC;
}

.s01 svg {
    /* line-height: 24px;
    margin-left: 6px;*/
    /* padding-top: 12px; */
    /* height: 15px;
    width: 17px;
    margin-bottom: -3px;*/
    position: absolute;
    top: 35%;
}

.r-02.l-01 {
    border-radius: 0;
}


/*login page css start here*/

section.l-bg01 {
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(https://optometry.ancorathemes.com/wp-content/uploads/2016/04/slide1.jpg);
    height: 100vh;
}

section .l-bg01 .reset01 {
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(https://optometry.ancorathemes.com/wp-content/uploads/2016/04/slide1.jpg);
    height: 100vh;
}

.login-box .card-header .logo {
    width: 145px;
    margin: 0 auto;
}

.login-box h2.page-ath-heading {
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 11px 0px;
    /* font-family: 'Rajdhani'; */
}

.login-box .card-header {
    background-color: transparent;
    border: none;
}

.login-box .card {
    padding: 35px 30px;
}

.login-box .card-body {
    padding: 0 25px 0px;
}

body,
button,
input,
select,
optgroup,
textarea {
    font-family: 'Roboto', sans-serif !important;
}

.login-box select {
    color: #666;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 8px 10px;
    font-size: 13px;
}

.login-box input {
    color: #666;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 8px 13px;
    /* font-family: 'Rajdhani'; */
    font-size: 13px;
}

.login-box .form-check-input {
    margin-left: 0;
}

.login-box .form-check-label {
    /*font-family: 'Rajdhani';*/
}

.login-box a.btn.btn-link.forget01 {
    background-color: transparent;
    text-align: right;
    text-transform: capitalize;
    padding: 0;
    color: #424646;
    /* font-family: 'Rajdhani';*/
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
}

.login-box button.btn.btn-primary {
    width: 100%;
    background-color: #063472;
    border-color: #063472;
    padding: 16px;
}

section.l-bg01 .login-box {
    margin-left: 0 !important;
}

.login-box .text-center {
    font-weight: 500;
}

.login-box a {
    font-weight: 600;
    color: #fe5d09;
}

section.l-bg01.register01 {
    overflow: hidden;
}

.login-box button.btn.btn-primary:hover {
    background-color: #fd7508;
    border-color: #fd7508;
}

.login-box button.btn.btn-primary {
    padding: 12px 16px;
}

.t01 {
    display: flex;
    justify-content: space-between;
    column-gap: 5px;
}


/*---------custom---------*/

.social-icon-img:hover {
    transform: scale(1.1);
}


/*.hero-slider .single-slider .owl-carousel .owl-stage-outer {
    height: 83vh;
}*/

.blue-back {
    background: #065390;
    padding: 50px 0px;
}

.header.shop .search-bar-top select {
    /*-- border: 1px solid #ccc;
    height: 37px;
    display: inline-block;
    background: #fff0;
    position: relative;
    margin: 0;
    line-height: 35px;
    border:none;
    border-left: 1px solid #ececec;
    width: 100px;
    padding-left: 3px;
    font-size: 13px;*/
    display: none;
}

.header.shop .middle-inner {
    padding: 9.5px 64px;
}

.header.shop .search-bar input {
    background: #fff;
    width: 100%;
    padding: 0px 2%;
    margin: 0;
    color: #a4a4a4;
    letter-spacing: 1px;
    height: auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 4px;
}

.header.shop .search-bar button.btnn {
    border-left: none;
    height: auto;
    position: absolute;
    right: 0px;
}

.header.shop .right-bar {
    justify-content: end !important;
}

.header.shop .right-bar {
    column-gap: 30px;
    justify-content: end;
}

.header.shop .right-bar .sinlge-bar .single-icon .total-count {
    top: -12px;
    right: 21px !important;
    width: 15px;
    height: 15px;
    font-size: 9px;
}

.header.shop .right-bar .sinlge-bar .single-icon .total-count.custom-count {
    right: -29px !important;
}

.header.shop .right-bar .sinlge-bar.shopping span.total-count {
    right: 30px;
}

.header.shop .right-bar .sinlge-bar .single-icon i.fa.fa-heart-o {
    margin-right: 13px;
}


/*.header.shop .search-bar form {
    width: 235px;
}*/

.header.shop .search-bar {
    width: 100%;
}

.container-fluid.min-banner img,
section.bg-banner.p-hide.min-banner img {
    width: 100%;
    height: 250px;
}

.min-sum-banner .mid-banner img {
    /*  height: 250px !important;*/
    width: 100%
}

section.cate-sec .content-box {
    height: 210px;
    border: 1px solid #eeee;
    padding: 0px;
    margin: 0px 10px;
    background-color: #fff;
}

section.cate-sec .owl-carousel .owl-item img {
    transform-style: preserve-3d;
    max-width: 100%;
    object-fit: contain;
    height: auto;
    max-height: 100%;
    width: 100%;
}

.small-banner h4.font-head.mt70 {
    margin-top: 0px;
}

.small-banner {
    padding: 20px 0;
}

.single-banner.custom-single {
    height: 100%;
}


/*.small-banner .single-banner.custom-single a {
    height: 100%;
}*/

.small-banner .single-banner.custom-single img {
    height: 100%;
}


/*.single-banner.mid {
    height: 300px;
}*/

.single-banner.mid.first {
    margin-bottom: 12px;
}

.single-banner.mid a {
    height: 100%;
}

.single-banner.mid a img {
    height: 100%;
}

.col-lg-6.col-md-6.col-12.s-banner {
    padding: 6px;
}

.brands-section .owl-nav {
    display: none;
}

.product-area .single-product {
    /*    min-height: 330px;*/
    background-color: #fff;
    /*    border: 1px solid #eeee;*/
    padding: 10px;
    margin: 0px 10px;
}

.product-area.most-popular.section.d-hide {
    padding: 30px 0px 40px;
}

.single-product .product-img {
    height: 100%;
}

.product-area.most-popular.d-hide.mt-4 {
    margin-bottom: 50px;
}

.product-area.most-popular .single-product .product-img a img {
    height: 130px;
    width: 100%;
    object-fit: contain !important;
    margin: 0 auto;
}

.min-banner-2>img {
    height: 90px;
}


/*.hero-slider .single-slider .item {
    height: 100% !important;
}*/


/*.hero-slider .single-slider  .owl-carousel .owl-stage {
    height: 100%;
}
.hero-slider .single-slider  .owl-carousel .owl-item {
    height: 100% !important;
}*/


/* .hero-slider .owl-carousel .owl-item img {
    height: 100% !important;
}*/


/*.header.shop .logo {
    height: 50px;
    width: 100%;
}*/

header.header.shop.home01 .logo img {
    width: 46% !important;
}


/*.header.shop .logo img {
    width: 100%;
}*/

ul.footer-links li a {
    color: #064d8c !important;
    background: #e8ecef;
    padding: 7px 10px 6px 10px;
    border-radius: 100%;
    text-align: center;
    line-height: 22px;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}

ul.footer-links li a i {
    font-size: 19px;
}

.footer-links li {
    display: inline-block;
    margin-right: 6px !important;
}

.footer .about .logo img {
    width: auto;
    height: 90px;
    margin: 0 auto;
}

ul.footer-links li a:hover {
    border: 2px solid #064d8c;
    color: #064d8c !important;
    background: #fff;
}

.single-footer.social ul li .fa {
    color: #878787;
    font-size: 17px;
    margin: 0px 8px 0 0;
    text-align: center;
    width: 15px;
}


/*.most-popular .section-title a.getGaData {
    color: #fff;
    background: #fe5909;
    padding: 1px 5px;
    border-radius: 3px;
    border:2px solid  #fe5909;
}*/


/*.most-popular .section-title a.getGaData:hover {
    color: #fe5909;
    background: #fff;
    border-radius: 3px;
    border:2px solid  #fe5909;
}*/

.most-popular .owl-carousel .owl-controls .owl-nav .owl-next,
.cate-sec .owl-nav .owl-next {
    right: -24px;
}

.most-popular .owl-carousel .owl-controls .owl-nav .owl-prev,
.cate-sec .owl-nav .owl-prev {
    left: -50px;
}

section.cate-sec .owl-controls {
    display: block !important;
}

.small-banner .single-banner.mid img {
    margin-bottom: 0px !important;
}


/*---------home--page----*/

.img-hover {
    display: none;
}

.sign-up:hover .img-hover {
    display: block;
}

.sign-up:hover .img-static {
    display: none;
}

.log-in i:hover {
    color: #fe5b09;
}


/*.add-vendor:hover .img-hover{
    display:block;
}*/

.add-vendor:hover .img-static {
    /*display:none;*/
}

h4.font-head.mt70 {
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    color: #000;
    margin-bottom: 7px;
}

.custom-home ul li {
    width: 20% !important;
    height: auto !important;
    background-color: #fff !important;
    padding: 10px !important;
}


/*.category-01 .container-fluid {
    width: 95%;
}*/


/*section.p-hide.category-01 .img01 {
    overflow: hidden;
    height: 200px;
    width: 200px;
    border-radius: 100%;
}
*/

.custom-home .img01 {
    overflow: hidden;
    height: 200px;
    width: 200px;
    border-radius: 100%;
    text-align: center;
    display: block;
    margin: 0 auto;
}


/*--section.brands-section.section .container {
    padding-left: 2rem;
    padding-right: 2rem;
    width: 100%;
    max-width: 100%;
}*/

section.brands-section.section li {
    margin-bottom: 10px !important;
}

body section.brands-section.section ul {
    column-gap: 15px;
}

body .category-01 ul h2 {
    font-size: 16px;
    letter-spacing: 0px;
    font-weight: 600;
    /*text-transform: uppercase;*/
    color: #0c0c0c;
    font-family: 'Montserrat', sans-serif;
}


/*section.p-hide.category-01 {
    margin-bottom: 60px;
    margin-top: 60px;
}*/


/*section.brands-section.section {
    padding: 60px 0px;
}*/


/*section.benefits-section.section {
    padding: 60px 0px;
}*/

footer.footer.home-footer .footer-top.section {
    display: none;
}


/*.footer.home-footer .copyright .inner {
    border-top: 1px solid #eeeeee3d;
    padding: 20px 0 13px 0px;
}*/

.category-01 ul img {
    /* border-radius: 50%; */
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease 0s;
}


/*section.benefits-section.section .cl12SwNftSnBft .cl4mnBft .ImgSwnvrTvr {
    width: 150px;
    height: 100px;
}*/


/*.benefits-section .container {
    max-width: 95% !important;
}
*/

.header.shop .logo {
    height: 90px;
    width: 100%;
    line-height: 66px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
}

header.header.shop.home01 {
    position: absolute;
    z-index: 100;
    width: 100%;
    top: 0;
    background: #00000069;
}

header.header.shop.home01 .right-menu {
    display: flex;
    justify-content: end;
    align-items: end;
    column-gap: 10px;
}

header.header.shop.home01 .right-menu p:hover {
    color: #fe5d09;
}


/*section.banner01 {
        height: 100vh !important;
    }*/


/*h4.font-head.mt70 {
    margin-bottom: 15px !important;
}*/

.header.shop .search-bar .btnn:hover {
    color: #fe5d09;
    background: transparent;
}


/*------------cat page--------*/

.product-area.section.cat-page .single-product {
    height: auto;
    border: 1px solid #eeee;
    padding: 0;
    margin: 15px 10px;
    border: 2px solid #78ACEC0F;
    height: 415px;
}


/*.product-area.section.cat-page img.hover-img {
    display: none;
}*/


/*section.banner01 button.btn i{
    display:none;
}*/

.product-area.section.cat-page .single-product .product-img a span.out-of-stock {
    z-index: 99;
    right: 10px;
    top: 10px;
}

.product-area.section.cat-page .single-product .product-img a img {
    height: 185px;
    padding: 22px;
    height: 285px;
}

.product-area.section.cat-page .single-product .product-content {
    padding: 10px 28px;
}

.product-area.section.cat-page .single-product .product-img a img {
    border: none !important;
}

.product-area.section.cat-page {
    padding: 60px 2vw !important;
}

.header.shop .right-bar .order-track a {
    color: #333;
    font-size: 13px;
}

.product-area.section.cat-page .single-product {
    margin: 0 0 15px 0px !important;
    position: relative;
}

.single-product .product-img a span.out-of-stock {
    display: none;
}

.single-product .product-img .product-action a i.ti-eye,
.single-product .product-img .product-action a i.ti-bar-chart-alt {
    display: none;
}

.custom-category .single-product .product-img {
    height: auto !important;
}

.single-product .product-img .product-action {
    top: -13px !important;
}


/*.custom-category .single-product .button-head {
    position: initial !important;
}*/

.custom-category .single-product .product-img .product-action a {
    font-size: 18px;
    color: #000;
}

.custom-category .single-product .product-img .product-action a:hover span {
    margin-top: -5px;
}

.custom-category .single-product .product-img .product-action a:last-child {
    display: none;
}

.custom-category .single-product .product-img .product-action a {
    top: 0px;
}

.custom-category .single-product .product-img .product-action a:hover {
    color: #ef4e74 !important;
    text-decoration: none;
}

.custom-category .single-product .product-img .product-action a span {
    background: #ef4e74 !important;
    display: none;
}

.custom-category .single-product .product-img .button-head .product-action a span::after {
    border: 6px solid #ef4e74;
}

.custom-category .single-product .product-content {
    padding: 10px 20px;
    /*   display: flex !important;
    justify-content: space-between !important;*/
}


/*---product detail section---------*/

.total-price {
    font-size: 22px;
    line-height: 32px;
    color: #2c2d3f;
    font-weight: 600;
    text-align: center;
}

.total-price span#showTotalPrice {
    font-size: 22px;
    font-weight: 600;
    color: #063776;
}


/*section.product-detail.section .text-area .qty-counter .button .btn {
    line-height: 43px !important;
    height: 43px;
}*/

.product-tab-section .card-body span {
    font-weight: normal !important;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0px;
    color: #818181;
}

section.product-detail.section .add-to-cart {
    background: #fe5c09 !important;
    border-radius: 5px;
    text-align: center;
    padding: 0px;
    width: 100%;
    /*margin: 10px 0px;*/
}

section.product-detail.section .add_to_cart {
    background: #064e8c !important;
    text-align: center;
    padding: 9px 0px;
    width: 100%;
    display: block;
    border-radius: 5px;
    letter-spacing: -0.21px;
    color: #FFFFFF;
    font-size: 16px;
}

section.product-detail.section .text-area .cart-area {
    width: 100%;
}

section.product-detail.section .text-area .cart-area .qty-area {
    margin-right: 1rem;
    width: 50%;
}

section.product-detail.section .text-area .qty-counter .button.minus {
    width: 100%;
}

section.product-detail.section .text-area .qty-counter .button .btn {
    width: 20%;
    border-radius: 0px;
    border: none;
    text-align: center;
}

section.product-detail.section .text-area .single-page-product .button.minus {
    width: auto !important;
}

section.product-detail.section .text-area .single-page-product .button .btn {
    width: 41px !important;
}

section.product-detail.section .text-area .single-page-product .custom-box-quantity .button .btn {
    width: 41px !important;
}

section.product-detail.section .text-area .single-page-product .button.plus {
    width: auto !important;
    text-align: center;
    border: none;
}

section.product-detail.section .text-area .qty-counter .input-number {
    border: none;
    width: 60%;
    border-radius: 0;
    padding: 0px 0px;
    text-align: center;
    margin-left: 20%;
    border-right: 1px solid #eee;
    border-left: 1px solid #eeee;
}

section.product-detail.section .text-area .qty-counter .button.plus {
    width: 25%;
    text-align: center;
    border: none;
}

section.product-detail.section .qty-counter {
    width: 133px;
    height: 41px;
}

section.product-detail.section .text-area .cta-area {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50%;
}

section.product-detail.section .qty-counter {
    border-radius: 5px;
}

section.product-detail.section .add-to-cart:hover {
    color: #fff;
    background: #063776 !important;
}

section.product-detail.section .add_to_cart:hover {
    color: #fff;
    background: #063776 !important;
}

section.product-detail.section .rating-stars i {
    color: #ffc20e;
    font-size: 18px;
}

section.product-detail.section .product-rating .reviews-number {
    margin-left: 12px;
}


/*section.product-detail.section ._product-images.product-main-img {
    border: 1px solid #eeee;
    padding: 30px;
    border-radius: 5px;
    height: 100%;
    position: relative;
}*/

.image {
    border: 1px solid #eeee;
    padding: 35px;
    border-radius: 8px;
    height: 360px;
    /* position: relative; */
    width: 48%;
    float: left;
    text-align: center;
    margin: 1%;
}

.qty-counter .button button {
    background-color: transparent;
    padding: 0;
    border: none;
    color: #000;
    width: 43px;
    height: 41px;
    font-size: 11px;
}

.qty-counter input.input-number {
    border: none;
    width: 45px;
    text-align: center;
    height: 37px;
}

section.product-detail.section .cart-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 13px;
    margin-bottom: 11px;
}

section.product-detail.section .cta-area {
    width: 100%;
}

.image img {
    height: 100%;
    max-width: 100%;
    width: 100%;
    border-radius: 8px;
}

.product-size {
    text-transform: capitalize;
    font-weight: 600;
    /* opacity: .75; */
    font-size: 16px;
    color: #999;
    padding-bottom: 8px;
}

.colors {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.product-title,
.price,
.sizes,
.colors {
    text-transform: UPPERCASE;
    font-weight: bold;
}


/*section.product-detail.section .picZoomer {
    position: absolute;
    top: 20%;
    left: 10px;
    right: 10px;
}*/

.custom-det {
    display: flex;
    justify-content: space-between;
}

.custom-det .add_to_wishlist {
    font-size: 25px;
    color: #000;
}

.custom-det .add_to_wishlist span {
    display: none;
}

.custom-det .add_to_wishlist .fa-heart-o:hover::before {
    color: #ef4e74;
}

section.product-detail.section ul.product-info-list.cats-list a.cat-link {
    font-size: 14px !important;
    line-height: 20px !important;
    border: none;
    padding: 0 10px 5px 0px;
}


/*section.product-detail.section ul.product-info-list.cats-list a.cat-link:hover {
    background: #063776 !important;
    color: #fff !important;
        border: 2px solid #063776;
}*/


/*.col-lg-6.product-detail-list {
    margin: 10px 0px;
}*/

section.product-detail.section .product-detail-list ._product-images.product-main-img {
    min-height: 300px;
}

.breadcrumbs.custom {
    display: none;
}

button.btn.btn-link:after {
    content: "\f068";
    display: block;
    left: auto;
    position: absolute;
    font-family: 'FontAwesome';
    right: 0px;
    font-size: 15px;
    top: 9px;
    display: none;
}

button.btn.btn-link.collapsed:after {
    content: "\f067";
    display: block;
    left: auto;
    position: absolute;
    font-family: 'FontAwesome';
    right: 0px;
    font-size: 15px;
    top: 9px;
    display: none;
}

h5.mb-0.product-accordin::after {
    display: none !important;
}

section.product-detail.section .product-rating {
    display: none;
}


/*------------vendor list page---*/

.footer .logo {
    display: inline-block;
    width: 100%;
}

.footer .copyright .right ul {
    display: flex;
    column-gap: 11px;
    margin-top: 10px;
    justify-content: end;
}


/*.footer .copyright .inner {
    border-top: 1px solid #eeeeee3d;
    padding: 10px 0px;
}*/

.footer .copyright .right ul i {
    font-size: 13px;
}

.custom-vendor-list h4.font-head.mt70 {
    font-size: 36px;
    font-weight: 600;
    margin-top: 0px;
    text-align: center;
    margin-bottom: 30px !important;
}

.custom-vendor-list {
    padding: 60px 0;
}

.custom-vendor-list .img01 {
    overflow: hidden;
    /* height: 100px;
    width: 150px;*/
    border-radius: 0px;
    margin: 0 auto;
    width: 100%;
    height: 285px;
    position: relative;
}

.category-01 ul img.vender-logo {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 100;
    width: 70px;
    height: 70px !important;
    border-radius: 100% !important;
    object-fit: contain;
    background-color: #fff;
}

body .custom-vendor-list ul li {
    border: 2px solid rgb(232 232 232 / 0%);
    /* margin-right: 20px;
    margin-left: 20px;*/
    box-shadow: none;
    border-radius: 8px;
    width: 23% !important;
    transition: all .5s;
    box-shadow: 0px 0px 8px #ADADAD33;
    margin-right: 0;
}

body .custom-vendor-list ul h2 {
    letter-spacing: 0px;
    color: #4E4D4D;
    font-size: 16px;
    line-height: 1.3;
}

body .custom-vendor-list ul h2 {
    text-overflow: ellipsis !important;
    overflow: hidden;
    white-space: nowrap;
}

body .custom-vendor-list ul li:hover {
    border-color: tranparent !important;
    /* box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px; */
    /* background-color: var(--whiteColor); */
    /* -webkit-transform: translateY(-10px); */
    /* transform: translateY(-10px); */
    box-shadow: 2px 4px 24px #ADADAD54;
    border: 2px solid #527494;
    border-radius: 16px;
}

section.p-hide.category-01.custom-vendor-list {
    padding: 57px 0px;
    margin-bottom: 0px;
}


/*.breadcrumbs.custom {
    display: none;
}*/


/*-----------cart page---*/


/*.breadcrumbs.cart {
    display: none;
}*/

.shopping-cart.section.custom-shopping.custom-shopping-cart {
    padding: 40px 0px;
}

.shopping-cart.section.custom-shopping.custom-shopping-cart .table td.product-name-text {
    width: auto;
}

.shopping-cart.section.custom-shopping .table td p.cart-product-name {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 170px;
}

.breadcrumbs.cart {
    display: none;
}

.custom-shopping .table.shopping-summery .SaveCartItem {
    background: #fe5c09 !important;
    border-radius: 5px;
    text-align: center;
    width: 100%;
    padding-top: 5px;
    padding-bottom: 5px;
}

.custom-shopping .table.shopping-summery .SaveCartItem:hover {
    background: #063776 !important;
    color: #fff;
}

.custom-shopping .total-amount .right {
    padding-left: 0px;
}

.custom-shopping {
    background: #fff;
}

.custom-shopping .container-fluid {
    padding-left: 2vw;
    padding-right: 2vw;
}

.shopping-cart.custom-shopping .right-cart-info {
    margin-top: 0px;
    background: #f3f5f6;
    padding: 30px;
    border: 1px solid #ebebeb;
    border-radius: 5px;
}

.custom-shopping .shopping-summery thead tr th {
    border: none;
    font-weight: 500;
    color: #fff;
    text-align: center;
    font-size: 14px !important;
    text-transform: uppercase;
    padding: .5rem;
}


/*.custom-shopping .shopping-summery tbody tr img {
    border-radius: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid #ddd;
}*/

.custom-shopping .image {
    border: 1px solid #eeee;
    padding: 0px;
    border-radius: 8px;
    height: 100%;
    width: 100%;
    float: left;
    text-align: center;
}

.shopping-cart.custom-shopping .table td {
    vertical-align: middle;
    /* border-top: 1px solid #eee; */
    padding: 10px;
    /* border-right: 1px solid #eee; */
    border-radius: 0px;
    height: 130px;
    border: none;
    /*border-bottom: 1px solid #eee; */
}


/*.custom-shopping .shopping-summery thead tr th {
    width: 22%;
}*/

.custom-shopping .shopping-summery thead tr th {
    width: auto;
}

.shopping-cart.custom-shopping .table td.qty {
    text-align: center;
}

.custom-shopping .table.shopping-summery {
    /*border-collapse: separate;
*/
    border-spacing: 0 15px;
    height: auto;
    padding-right: 30px;
    border-collapse: collapse;
}

.shopping-cart.custom-shopping .total-amount .right .button5 .btn {
    background: #063776;
    border-radius: 5px;
    text-align: center;
    padding: 13px 0px;
    width: 100%;
}

.shopping-cart.custom-shopping .total-amount .right .button5 .btn:hover {
    color: #fff;
    background: #fe5c09 !important;
}

.custom-shop {
    padding: 40px 0 40px 0 !important;
    background: #f3f5f6 !important;
}

.custom-newsletter .newsletter-inner .btn:hover {
    background: #06407e !important;
    color: #fff;
}


/*-----------checkout page------------*/

section.shop-services.section.home {
    display: none;
}

section.shop-newsletter.section {
    display: none;
}

.slider-fliter label.checked {
    background-color: #064E8C;
    color: #fff;
}

.slider-fliter label.checked span {
    color: #fff;
}

.custom-category .listItem input[type=checkbox] {
    accent-color: #063776;
    width: 64px;
    position: absolute;
    height: 20px;
    opacity: 0;
}

.custom-category input[type=radio] {
    accent-color: #063776;
}

.main-filters ul.filter-dropdown-menu.list-unstyled.menu-lk {
    /* / display: flex; /
    / flex-wrap: wrap; /
    / height: 400px; /*/
    position: relative;
    background-color: #fff !important;
    max-height: 170px;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    overflow-y: scroll;
    z-index: 9;
    overflow: auto;
    overflow-x: hidden;
}


/*input#lensCoating1 {
    width: 23px;
    height: 22px;
}*/


/*.custom-category .slider-fliter .listItem span {
    line-height: 20px;
    font-size: 14px !important;
}*/


/*.breadcrumbs.custom-checkout-bred {
    display: none;
}*/

.custom-checkout .checkout-form {
    margin-top: 30px;
    border: 1px solid #ebebeb;
    border-radius: 5px;
    padding: 30px;
}

.custom-checkout .order-details {
    border: 1px solid #ebebeb !important;
    border-radius: 5px !important;
    padding: 30px !important;
}

.custom-checkout .checkout-form input,
.custom-checkout .checkout-form select {
    width: 100%;
    padding: 6px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.custom-checkout .checkout-form select {
    padding: 10px 6px;
}

.custom-checkout .single-widget h2 {
    padding: 10px 0px !important;
}

.custom-checkout .single-widget h2:before {
    left: 0px !important;
}

.content-right {
    margin-top: 20px;
}

.content-right button {
    background: #063776 !important;
    border-radius: 0px 5px 5px 0px;
    text-align: center;
    padding: 13px 0px;
    width: 100%;
    border: none;
}

.custom-checkout .single-widget.get-button .btn {
    background: #063776 !important;
    border-radius: 5px !important;
    text-align: center;
    padding: 13px 0px;
    border: none;
}

.custom-checkout .single-widget.get-button .btn:hover {
    color: #fff;
    background: #fe5c09 !important;
}

.content-right button:hover {
    color: #fff;
    background: #fe5c09 !important;
}

.custom-checkout .single-widget {
    margin-bottom: 10px !important;
}

.custom-checkout .single-widget .content ul li {
    padding: 0px 0px !important;
}

.custom-checkout .form-control {
    border-radius: 5px 0px 0px 5px;
}

.custom-checkout .single-widget .checkbox {
    padding: 0px 0px !important;
}

.custom-checkout .single-widget.get-button {
    text-align: center;
    padding: 0px 0px !important;
}


/*--------wishlist---------*/


/*.breadcrumbs.wishlist-bred {
    display: none;
}*/

.shopping-cart.section.custom-shopping.custom-wishlist .table .product-name {
    text-overflow: ellipsis !important;
    overflow: hidden;
    white-space: nowrap;
}

.breadcrumbs.wishlist-bred {
    display: none;
}

.custom-wishlist .table p {
    width: 200px;
}

.shopping-cart.section.custom-wishlist {
    background: #fff;
}

.custom-wishlist .shopping-summery thead tr th {
    width: 17% !important;
}

.cart-btn {
    background: #063776;
    border-radius: 5px;
    text-align: center;
    padding: 8px 10px;
    width: 100%;
    color: #fff;
}

.cart-btn:hover {
    color: #fff !important;
    background: #fe5c09 !important;
}

.image:hover img {
    -webkit-transform: scale(1.06);
    transform: scale(1.06);
}

.image img {
    -webkit-transition: -webkit-transform .7s ease;
    transition: -webkit-transform .7s ease;
    transition: transform .7s ease;
    transition: transform .7s ease, -webkit-transform .7s ease;
}

.image {
    overflow: hidden;
}

.product-tab-section .card-header {
    margin-bottom: 0;
    background-color: rgb(255 255 255);
    border-bottom: none;
    padding: 0px 0 !important;
    width: 100%;
}

.product-tab-section {
    width: 100%;
}

.product-tab-section .card-header button.btn.btn-link {
    background: transparent;
    border: none;
    color: #333;
    padding: 0;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 17px;
    width: 100%;
    text-align: left;
}

.product-tab-section .card-body {
    padding: 16px 0 0;
}


/*.product-tab-section .card {
    border: none !important;
}*/

.product-tab-section table {
    width: 100% !important;
    margin-bottom: 0 !important;
}


/*-----Book a visit--------*/

body section.form-section .main-form input {
    color: #666;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 8px 13px;
    font-size: 13px;
}

section.form-section .main-form .first-box .form-name {
    padding-right: 0px !important;
}

section.form-section .main-form .form-pincode {
    padding-right: 0px !important;
}

section.form-section .main-form .second-box button {
    width: 100% !important;
    padding-left: 0px !important;
}

section.form-section .main-form .first-box .form-number {
    padding-right: 0px !important;
}

body section.work-section .work-part ul.work-list li img {
    margin: 0 auto 10px;
    width: 60%;
    display: block;
}

.header.sticky .header-inner .nav li:hover a {
    color: #333;
}

.header .shopping-item .bottom .btn {
    background: #063776;
    display: block;
    color: #fff !important;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
    text-align: center;
    padding: 9px 0px;
    width: 100%;
    margin: 10px 0px;
}

.header .shopping .shopping-item {
    height: 500px;
    overflow-y: scroll;
}

.header .shopping-list .quantity {
    padding-bottom: 0px;
}

.header .shopping-list h4 a {
    font-size: 14px;
}

.fa-remove:before {
    content: "\f014" !important;
}

.header .shopping-list li .remove {
    right: 0px;
    /* top: 60px;*/
    font-size: 16px;
}

.WishlistColor:before {
    color: #e53935;
    content: "\f004";
    display: block;
}

.header .shopping-list .cart-img {
    float: left !important;
}

.header .shopping-list h4 {
    font-size: 12px;
    width: 59%;
    overflow: hidden;
    padding-left: 20px;
    padding-top: 0px;
}

.header .shopping-list p.quantity {
    padding-left: 100px;
    top: 0px;
}

.header .shopping-list .quantity span,
.header .shopping-list .quantity {
    padding-bottom: 0px;
    color: #063776 !important;
    font-weight: 600;
    font-size: 14px;
}

.SrcicnMSvr.sghnup.CreActmn_Store.c-sign-up {
    display: none;
}

.SrcicnMSvr.Profilemn.c-user-login {
    display: none;
}

footer.footer.vendor-list-footer .footer-top.section {
    display: none;
}

.vendor-address p {
    /*text-overflow: ellipsis !important;
    overflow: hidden;
    white-space: nowrap;*/
    min-height: 55px;
}

.second-box.third-box {
    display: block !important;
}

section.form-section .main-form .second-box.third-box .form-pincode {
    width: 49%;
    padding-right: 20px;
    margin-right: 1%;
    float: left;
}

section.form-section .main-form .second-box.third-box .form-pincode.code-2 {
    width: 49%;
    padding-right: 20px;
    margin-right: 0% !important;
    margin-left: 1%;
}

section.form-section .main-form .second-box .form-button.submit-btn button {
    margin-top: 20px;
    background-color: #063472 !important;
    border-color: #063472 !important;
    font-weight: 500;
    font-size: 14px;
    border-radius: 5px;
    text-transform: uppercase;
}

section.form-section .main-form .second-box .form-button.submit-btn button:hover {
    color: #fff;
    background: #fe5c09 !important;
    border-color: #fe5c09 !important;
}

section.form-section .main-form .second-box .form-button.submit-btn {
    margin: 0 auto;
    width: 30% !important;
}

header.header.shop.home01.homerservice {
    position: absolute;
}

header.header.shop.home01 .middle-inner {
    background: transparent;
}

section.form-section .main-form.book-eye-testing input {
    color: #666;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 8px 13px;
    font-size: 13px;
}

section.form-section.custom-form-section .row {
    padding: 0px 25px !important;
}


/*--------category-popup--------*/

.custom-modal .modal-dialog .modal-content .modal-header {
    text-align: center;
    padding: 15px 0px 15px 40%;
    background: #fff;
}

.custom-modal .modal-dialog .modal-content .modal-header {
    right: 0px;
    position: relative;
    z-index: 9999;
}

.custom-modal .modal-title {
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 28px;
    font-family: rajdhani !important;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    position:
}


/*.custom-modal .listItem {
    border: 1px solid #e5e8e9;
    display: block;
    border-radius: 12px;
    padding: 10px 20px;
    margin-bottom: 20px;
}*/

.custom-modal ul.filter-dropdown-menu.list-unstyled.menu-lk.row-design {
    display: flex;
    width: 100%;
    float: left;
    justify-content: space-between;
    column-gap: 5px;
}

.custom-modal .listItem span {
    font-weight: 600;
    font-size: 16px;
    font-family: 'Helvetica Neue', sans-serif;
    color: #333;
    padding-left: 50px;
}

.custom-modal .grey-bg.filterbtn.dropdown-toggle {
    color: #063776;
    font-family: 'Rajdhani';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
}

/*.custom-modal .custom-listItem label {
    display: block !important;
    align-items: center;
    position: relative;
}*/

.custom-modal .listItem input[type=checkbox] {
    float: right;
}

.vision-description {
    color: #6b7378;
    font-size: 13px;
    padding-top: 0px;
    line-height: 1.42857;
    padding-left: 52px;
}

img.icon-img {
    padding-top: 0px;
    position: absolute;
    right: 95%;
    margin-right: 20px;
    margin-top: 10px;
}


/*label:before {
    background-image: url(https://static.lenskart.com/media/desktop/img/pdp/check_disabled.png);
}
:checked + label:before {
    background-image: url(https://static.lenskart.com/media/desktop/img/pdp/check_enabled.png);
}*/

label.custom-check:before {
    content: url("https://static.lenskart.com/media/desktop/img/pdp/check_disabled.png");
    position: absolute;
    margin-top: 0px;
}

label.custom-check.checked:before {
    content: url("../img/check-icon.png");
    position: absolute;
    margin-top: 0px;
}

:checked+label.custom-check:before .custom-modal .custom-listItem {
    border: 2px solid #00bac6 !important;
}

.listItem.custom-listItem label.custom-check.checked {
    border: 2px solid #063776;
}

.custom-modal .custom-listItem label {
    display: block !important;
    align-items: center;
    position: relative;
    border: 2px solid #dddddd24;
    border-radius: 12px;
    padding: 16px 31px 16px 20px;
    /* margin-bottom: 20px; */
    background-color: #dddddd24;
}

.custom-modal ul.filter-dropdown-menu.list-unstyled.menu-lk.row-design.thick11 label.custom-check {
    height: 106px;
}

.custom-modal .custom-listing-div .Thickness .custom-listItem label {
    padding: 17px 20px 20px;
    height: auto;
}

.custom-modal .custom-listing-div .vision-description {
    ppadding-top: 7px;
}

.custom-modal .Thickness .custom-listItem label {
    padding: 20px 20px 30px;
}

.custom-modal .vision_speclens_modal[type=checkbox] {
    opacity: 0;
}

.Thickness label.custom-check:before {
    margin-top: -5px;
}

li.list-checkbox.listing-div.custom-listing-div.Thickness .listItem {
    padding: 15px 8px !important;
    border: none;
}


/*pure cosmetics:*/

.vision_speclens_modal img {
    width: 150px;
    height: 150px;
}

.vision_speclens_modal label {
    margin: 10px;
}

.custom-modal .modal-dialog .modal-content .modal-header .close {
    font-size: 30px;
    color: #737373;
    border: 1px solid #ada5a5;
    right: 15px;
    position: absolute;
}

.custom-modal .modal-dialog .modal-content .modal-header .close:hover {
    color: #fff !important;
    border-color: transparent !important;
    background: #063776;
}

.custom-modal .modal-footer button.btn.btn-primary {
    background-color: #fe5a09;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    border: 1px solid #ebebeb;
    border-radius: 4px;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    padding: 9px 22px 9px 22px;
}

.custom-modal .modal-footer button.btn.btn-primary:hover {
    background-color: #063776;
}

.custom-listing-div .listItem input[type=checkbox] {
    float: right;
}

.row-design .custom-listing-div label {
    margin: 0;
    align-items: center;
    position: relative;
}

.custom-modal .thickness_speclens_modal[type=checkbox] {
    display: none;
}

.custom-listing-div .listItem {
    padding: 15px 20px !important;
}

.custom-listing-div label.custom-check:before {
    right: auto;
    /*    bottom: -2px;*/
}

.custom-modal .lenscoating_speclens_modal[type=checkbox] {
    display: none;
}

.custom-modal .photochromatic_speclens_modal input[type=checkbox] {
    display: none;
}

input#Photochromaticq {
    display: none !important;
}

.custom-modal .modal-dialog .modal-content .modal-body {
    padding: 0px;
    overflow-y: auto;
    max-height: 100%;
    height: auto;
}


/*------thanks you-----*/

.thankyou-card.text-center {
    padding: 60px 0px;
}

.thankyou-card h4 {
    color: #065390;
    font-size: 34px;
    font-weight: 800;
    margin-top: 0px;
    margin-bottom: 20px;
}

.thankyou-card p {
    color: #0c0c0c;
    line-height: 24px;
    font-size: 16px;
    letter-spacing: 0px;
    font-weight: 600;
}

p.order-id {
    color: #62ce21;
    font-size: 20px;
}


/*---vendor not found--------*/


/*.h-01.custom {
    justify-content: center;
}*/

.vendor-not-find.text-center {
    padding: 60px 0px;
}

.vendor-not-find h4 {
    color: #065390;
    font-size: 18px;
    font-weight: 700;
    margin-top: 0px;
}

.vendor-not-find p {
    font-size: 14px;
    color: #5b5b5b;
    letter-spacing: 1px;
    font-weight: 400;
    margin-bottom: 20px;
}

.vendor-not-find a.go_Bcak {
    color: #fff;
    background: #063776;
    border-radius: 5px;
    text-align: center;
    padding: 9px 32px;
    width: 100%;
}

.vendor-not-find a.go_Bcak:hover {
    background: #fe5c09;
}


/*--------contact us--*/

.contact-us {
    height: 300px;
}

.contact-us h4 {
    top: 50%;
    position: absolute;
    color: #fff;
    left: 50%;
    font-size: 40px;
    text-align: center;
    transform: translate(-50%, -50%);
}

.contact-side-detail h5 {
    color: #000;
    margin-bottom: 20px;
}

.container.contact-side-detail {
    padding: 80px 0px 60px 0px;
}

.contact-social ul li {
    font-size: 14px;
    color: #fff;
    letter-spacing: 1px;
    font-weight: 400;
    margin-bottom: 20px;
    display: flex;
}

.contact-social ul li i {
    color: #ffffff;
    font-size: 30px;
    margin-right: 20px;
    text-align: center;
}

.contact-social ul .email i {
    margin-right: 13px;
}


/*.contact-form {
    background: #063776;
    padding: 30px 20px;
    border-radius: 6px;
}*/

.contact-form input,
.contact-form textarea {
    color: #fff;
    border: 1px solid #ccc !important;
    border-radius: 3px;
    padding: 8px 13px;
    font-size: 13px;
    margin: 28px 0px 0px 0px;
    background: transparent;
    border: none;
}

.contact-form input:placeholder,
.contact-form textarea:placeholder {
    color: #fff;
}

.contact-form h5,
.contact-form p {
    color: #fff !important;
}

.contact-form button {
    background: #063776;
    color: #fff;
    padding: 14px 50px;
    margin: 18px 0px 20px 0px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 5px;
    border-color: #063776;
}

section.contact-map {
    z-index: 1;
    margin-top: -32px;
}

.contact-side-detail h5 span {
    color: #fff;
    font-size: 18px;
}

.contact-side-detail p {
    color: #000 !important;
    font-size: 22px;
    font-weight: 600;
    line-height: 31px;
}

.contact-info {
    padding: 55px 50px;
    box-shadow: 2px 6px 13px -2px rgb(58 57 68 / 30%);
    position: absolute;
    top: 8%;
    left: 100px;
    background-color: #063776;
}

.contact-form button:hover {
    background: #FE6109;
    border-color: #FE6109;
}

.contact-side-detail-info {
    position: relative;
}

.contact-side-detail p span {
    width: 100%;
    float: left;
    font-size: 16px;
    color: #fff;
}

.contact-social ul li p {
    color: #ffffff !important;
}


/*.contact-info {
    position: absolute;
    top: 30%;
}*/

.contact-side-detail h5 {
    font-size: 36px;
    font-weight: 600;
    margin-top: 0px;
}

.vendor-list {
    position: relative;
    z-index: 43;
    height: 285px;
}

.vendor-list h4 {
    top: 60%;
    position: absolute;
    color: #fff;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
    font: normal normal 600 40px/69px Gilroy;
    letter-spacing: 2.56px;
    font-family: Gilroy-Regular !important;
}

.vendor-list h4 span {
    font-family: 'Gilroy-Medium';
}

section.banner-section.vendor-list::before {
    content: " ";
    position: absolute;
    background-color: #000;
    height: 100%;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0.3;
}

section.product-detail.section .custom-product-btn .add-to-cart {
    background: #fe5c09 !important;
    border-radius: 5px;
    text-align: center;
    padding: 0px;
    width: 47%;
    margin: 10px 1%;
    float: left;
}

section.product-detail.section .custom-product-btn .add-to-cart:hover {
    background: #063776 !important;
    color: #fff;
}

.product-btn {
    width: 100%;
}

.product-tab-section {
    width: 100%;
    float: left;
}

.custom-product-info-area .form-group .form-control {
    font-size: 0.8rem !important;
    text-align: left;
    border-radius: 3px;
    background: #FFFFFF;
    font: normal normal normal 20px/26px Roboto;
    letter-spacing: 0px;
    color: #ACACAC;
    text-transform: capitalize;
    width: 96% !important;
    border: 1px solid #EFEFEF;
    height: 44px !important;
}

.custom-shop {
    display: none;
}

section.shop-newsletter.section.custom-newsletter {
    display: none;
}

.price-range-slider .range-bar {
    background: #c5c5c5 !important;
    height: 2px;
}

.price-range-slider .range-bar .ui-slider-handle::before {
    content: " ";
    position: absolute;
    width: 25px;
    height: 25px;
    border: 2px solid #064780;
    border-radius: 50%;
    left: -5.5px;
    top: -5.66px;
}

.price-range-slider .range-bar .ui-slider-handle+span::before {
    left: -6px;
}

.price-range-slider .range-bar .ui-slider-range {
    background: #063776 !important;
}

.price-range-slider .range-bar .ui-slider-handle {
    border: 2px solid #063776 !important;
    background: #064780 !important;
}

.price-range-slider {
    padding: 16px 10px !important;
}

section.bg-banner.p-hide img {
    width: 100%;
}

body a.header-logout {
    font-size: 13px;
}

section.terms-conditions-area.ptb-100 .tab_faq {
    overflow: hidden;
}


/*------terms and condition---*/

.page-title-area.bg-5 {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 59%, rgba(0, 0, 0, 0.65) 100%), url('https://specsshops.com/uploads/categorybanner/Nikon%20Banner.jpg1650437066.jpg');
    height: 200px;
    padding: 80px 0px;
    text-align: center;
}

.page-title-area.bg-5 .page-title-content h2 {
    text-transform: capitalize;
    position: relative;
    color: #2c2d3f !important;
    font-weight: 600 !important;
    margin-bottom: 2px;
    padding-bottom: 0;
    font-family: montserrat, sans-serif !important;
}

section.terms-conditions-area.ptb-100 span {
    color: #757575 !important;
    margin: 0;
    line-height: 24px;
    font-size: 14px !important;
    letter-spacing: 0px !important;
    font-family: 'Montserrat', sans-serif !important;
}

section.terms-conditions-area.ptb-100 h6 span {
    font-size: 18px !important;
    margin-bottom: 0;
    text-transform: capitalize;
    position: relative;
    color: #2c2d3f !important;
    font-weight: 600 !important;
    margin-bottom: 2px;
    padding-bottom: 0;
    font-family: montserrat, sans-serif !important;
}

section.terms-conditions-area.ptb-100 {
    padding: 50px 0px;
}

section.terms-conditions-area.ptb-100 .tab_faq {
    overflow-y: hidden !important;
}

section.terms-conditions-area.ptb-100 h5 {
    font-size: 22px !important;
    margin-bottom: 0;
    text-transform: capitalize;
    position: relative;
    color: #2c2d3f !important;
    font-weight: 600 !important;
    margin-bottom: 2px;
    padding-bottom: 0;
    font-family: montserrat, sans-serif !important;
}

section.terms-conditions-area.ptb-100 h6 {
    font-size: 18px !important;
    margin-bottom: 0;
    text-transform: capitalize;
    position: relative;
    color: #2c2d3f !important;
    font-weight: 600 !important;
    margin-bottom: 2px;
    padding-bottom: 0;
    font-family: montserrat, sans-serif !important;
}

.footer .social .custom-contact ul li a {
    color: #878787;
    display: inline-block;
    font-size: 14px;
    line-height: 24px;
}

.footer .social .custom-contact ul li a:hover {
    color: #fe5d09;
}

.footer .vendor-list-footer {
    position: fixed;
    bottom: 0px !important;
    width: 100%;
}

.product-detail-list .xzoom-thumbs a {
    display: inline-block;
    width: 20%;
    height: 75px;
}

.product-detail-list .xzoom-thumbs a img {
    width: 100% !important;
    height: 100%;
    object-fit: contain;
    margin-left: 2px;
    margin-right: 2px;
    border: 1px solid #E2E2E2;
    box-shadow: none;
}

.product-detail-list .xzoom-container {
    display: inline-block;
    /* width: 43%; */
    border: 2px solid #F1F3F6;
    padding: 24px;
    position: sticky;
    top: 99px;
    margin-bottom: 8px;
    z-index: -9;
    width: 100% !important;
}

.product-detail-list .xzoom4 {
    width: 100% !important;
    box-shadow: none;
    height: 475px;
    object-fit: contain;
}

.text-area-inner p {
    font: normal normal normal 16px/34px Roboto;
    letter-spacing: 0px;
    color: #000000;
    font-family: 'Roboto', sans-serif !important;
}

.profile-feed-container table#DataTables_Table_0 thead th {
    font-size: 11px;
    background-color: #f7f7f7;
    line-height: 18px;
    padding: 8px 5px;
}

.profile-wrapper .biography-header {
    font-size: 18px;
}

.profile-feed-container .profile-bio-content .table td,
.table th {
    border-bottom: 1px solid #e9ecef;
}

.invalid-feedback b,
strong {
    font-weight: 600 !important;
    font-size: 12px;
    line-height: 15px;
}


/*27/07/22*/

.grid-sect .frame-text {
    position: absolute;
    top: 48px;
    width: 100%;
    text-align: center;
    padding: 0 80px;
}

.grid-sect .frame-img2 .frame-text {
    top: 167px;
}

.grid-sect .frame-img2 .frame-text h2,
.grid-sect .frame-img2 .frame-text p {
    color: #fff;
}

.grid-sect .frame-text h2 {
    font-weight: 400;
    font-size: 30px;
    /* font-family: 'Gilroy-Medium' !important;*/
}

.grid-sect .frame-text p {
    padding-top: 10px;
    color: #000000;
    font: normal normal normal 15px/24px Roboto;
    font-family: 'Roboto', sans-serif !important;
}

section.grid-sect {
    margin-top: 5px;
}

.brand-col .TtleBrnDmn {
    width: 16%;
}

.brand-col {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-col div#s-brand-new {
    width: 82.5%;
}

.grid-sect .frame-img2 .frame-text p {
    font-weight: 300;
}

.text-left .frame-text {
    top: 36%;
    padding: 0px 0px 0px 32px;
    text-align: left;
}

.grid-sect .space-box {
    position: relative;
}

.frame2 .frame-img2 img {
    height: 500px;
    padding: 0 4.5px 9px;
}

.frame2 .frame-img3 img {
    height: 500px;
}

.frame-img img {
    padding-right: 4.5px;
}

.frame-one img {
    width: 100%;
    height: 1000px;
}

.frame2 .frame-img3 img {
    padding-left: 4.5px;
    padding-bottom: 9px;
}

.frame-img3.text-left img {
    padding: 0 4.5px;
    height: 500px;
}

.frame-img2.opcity-last img {
    padding-left: 4.5px;
    height: 500px;
}

div#s-brand-new .item a img {
    height: 200px;
    background-color: #fff;
    object-fit: contain;
    transition: transform 300ms ease 0s;
    padding: 21px;
}

div#s-brand-new .item a:hover img {
    transform: scale(1.05);
}

div#s-brand-new .owl-nav,
div#s-brand-new .owl-dots {
    display: none;
}

p.time-dd {
    display: flex;
    align-items: center;
    margin: 0px 0 13.5px;
    color: #064780;
    font: normal normal normal 13px/14px Roboto;
    font-family: 'Roboto', sans-serif !important;
}

p.time-dd svg {
    width: 19px;
}

p.map-rat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font: normal normal normal 13px/14px Roboto;
    color: #707070;
    font-family: 'Roboto', sans-serif !important;
}

p.map-rat span {
    display: flex;
    align-items: center;
    column-gap: 6px;
}

span.green-rating {
    background: #52B520;
    border-radius: 4px;
    width: 46px;
    height: auto;
    text-align: center;
    justify-content: center;
    font: normal normal normal 14px/17px Roboto;
    color: #FFFFFF;
    padding: 2px 4px;
}

span.green-rating i {
    font-size: 12px;
}

a.view-store-btn {
    display: block;
    text-align: center;
    color: #064780;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    border-top: 1px solid #E4E4E4;
    padding-top: 16px;
    margin-top: 13px;
    transition: transform 300ms ease 0s;
    padding-bottom: 6px;
}


/*body .custom-vendor-list ul li{
    transition: transform 300ms ease 0s;
}
body .custom-vendor-list ul li:hover a.view-store-btn {
    display: block;
}*/

.last01.vendor-address {
    padding-top: 0;
    margin-top: 0px;
}

.last01.vendor-address {
    border-top: none;
}

.row.m-0.v-list-top .col-lg-12 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.distance-search .search-box {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 8px #ADADAD33;
    display: inline-flex;
    width: 100%;
    border-radius: 32px;
}

.distance-search .loction-search input#form1 {
    font-size: 22px;
    width: 415px;
    font-weight: 400;
    padding: 0px 0px 0px 29px;
    border: none;
    background-color: transparent;
}

.vendor-address p {
    font: normal normal normal 14px/18px Roboto;
    color: #707070;
    font-family: 'Roboto', sans-serif !important;
}

.v-list-top .distance-box a {
    font-size: 18px;
    width: 73px;
    height: 49px;
    /* top: 588px; */
    border-radius: 33px;
    background: #064780;
    color: #ffff;
    padding: 14px 16px 13px 16px;
    text-decoration: none;
    text-align: center;
}

.v-list-top select#distance {
    padding: 10px;
    width: 140px;
    height: 45px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #ACACAC;
    border-radius: 33px;
    opacity: 1;
    font-size: 17px;
    color: #707070;
}

.v-list-top .distance-box h2 {
    font-size: 38px;
}

.v-list-top .distance-search .serch-icon svg {
    width: 20px;
}

.v-list-top .distance-box {
    align-items: center;
    display: flex;
    gap: 19px;
}

.search-box .loction-search {
    align-items: center;
    display: inline-flex;
}

.v-list-top .distance-search .loction-search i.fa.fa-dot-circle-o {
    font-size: 24px;
    color: #ACACAC;
}

.v-list-top .loction-search label.form-label {
    /*    margin-right: 24px;*/
    margin-bottom: 0px;
    padding: 10px;
}

.v-list-top .loction-search label.form-label svg path:hover {
    color: #fe6009;
    fill: #fe6009;
}

.distance-search .loction-search .form-control:focus {
    box-shadow: unset;
}

.v-list-top .distance-search .serch-icon {
    border-radius: 34px;
    background-color: #064780;
    width: 50px;
    height: 50px;
    color: #fff;
    padding: 10px;
    font-weight: 100;
    margin-left: 0px;
    font-size: 27px;
    text-align: center;
}

.v-list-top {
    border-bottom: 1px solid #E4E4E4;
    padding-bottom: 41px;
    margin-bottom: 47px !important;
}

ul.footer-social li:hover a {
    background: #fe6109;
}

ul.footer-social li:hover a i {
    color: #ffffff;
}

.footer .copyright .right li:hover a {
    color: #fe6109;
}

section.p-hide.category-01.custom-vendor-list .container {
    max-width: 100% !important;
    padding: 0 100px;
}

.eyeglasses .men-glasses {
    top: 125px;
    position: absolute;
    left: 64px;
    text-align: left;
}

.eyeglasses .men-glasses p {
    text-align: left;
    letter-spacing: 0px;
    color: rgb(0, 0, 0);
    text-transform: uppercase;
    font: normal 48px / 39px "Gilroy";
    font-weight: 600;
}

.eyeglasses .men-glasses h3 {
    font: normal normal normal 25px/51px Roboto;
    letter-spacing: 0.96px;
    color: #000000;
    text-transform: uppercase;
}

section.eyeglasses img {
    object-fit: cover;
    width: 100%;
    height: 344px;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

section.eyeglasses .men-image:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.men-image {
    overflow: hidden;
}

section.eyeglasses .row {
    column-gap: 16px;
    flex-wrap: initial;
    display: flex;
}

.eye-cate {
    position: relative;
}

section.eyeglasses {
    margin-bottom: 16px;
}

.product-area .owl-controls .owl-prev i.ti-angle-left,
.product-area .owl-controls .owl-next i.ti-angle-right {
    font-weight: bold;
}

.s-frame0 .single-product {
    height: 250px;
    /* width: 100%; */
    background: #FFFFFF;
}


/*.s-frame0 .single-product .product-content h3 a {
    text-align: center;
    letter-spacing: 0px;
    color: #4E4D4D;
    text-transform: capitalize;
    font-size: 18px;
    line-height: 20px;
    font-weight: 400;
}*/

.s-frame0 .single-product .product-img {
    width: 100%;
    height: 120px;
}

.s-sun0 .owl-nav .owl-prev i.ti-angle-left,
.s-sun0 .owl-nav .owl-next i.ti-angle-right,
.s-season0 .owl-nav .owl-prev i.ti-angle-left,
.s-season0 .owl-nav .owl-next i.ti-angle-right {
    color: #71AC66;
}

.s-season0 .section-title h2,
.s-sun0 .section-title h2 {
    color: #71AC66;
}

.s-contact .section-title h2,
.s-spect0 .section-title h2 {
    color: #8244B5;
}

.s-contact .owl-nav .owl-prev i.ti-angle-left,
.s-contact .owl-nav .owl-next i.ti-angle-right,
.s-spect0 .owl-nav .owl-prev i.ti-angle-left,
.s-spect0 .owl-nav .owl-next i.ti-angle-right,
.s-access0 .owl-nav .owl-prev i.ti-angle-left,
.s-access0 .owl-nav .owl-next i.ti-angle-right {
    color: #8244B5;
}

.s-access0 .section-title h2 {
    color: #EE9134;
}

.custom-category .col-lg-2.slider-left1 {
    flex: 23%;
    max-width: 23%;
}

.slider-left1 .slidebar-inner1 {
    border: 2px solid #F1F3F6;
    /*    padding: 16px;*/
}

div#product_load_scroll {
    flex: 77%;
    max-width: 77%;
    /*    padding-left: 50px;*/
}

.product-area.section.cat-page .row {
    justify-content: space-between;
    padding-bottom: 31px;
}

.brands-section .wearTrend h2 {
    color: #0d538f;
    font-size: 35px;
    font-weight: 400;
    line-height: 50px;
    /*    padding: 0px 120px 0px 0px;*/
}

body .s-access0 .owl-nav .owl-prev i.ti-angle-left {
    color: #ee914e;
}

body .s-access0 .owl-nav .owl-next i.ti-angle-right {
    color: #ee914e;
}

ul.filter-dropdown-menu.list-unstyled.menu-lk li.list-checkbox.frameShapes {
    display: inline-block !important;
}

.single-product .product-img .product-action a.add_to_wishlist {
    width: 40px;
    height: 40px;
    background-color: #F3F3F3;
    text-align: center;
    border-radius: 50%;
    top: 24px;
    right: 15px;
}

span.discount-text {
    position: absolute;
    left: 0;
    background: #064780;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 0px 4px 4px 0px;
    width: 78px;
    height: 27px;
    top: 19px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    font: normal normal 300 15px/18px Roboto;
    letter-spacing: 0px;
    color: #FFFFFF;
    text-transform: uppercase;
}

.single-product .product-img span.green-rating {
    position: absolute;
    right: 34px;
    bottom: 12px;
}

.single-product .product-img .product-action a.add_to_wishlist i {
    font-size: 24px;
    color: #ACACAC;
}

.custom-category .slider-left1 a {
    color: #063776 !important;
    display: none;
}


/*header css*/

.menus-col {
    width: 27%;
    float: right;
}

.cate {
    width: 56%;
}

.call-btn {
    text-align: right;
    padding-right: 7px;
    width: auto;
    position: absolute;
    right: 0;
    top: 6px;
}

.call-btn svg {
    width: 16px;
}

.logo-col {
    width: 17%;
    width: 8%;
}

.inner-pro-des .text-area .text-area-inner,
.product-tab-section .card,
.product-tab-section .rating-tab .card-body .product-disc,
.pro-col1 {
    border: 2px solid #F1F3F6;
    padding: 24px;
    width: 100%;
    float: left;
    margin-bottom: 8px;
}

.inner-pro-des {
    width: 100%;
    float: left;
}

.collapse {
    display: block !important;
}

.product-tab-section table tr:nth-child(odd) {
    background: #F3F3F3;
}

.product-tab-section table tr:nth-child(even) {
    background: #FFFFFF;
}

.product-tab-section table tr td:last-child * {
    font-weight: 500
}

.product-tab-section table tr td:first-child span,
.product-tab-section table tr td:first-child,
.product-tab-section table tr td:first-child *,
.product-tab-section table tr td:first-child * {
    font-size: 14px !important;
    line-height: 24px !important;
    font-weight: 600 !important;
    font-family: 'Roboto', sans-serif !important;
    color: #000 !important;
    box-shadow: none !important;
}

ul.a-unordered-list.a-vertical.a-spacing-mini li {
    list-style: none !important;
}

ul.a-unordered-list.a-vertical.a-spacing-mini {
    margin: 0 !IMPORTANT;
}

div#hero-quick-promo hr {
    display: none;
}

.row.selct-po {
    border: 2px solid #F1F3F6;
    border-radius: 8px;
    padding: 21px;
}

.product-tab-section table tr td:first-child {
    border-right: 4px solid #fff !important;
    width: 37% !important;
}

.rat00 {
    display: flex;
    align-items: center;
    column-gap: 3px;
}

.rat00 svg {
    width: 17px;
    height: 16px;
    color: #F1CD6A;
}

.product-tab-section .rating-tab .card-body .product-disc h2 {
    font: normal normal bold 16px/14px Roboto;
    letter-spacing: 0.01px;
    color: #000000;
    padding: 12px 0px;
}

.product-tab-section .rating-tab .card-body .product-disc p,
.product-disc p,
.product-disc p b {
    font: normal normal normal 15px/24px Roboto;
    color: #818181;
    font-family: 'Roboto', sans-serif !important;
}

.product-tab-section .rating-tab .card-body .product-disc p span {
    display: block;
    letter-spacing: 0px;
    color: #000000;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 600 !important;
}

.most-popular .owl-carousel .owl-controls .owl-nav .owl-next,
.cate-sec .owl-nav .owl-next {
    color: #3f4372;
    background: none;
}

.product-price .price span.del-p {
    letter-spacing: 0px;
    color: #000000;
    float: left;
    margin-right: 9px;
    font-size: 19px;
    font-weight: 500;
}

.product-price .price span b {
    letter-spacing: -0.48px;
    color: #ACACAC;
    font-size: 15px;
    text-transform: capitalize;
    font-weight: 500;
    padding: 0px 3px;
}

.prduct-tittle1 .over-results {
    align-items: center;
    padding-left: 20px;
    width: 100%;
    display: flex;
    padding-right: 17px;
    justify-content: end;
}

.rating-stars-gg {
    padding: 11px 0 0;
}

.over-results p {
    padding-right: 18px;
    font-size: 16px;
    /* width: 50%; */
    color: #191B1C;
    font-weight: 600;
    align-items: center;
    margin-bottom: 0px;
}

.over-results select {
    text-align: left;
    font: normal normal normal 16px/20px Roboto;
    letter-spacing: 0px;
    color: #818181;
    border: 1px solid #ACACAC;
    width: 35%;
    height: 40px;
    border-radius: 5px;
    padding: 0px 5px;
}

.range-value input#product-range-amount {
    position: absolute;
    font-weight: 500;
    top: 39px;
}

.slider-left1 .grey-bg.filterbtn.dropdown-toggle {
    position: relative;
}

.current-fillter h2 {
    font-size: 18px;
}

.current-fillter p {
    color: #000000;
    font-size: 14px;
    font-weight: 600;
}

section.related-product-sec {
    width: 100%;
    border: 2px solid #F1F3F6;
    padding: 42px 80px;
    background-color: #fff;
}

section.related-product-sec h2 {
    letter-spacing: 0px;
    color: #000000;
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    padding-bottom: 35px;
}

section.related-product-sec .single-product .product-img a img {
    border: none;
}

section.related-product-sec .single-product {
    border: 2px solid #78ACEC0F;
    margin: 0 10px;
}

section.related-product-sec .owl-controls {
    position: absolute;
    top: 50%;
    width: 100%;
}

section.related-product-sec .owl-controls .owl-dots {
    display: none !important;
}

section.related-product-sec .owl-controls .owl-nav .owl-prev::before,
section.related-product-sec .owl-controls .owl-nav .owl-next::before {
    position: absolute;
    padding: 13px;
    box-shadow: 3px -3px 0 1px #818181 inset;
    border: solid transparent;
    border-width: 0 0 3px 3px;
    transition: 0.2s;
    content: " ";
    transform: rotate(47deg);
}

section.related-product-sec .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next {
    position: absolute;
    background-color: transparent;
    color: #fff0;
}

.owl-carousel .owl-controls .owl-nav .owl-prev {
    left: -83px;
}

.owl-carousel .owl-controls .owl-nav .owl-next {
    right: -83px;
}

section.related-product-sec .owl-controls .owl-nav .owl-next::before {
    transform: rotate(225deg);
}

.custom-category .prduct-tittle1 h2 {
    font-size: 30px;
}

/*ul.filter-dropdown-menu.list-unstyled.menu-lk li.list-checkbox {
    display: flex !important;
}*/

.custom-category .prduct-tittle1 h2 {
    font-size: 30px;
}

.slider-left1 .slidebar-inner1::-webkit-scrollbar {
    display: none;
}

.main-filters:last-child {
    border: none;
}

.slider-left1 .slidebar-inner1 {
    height: 881px;
    overflow: hidden;
    overflow-y: scroll;
    position: sticky;
    top: 60px;
}

section.cate-sec.brands-section.section .ti-angle-left:before {
    content: "\e628";
    margin-left: 10px;
}

section.cate-sec.brands-section.section .owl-carousel .owl-controls .owl-nav .owl-prev {
    left: 0;
}

section.cate-sec.brands-section.section .owl-carousel .owl-controls .owl-nav .owl-next {
    right: 0;
    left: 0;
    display: none !important;
}

section.cate-sec.brands-section.section .owl-nav {
    position: initial;
    margin-top: 10px;
}

section.cate-sec.brands-section.section .owl-carousel .owl-controls .owl-nav .owl-next .ti-angle-right:before {
    margin-left: 90px;
}

section.cate-sec.brands-section.section .owl-carousel .owl-controls .owl-nav {
    display: block !important;
}

.g-slider {
    background-size: cover;
}

.single-footer.about p {
    font: normal normal normal 15px/21px Roboto;
    letter-spacing: 0px;
    color: #707070;
    font-family: 'Roboto', sans-serif !important;
    margin-bottom: 15px;
}


/*body .custom-vendor-list ul li:hover a.view-store-btn {
    display: block;
    width: 87%;
}*/


/*body .custom-vendor-list ul  li.vendor-name:hover {
    height: 462px;
}*/


/*body .custom-vendor-list ul a.view-store-btn {
    display: none;
    position: absolute;
}*/


/*body .custom-vendor-list ul li.vendor-name:hover {   
    position: relative;
    top: 21px;
    margin-bottom: 15px;
    transition: all 0.2s linear 0s;
        min-height: 548px;
}*/

.product-info-area.custom-product-info-area .row.selct-po {
    padding: 10px;
}

.product-info-area.custom-product-info-area .form-group.cc {
    position: relative;
    margin-bottom: 26px;
}

section.product-detail.section .text-area .qty-counter .button .btn {
    line-height: 43px !important;
    height: 40px;
    background: #ACACAC;
    /*    border-radius: 19px;*/
}

.product-info-area.custom-product-info-area .cart-area {
    margin-top: 15px;
}

.product-info-area.custom-product-info-area .form-group.cc::before {
    content: " ";
    position: absolute;
    width: 100%;
    background-color: #F3F3F3;
    border-radius: 4px;
    opacity: 0.53;
    height: 61px;
    bottom: -8px;
    z-index: -1;
}

.s-access0 .single-product .product-content .product-price {
    display: none;
}

.product-area.most-popular.s-access0 .single-product .product-img a img {
    height: 225px;
}

.product-area.most-popular.section.d-hide.s-sun0,
.product-area.most-popular.section.d-hide.s-contact {
    padding-bottom: 0;
}

.user-name {
    display: flex;
    align-items: center;
}

.user-name svg {
    margin-right: 6px;
}


/*section.product-detail.section .text-area .qty-counter .button .btn {
 border-radius: 3px;
}*/

section.product-detail.section .text-area .cart-area {
    margin-top: 14px;
}

.product-info-area.custom-product-info-area .form-group.cc .row {
    padding-right: 5px;
}

.product-info-area.custom-product-info-area .form-group.cc label {
    font-family: 'Roboto', sans-serif !important;
    font-size: 13px;
    margin-bottom: 14px;
    font-weight: 600;
    color: #000;
}


/*.custom-product-info-area .form-group .form-control {
    font-size: 11px !important;
}*/

.product-info-area.custom-product-info-area label.left-title {
    margin-top: 5px;
    padding-left: 7px;
    padding-right: 4px;
    color: #27415A;
}

.custom-product-info-area .form-group .form-control {
    padding-left: 3px;
    height: 38px !important;
    width: 180px !important;
}

.product-info-area.custom-product-info-area label.right-title {
    margin-top: 42px;
    padding-left: 14px;
    padding-right: 4px;
    color: #27415A;
}

section.product-detail.section .text-area .single-page-product .button .btn {
    color: #fff;
}

.product-info-area.custom-product-info-area label.left-title {
    padding-left: 14px;
}

button.btn.btn-primary.btn-number.minus-btn-qty i,
button.btn.btn-primary.btn-number.plus-btn-qty i {
    color: #fff;
    font-weight: 600;
    font-size: 17px;
    line-height: 40px;
}

.product-info-area.custom-product-info-area .product-name {
    margin-bottom: 10px;
}

.header.shop .nav li::before {
    display: block;
    content: "";
    width: 34px;
    height: 12px;
    position: absolute;
    left: 6px;
    top: 14px;
    background-size: 100% 100% !important;
}

.header.shop .nav li.nav-spectacle-frame::before {
    background: transparent url(../uploads/banners/m1.svg) no-repeat;
    height: 12px;
    top: 18px;
}

.header.shop .nav li.nav-sunglasses::before {
    background: transparent url(../uploads/banners/m2.svg) no-repeat;
    height: 24px;
}

.header.shop .nav li a {
    padding-left: 50px;
}

.header.shop .nav li.nav-contact-lenses::before {
    background: transparent url(../uploads/banners/m3.svg) no-repeat;
    height: 18px;
}

.header.shop .nav li.nav-spectacle-lenses::before {
    background: transparent url(../uploads/banners/m4.svg) no-repeat;
    height: 25px;
}

.header.shop .nav li.nav-accessories::before {
    background: transparent url(../uploads/banners/m5.svg) no-repeat;
    height: 26px;
}

.header.shop .nav li.nav-home-eye-testing::before {
    background: transparent url(../uploads/banners/m6.svg) no-repeat;
    height: 22px;
}

section.product-detail.section .text-area .cta-area {
    display: table;
    margin: 0 auto;
}

.custom-product-info-area .text-area.aadd .form-group .form-control {
    width: 158px !important;
}

.product-info-area.custom-product-info-area .form-group.cc label {
    min-width: 45px;
}

.product-info-area.custom-product-info-area label.left-title {
    margin-right: 9px;
}


/*#####2AUG#######*/

.note-statusbar output {
    display: inherit !important;
}

.single-footer.social {
    margin-bottom: 20px;
}

span.discount-text {
    z-index: 99;
}

.s01 svg path:hover {
    color: #fe5c09;
    fill: #fe5c09;
}

.differnt_popup1 {
    cursor: pointer;
    height: auto;
    position: fixed;
    right: 0;
    top: 35%;
    width: auto;
    z-index: 999999;
}

.differnt_popup1 img {
    width: 35px;
}

.cp-widget-button1 {
    display: inline-block;
    position: fixed;
    bottom: 8%;
    right: 0%;
    z-index: 999999;
}

.cp-widget-button2 {
    display: inline-block;
    position: fixed;
    bottom: 21.5%;
    right: 0%;
    z-index: 999999;
}

.cp-widget-button3 {
    display: inline-block;
    position: fixed;
    bottom: 27.8%;
    right: 0%;
    z-index: 999999;
}

.cp-widget-button2 .cp-widget-button__inner img {
    width: 54px;
}

.cp-widget-button__inner1 {
    height: 64px;
    width: 64px;
    line-height: 64px;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
}

.cp-widget-button__inner1,
.cp-widget-button__inner {
    animation: bounce 1s infinite alternate;
    -webkit-animation: bounce 1s infinite alternate;
}

@keyframes bounce {
    from {
        transform: translateY(0)
    }

    to {
        transform: translateY(-15px);
    }
}

@-webkit-keyframes bounce {
    from {
        transform: translateY(0)
    }

    to {
        transform: translateY(-15px)
    }
}

.cp-widget-button__inner1 img,
.cp-widget-button__inner img {
    margin: 0 auto;
    width: 50px;
}

.cp-widget-button {
    display: inline-block;
    position: fixed;
    bottom: 14.7%;
    right: 0%;
    z-index: 999999;
}

.cp-widget-button__inner {
    height: 64px;
    width: 64px;
    line-height: 64px;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
}

section.benefits-section.section .cl12SwNftSnBft .cl4mnBft .ImgSwnvrTvr img,
section.benefits-section.section .cl12SwNftSnBft .cl4mnBft .ImgSwnvrTvr svg {
    width: 83px;
    height: 65px;
    object-fit: contain;
    text-align: left;
}

.menu-area {
    position: relative;
}

.product-area.most-popular .single-product {
    border: 2px solid #02539d00;
    box-shadow: 0px 0px 8px #adadad33;
    border-radius: 8px;
}

.product-area.most-popular .single-product:hover {
    /* border: 2px solid #02539d; */
    box-shadow: 0px 0px 25px #adadad99;
}

.contact-side-detail h5.lets-head span {
    color: #fff;
}

.ss::before {
    font-family: 'FontAwesome';
    position: absolute;
    font-size: 15px;
    color: #626262;
    right: 5px;
    top: 11px;
    content: "\f078";
    font-weight: 200;
    padding: 0px 6px;
    height: 1px;
}

.ss {
    position: relative;
}

.v-list-top .distance-box {
    justify-content: flex-start;
}

section.benefits-section.section::before {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    top: 0;
    left: 0;
    opacity: 0.5;
}

body .toast i {
    font-size: 35px;
    border-radius: 90px;
    padding: 8px 0px;
    width: 55px;
    height: auto;
    position: absolute;
    left: 9px;
    top: 9px;
}

body .toast {
    max-width: 420px;
    padding: 25px 22px 25px 70px !important;
    border-radius: 6px !important;
    border: none !important;
    background-image: linear-gradient(91deg, #251f43, #141022) !important;
}

body .toast.show .toast-body {
    padding: 0px;
}

body .toast.show .toast-body.success-pop i {
    color: #13f86d !important;
}

body .toast.show .toast-body.error-pop i {
    color: #ec0046 !important;
}

body .toast.show .toast-body.notf-pop i {
    color: #13f86d !important;
}

/*###30aug*/

.footer .copyright {

    display: block;
    background-color: #28282a;
}

.footer .copyright p {

    font: normal normal normal 16px/24px Roboto !important;
    font-size: 16px !important;
    color: #fff;
}


.footer .copyright .left {
    float: none;
    text-align: center;
}

.download-icons-sec h2 {
    font-size: 21px !important;
    font: normal normal normal 16px/24px Roboto;
    line-height: 18px;
    margin-bottom: 11px;
    font-weight: 600;
}

.download-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 6px;
}

.footer-top.section {
    padding: 25px 0;
}


.download-icons p {

    color: #fff !important;
}

.download-icons a {
    border: 2px solid #5a5a5a;
    background-color: #000;
    padding: 5px 3px;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    font-weight: 500;
    display: block;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.download-icons span {
    display: block;
}

.download-icons .Android-part,
.download-icons .apple-part {

    width: 41%;

}


.download-icons i {
    font-size: 31px;
    margin-right: 8px;
    width: 20%;
    float: left;
    position: relative;
    top: -5px;
}

.download-icons p {
    color: #fff !important;
    text-align: left;
    padding-left: 6px;
    padding-top: 0;
    font-weight: 600 !important;
    font-size: 12px !important;
}

.download-icons a p {
    width: 70%;
    float: left;
    margin: 0;
    line-height: 20px !important;
    margin-bottom: 1px !important;
}


.download-icons a:hover,
.download-icons a p:hover {
    color: #fe5d09 !important;
}

.call-us span {
    position: relative;
    top: 0px !important;
}

ul.footer-links {
    margin-top: 10px;
}

.vendor-list-bbcc {
    display: flex;
    justify-content: space-between;
}

.vendor-list-bbcc .store-icons {
    display: flex;
    justify-content: flex-end;
    column-gap: 10px;
}

.vendor-list-bbcc .store-icons i {
    font-size: 18px !important;
    color: #064780;
}

.specc {
    padding: 35px 0 70px;
}

div#CartItemRender {
    min-height: 48vh;
}

button#verify {
    background-color: #ff4f0a;
    border-color: #ff4f0a;
    border-radius: 0;
}

.form-control:focus {
    border-color: #000000;
    box-shadow: none;
}

.specc p {
    font-size: 17px;
    line-height: 1.6;
}

.table.shopping-summery button.btn.btn-primary.btn-number.minus-btn-qty i,
.table.shopping-summery button.btn.btn-primary.btn-number.plus-btn-qty i {
    color: #7e7e7e;
    font-size: 12px;
}

/*###lensmodal###*/

div#exampleSpectacle h5#exampleModalLabel {
    font-family: 'Roboto', sans-serif !important;
    color: #064780;
    font-size: 29px;
    text-transform: capitalize;
}


div#exampleSpectacle .grey-bg.filterbtn.dropdown-toggle {
    font-family: 'Roboto', sans-serif !important;
    font-size: 18px !important;
    line-height: 35px;
    margin-bottom: 0px;
}


.custom-modal .listItem .vision-description span {
    color: #6b7378;
    font-size: 13px !important;
    padding-top: 0;
    line-height: 1.42857 !important;
    padding-left: 0px !important;
    font-weight: 400 !important;
    font: normal normal normal 14px/14px Roboto;
}


.text-area-inner p.sq {
    display: none;
}


/*####about-us*/

/*.about-us-sec .about-us-title{

  padding: 20px 260px 0px 260px;

}

.about-us-sec .about-us-content {

  padding: 0px 260px 40px 260px;

}*/

.about-us-sec .about-us-content h3 {
    font-size: 15px;
    margin-top: 16px;
    margin-bottom: 8px;
}

.about-us-sec .about-us-content h6 {
    font-size: 14px;
    line-height: 26px;
}

section.about-us-sec {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 40px;
    padding-bottom: 53px;
}


/*####about-us*/

/*##header###*/

.cate {
    width: 50% !important;
}

.menus-col {
    width: 33% !important;
}

.header.shop .right-bar {
    column-gap: 10px;
    justify-content: end !important;
}

.header.shop .search-bar {
    width: 80% !important;
}

section.profile-bio01 {
    padding: 0px 0;
}


section.contact-section .contact-book fieldset legend {
    font-family: gilroy-regular !important;
}


section.icon-section ul.icon-list span {

    font-family: gilroy-regular !important;
    font-size: 18px !important;

}


section.work-section .work-part ul.work-list li span {

    font-family: gilroy-regular !important;
    font-size: 18px !important;

}

.product-detail-list .xzoom-container .xzoom-thumbs {
    white-space: nowrap;
}

.custom-category .main-filters li.list-checkbox input[type=radio] {
    margin-right: 5px;
}

/*##header###*/


.banner-Search.distance-search {
    display: none;
}


.logo.vendor-head-logo img {
    width: auto !important;
    object-fit: cover;
    height: 86px;
}


.header.shop .logo {

    justify-content: center;
}


.specc p {
    font-size: 14px !important;
}


body section.product-detail.section .product-detail-list .xzoom-container {

    z-index: 0 !important;

}

.header .shopping .shopping-item {
    overflow-y: unset;
    height: unset;

}

.header .shopping .shopping-item ul.shopping-list {
    min-height: 200px;
    overflow: hidden;
    overflow-y: scroll;
    height: 220px;
    margin: 5px;
}


.header .shopping-list li .remove {
    right: 18px !important;
}

.profile-wrapper aside.main-sidebar01 ul.nav .nav-item i {
    font: normal normal normal 14px/1 FontAwesome;
    position: absolute;
    left: 14px;
}

.profile-wrapper aside.main-sidebar01 ul.nav .nav-item i:before {
    font-size: 16px !important;
}

.profile-wrapper aside.main-sidebar01 ul.nav .nav-item i.right.fa.fa-lock {
    left: 18px !important;
}

.profile-wrapper aside.main-sidebar01 ul.nav .nav-item span.menu-title {
    padding-left: 45px;
}

body .profile-wrapper .profile-feed-container .profile-feed .profile-feed-wrapper .profile-feed-padding {
    padding: 20px;
}

aside.main-sidebar01 ul.nav .nav-item span.menu-title {
    padding-left: 40px;
}

.single-widget.get-button .button {
    margin-top: 15px;
}


.single-widget.get-button input[type="file"] {
    margin-top: 20px;
}


/*###scrollbar####*/

.c-scrollbar::-webkit-scrollbar {
    width: 4px;
    background: #f7f7f7;
    border-radius: 3px;
}

.c-scrollbar::-webkit-scrollbar {

    width: 12px;
    height: 9px;

}


.c-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.c-scrollbar::-webkit-scrollbar-thumb {
    background: rgb(153 142 142 / 20%);
    border-radius: 3px;
}

.c-scrollbar {
    scrollbar-color: rgba(255, 255, 255, 0.2);
    scrollbar-width: thin;
}

.c-scrollbar-light::-webkit-scrollbar,
.uppy-Dashboard-files::-webkit-scrollbar,
.bootstrap-select .dropdown-menu .inner::-webkit-scrollbar {
    width: 4px;
    background: rgba(24, 28, 41, 0.08);
    border-radius: 3px;
}

.c-scrollbar-light::-webkit-scrollbar-track,
.uppy-Dashboard-files::-webkit-scrollbar-track,
.bootstrap-select .dropdown-menu .inner::-webkit-scrollbar-track {
    background: transparent;
}

.c-scrollbar-light::-webkit-scrollbar-thumb,
.uppy-Dashboard-files::-webkit-scrollbar-thumb,
.bootstrap-select .dropdown-menu .inner::-webkit-scrollbar-thumb {
    background: rgba(24, 28, 41, 0.1);
    border-radius: 3px;
}

.c-scrollbar-light,
.uppy-Dashboard-files,
.bootstrap-select .dropdown-menu .inner {
    scrollbar-color: rgba(24, 28, 41, 0.08);
    scrollbar-width: thin;
}

.no-scrollbar::-webkit-scrollbar {
    width: 2px;
}

.no-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.no-scrollbar::-webkit-scrollbar-thumb {
    background: transparent;
}


/*###scollbar##*/

section.banner01 form.newsletter-inner .select2-container--default .select2-selection--single{
    border: none;
    padding-left: 3px;
    font: normal normal normal 16px/24px Roboto;
    letter-spacing: 0;
    color: #acacac;
}
/*section.banner01 form.newsletter-inner .select2-container {
    width: 107% !important;
}*/
section.banner01 form.newsletter-inner .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: -22px;
}
section.banner01 form.newsletter-inner .select2-container--default .select2-selection--single .select2-selection__arrow b {
    top: 34%;
    display: block;
    width: 9px;
    border: none !important;
    height: 9px;
    border-top: 2px solid #acacbf !important;
    border-right: 2px solid #acacbf !important;
    border-width: 2px;
    -moz-transform: rotate(133deg);
    -ms-transform: rotate(133deg);
    -webkit-transform: rotate(133deg);
    transform: rotate(133deg);
}
/*###MEDIASTARTSHERE*/
@media (max-width: 400px) {

    .contact-us h4,
    .vendor-list h4 {
        font-size: 30px;
        line-height: 44px;
    }

}

@media (min-width: 2500px) {

    /*  .custom-vendor-list .img01 {
    height: 120px;
    width: 180px;
}*/
    .vendor-list,
    .contact-us {
        height: 400px;
    }

    .contact-us h4,
    .vendor-list h4 {
        font-size: 60px;
    }

    /*  section.banner01 {
    min-height: 100vh;
    max-height: 100vh;
}*/
    body a.header-logout {
        font-size: 20px;
    }

    .logo.vendor-head-logo img {
        width: auto !important;
        object-fit: cover;
        height: 108px !important;
    }

    section.banner01 button.btn {
        min-height: 53px;
    }

    section.product-detail.section .container-fluid {
        max-width: 2000px;
    }

    .custom-vendor-list .a01 {
        min-height: 80px;
    }

    body .custom-vendor-list ul li {
        padding: 3rem 2rem !important;
        margin-top: 30px;
    }

    body .a01 p {
        font-size: 20px;
    }

    body .last01 p.sc-1hez2tp-0.sc-cCbPEh.eHDCGK {
        font-size: 20px;
    }

    body header.header.shop.home01 .logo img {
        width: 49% !important;
    }

    section.p-hide.category-01.custom-vendor-list {
        padding: 52px 0px;
        margin-bottom: 0px;
    }

    .header.shop .logo {
        height: 108px !important;
        width: 100%;
        line-height: 66px;
    }

    /*section.p-hide.category-01 {
    margin-bottom: 120px;
    margin-top: 120px;
}*/
    section.brands-section.section {
        padding: 120px 0px;
    }

    section.benefits-section.section {
        padding: 120px 0px;
    }

    /*.footer.home-footer .copyright .inner {
    border-top: 1px solid #eeeeee3d;
    padding: 30px 0 23px 0px;
}*/
    body .container {
        max-width: 2400px !important;
    }

    /*.single-banner.mid {
    height: 620px;
}*/
    .single-banner.mid.first {
        margin-bottom: 20px;
    }

    section.bg-banner.p-hide img {
        width: 100%;
    }

    .footer .links ul li a {
        font-size: 18px;
    }

    /*.header.shop .right-bar .sinlge-bar .single-icon {
    font-size: 20px;
}*/
    /*.header.shop .search-bar input {
    font-size: 20px;
}*/
    .right-menu p {
        font-size: 20px;
    }

    .right-menu .imgClmnvr {
        width: 70px;
        height: 42px;
    }

    .right-menu i {
        font-size: 34px;
    }

    section.banner01 p {
        font-size: 20px;
    }

    p {
        font-size: 20px;
    }

    /*section.benefits-section.section .cl12SwNftSnBft .cl4mnBft .BftSwnVr p {
    font-size: 20px;
}*/
    /*section.benefits-section.section .cl12SwNftSnBft .cl4mnBft .BftSwnVr h5 {
    font-size: 30px;
}*/
    h4.font-head.mt70 {
        font-size: 40px;
    }

    span.where {
        font-size: 20px;
    }

    .pac-target-input:not(:-webkit-autofill) {
        font-size: 20px;
    }

    .btn {
        font-size: 20px;
    }

    body .category-01 ul h2 {
        font-size: 24px;
    }
}


/*@media (min-width: 1800px) {
.vendor-address p {
    min-height: 50px;
}

}*/

@media (min-width: 1700px) {
    .container.contact-side-detail {
        padding: 80px 0px 60px 160px;
    }

    /*.form-group.row.f-name01 {
        width: 50%;
        margin-right: 0px !important;
    }*/
    /*.form-group.row.e-mail01 {
        width: 50%;
        margin-left: 0px !important;
    }*/
    /*.form-group.row.f-name01 .col-md-12 {
        padding-right: 0px !important;
    }*/
    .form-group.row.e-mail01 .col-md-12 {
        padding-left: 0px !important;
    }

    /*.vsiion-type .custom-listItem {
        width: 48%;
        float: left;
        margin-right: 1%;
    }*/
    .vendor-not-find a.go_Bcak {
        padding: 12px 45px;
    }

    /*.vendor-address p {
    min-height: 70px;
}*/
    .container {
        padding: 0;
        margin: 0 auto;
        max-width: 1645px !important;
    }

    .container.contact-side-detail {
        max-width: 1452px !important;
    }


    /*.header.shop .logo {
    height: 81px;
    width: 100%;
    line-height: 66px;
}*/
    /*section.p-hide.category-01.custom-vendor-list {
    padding: 52px 0px;
    margin-bottom: 0px;
}*/
    /*.header.shop  .middle-inner .right-bar {
    column-gap: 37px !important;
    justify-content: end;
}*/
    /*section.product-detail.section .text-area .single-page-product.custom-box-quantity .button .btn {
   width: 41px !important;
}*/
    /*.product-area.most-popular .single-product .product-img a img {
    height: 30vh;
    width: 100%;
}*/
    section.product-detail.section .text-area .single-page-product .button .btn {
        width: 42px !important;
    }

    section.product-detail.section button.btn.btn-primary.btn-number.minus-btn-qty {
        border-top-left-radius: 4px;
        border-bottom-left-radius: 4px;
    }

    section.product-detail.section button.btn.btn-primary.btn-number.plus-btn-qty {
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
    }
}

@media (max-width: 1800px) {
    .single-product .product-content h3 a {
        font-size: 16px;
        line-height: 20px;
    }

    .benefits-apecs.specs-back p {
        font: normal normal 400 16px/24px Roboto;
    }

    /*section.benefits-section.section .cl12SwNftSnBft .cl4mnBft .BftSwnVr h5 {
    margin-bottom: 8px;
}*/
    section.banner01 form.newsletter-inner {
        width: 890px;
    }

    .l-01 {
        min-height: 65px;
    }

    .l-01 .input-group-addon {
        min-width: 175px;
    }

    .TtleBrnDmn h2 {
        font-size: 32px;
        line-height: 45px;
    }

    h4.font-head.mt70 {
        font-size: 16px;
    }

    .frame2 .frame-img2 img,
    .frame2 .frame-img3 img {
        height: 475px;
    }

    .frame-img3.text-left img,
    .frame-img2.opcity-last img {
        height: 465px;
    }

    .frame-one img {
        height: 940px;
    }

    section.banner01 button.btn {
        width: 58px;
        height: 58px;
    }

    .v-list-top .distance-box h2 {
        font-size: 30px;
    }

    .v-list-top .distance-box a {
        font-size: 19px;
        width: 70px;
        height: 42px;
        padding: 9px 16px 10px 16px;
    }

    /*.v-list-top select#distance {
    width: 173px;
    height: 46px;
    font-size: 18px;
}*/
    .distance-search .loction-search input#form1 {
        font-size: 19px;
        width: 370px;
        padding: 0px 0px 0px 25px;
    }

    .custom-vendor-list .img01 {
        height: 235px;
    }

    /*.vendor-list h4 {
    font: normal normal 300 50px/75px Gilroy;
}*/
    /*.vendor-list {
    height: 480px;
}*/
    .brand-col .TtleBrnDmn {
        width: 280px;
    }

    /*.category-01 ul img.vender-logo {
    right: 10px;
    bottom: 10px;
    width: 85px;
    height: 85px !important;
}*/
    /*.vendor-address p {
    min-height: 63px;
}*/
    .grid-sect .frame-text h2 {
        font-size: 30px;
    }

    .grid-sect .frame-text p {
        font: normal normal normal 16px/26px Roboto;
    }

    /*section.benefits-section.section .cl12SwNftSnBft .cl4mnBft {
    height: 280px;
}*/
    section.benefits-section.section .cl12SwNftSnBft .cl4mnBft .BftSwnVr p {
        font: normal normal normal 16px/24px Roboto;
    }

    .product-area.most-popular.section.d-hide {
        padding: 34px 105px;
    }

    .custom-product-info-area .text-area.aadd .form-group .form-control {
        width: 145px !important;
    }

    /*body .custom-vendor-list ul  li.vendor-name:hover {
    min-height: 510px;
}*/
    .section-title h2 {
        font-size: 30px;
    }

    .hero-slider .owl-carousel .owl-item img {
        height: 420px;
    }

    .product-detail-list .xzoom-container {
        width: 46%;
    }
}

@media (max-width: 1700px) {
    .container {
        max-width: 1452px;
    }

    /*section.benefits-section.section .cl12SwNftSnBft .cl4mnBft {
    width: 32.79%;
        height: 271px;
}*/
    section.banner01 form.newsletter-inner {
        width: 860px;
    }

    .pac-target-input:not(:-webkit-autofill) {
        width: 375px;
    }

    section.benefits-section.section .cl12SwNftSnBft {
        column-gap: 8px;
    }

    /*section.benefits-section.section .cl12SwNftSnBft .cl4mnBft .BftSwnVr h5 {
    font: normal normal bold 26px/35px Roboto;
}*/
    .benefits-apecs.specs-back p {
        font: normal normal 400 14.58px/24px Roboto;
    }

    section.benefits-section.section .cl12SwNftSnBft .cl4mnBft .BftSwnVr p {
        font: normal normal normal 14.5px/23px Roboto;
    }

    /*.vendor-list {
    height: 450px;
}*/
    /*.vendor-list h4 {
    top: 65%;
}*/
    section.p-hide.category-01.custom-vendor-list .container {
        padding: 0 90px;
    }

    /*.vendor-address p {
    font: normal normal normal 16px/23px Roboto;
}*/
    a.view-store-btn {
        padding-bottom: 3px;
    }

    span.green-rating {
        width: 49px;
        height: 23px;
        font: normal normal normal 16px/19px Roboto;
    }

    .v-list-top .distance-box h2 {
        font-size: 25px;
    }

    .v-list-top .distance-search .serch-icon {
        width: 40px;
        height: 40px;
        padding: 5px 9px 5px 11px;
        font-size: 22px;
    }

    .distance-search .search-box {
        height: 50px;
        align-items: center;
    }

    /*.vendor-list h4 {
    font: normal normal 300 45px/70px Gilroy;
}*/
    .v-list-top {
        padding-bottom: 30px;
        margin-bottom: 35px !important;
    }

    /*body  .custom-vendor-list ul h2 {
    font-size: 18px;
}*/
    /*.vendor-address p {
    font: normal normal normal 15px/20px Roboto;
    min-height: 40px;
}*/
    /*p.time-dd,
p.map-rat {
    font: normal normal normal 15px/18px Roboto;
}*/
    .custom-product-info-area .form-group .form-control {
        width: 147px !important;
    }

    section.product-detail.section .text-area .single-page-product .button .btn {
        width: 35px !important;
    }

    .custom-product-info-area .text-area.aadd .form-group .form-control {
        width: 148px !important;
    }

    /*body .custom-vendor-list ul  li.vendor-name:hover {
    min-height: 480px;
}*/
    section.benefits-section.section {
        padding: 42px 80px;
    }

    .hero-slider .owl-carousel .owl-item img {
        height: 405px;
    }

    .product-detail-list .xzoom-container {
        width: 42%;
    }
}

@media (max-width: 1600px) {
    section.p-hide.category-01.custom-vendor-list {
        padding: 52px 0px;
        margin-bottom: 0px;
    }

    section.product-detail.section .text-area .single-page-product.custom-box-quantity .button .btn {
        width: 30px !important;
    }

    .login-box .card-body {
        padding: 0 10px 0px;
    }

    .custom-shopping .shopping-summery thead tr th {
        font-size: 12px !important;
    }

    /*  .product-area.most-popular .single-product .product-img a img {
   height: 25vh;
    width: 100%;
}*/
    section.banner01 {
        height: 510px;
    }

    .grid-sect .frame-text h2 {
        font-size: 28px;
    }

    .grid-sect .frame-text {
        padding: 0 60px;
    }

    .s02 input {
        padding-left: 25px;
        margin-left: 50px;
    }

    .brand-col div#s-brand-new {
        width: 81.5%;
    }

    .benefits-apecs.specs-back p {
        font: normal normal 400 14px/24px Roboto;
    }

    /*section.benefits-section.section .cl12SwNftSnBft .cl4mnBft {
    width: 32.9%;
    height: 270px;
}*/
    section.p-hide.category-01.custom-vendor-list .container {
        padding: 0 85px;
    }

    /*p.map-rat {
    font: normal normal normal 15px/21px Roboto;
}*/
    span.green-rating {
        width: 48px;
        height: 22px;
        font: normal normal normal 15px/18px Roboto;
    }

    /*p.time-dd, p.map-rat {
    font: normal normal normal 14px/17px Roboto;
}*/
    .v-list-top .distance-box h2 {
        font-size: 23px;
    }

    .v-list-top {
        padding-bottom: 25px;
    }

    .hero-slider .owl-carousel .owl-item img {
        height: 380px;
    }

    .brands-section .wearTrend h2 {
        font-size: 34px;
        line-height: 38px;
        /*    padding: 10px 65px 0px 0px;*/
    }

    .product-area.section.cat-page .single-product .product-img a img {
        height: 235px;
    }

    .product-area.section.cat-page .single-product {
        height: 365px;
    }

    .single-product .product-content h3 a {
        font: normal normal normal 16px/22px Roboto;
    }

    .over-results p {
        font-size: 13px;
    }

    .custom-product-info-area .text-area.aadd .form-group .form-control {
        width: 120px !important;
    }

    .product-detail-list .xzoom-container {
        width: 44%;
        top: 73px;
    }
}

@media (min-width:1500px) {
    .logo.vendor-head-logo img {
        object-fit: contain;
    }
}

@media (max-width:1500px) {

    /*  body .custom-vendor-list ul  li.vendor-name:hover {
    min-height: 462px;
}*/
    .brands-section .wearTrend h2 {
        font-size: 30px;
        line-height: 38px;
        /*    padding: 10px 42px 0px 0px;*/
    }

    .grid-sect .frame-img2 .frame-text {
        top: 130px;
    }

    .frame2 .frame-img2 img,
    .frame2 .frame-img3 img {
        height: 395px;
    }

    .frame-img3.text-left img,
    .frame-img2.opcity-last img {
        height: 425px;
    }

    .frame-one img {
        height: 820px;
    }

    section.benefits-section.section .cl12SwNftSnBft .cl4mnBft .ImgSwnvrTvr img {
        width: 60px;
        height: 60px;
    }

    section.benefits-section.section .cl12SwNftSnBft .cl4mnBft .BftSwnVr h5 {
        font: normal normal bold 22px/25px Roboto;
        margin-top: 0px;
    }

    section.benefits-section.section .cl12SwNftSnBft .cl4mnBft .BftSwnVr p {
        font: normal normal normal 13px/20px Roboto;
    }

    .benefits-apecs.specs-back h2 {
        font: normal normal bold 22px/24px Roboto;
    }

    .benefits-apecs.specs-back p {
        font: normal normal 400 13px/21px Roboto;
    }

    .footer .copyright {
        padding: 20px 50px;
    }

    .footer .copyright .right li a {
        font-size: 13px;
    }

    .footer .copyright .right ul {
        column-gap: 10px;
    }

    .header.shop .middle-inner {
        padding: 13.5px 40px;
    }

    .header .header-inner {
        padding: 0px 30px;
    }

    .right-menu .imgClmnvr {
        width: 48px;
        height: 45px;
    }

    .l-01 {
        min-height: 62px;
    }

    section.banner01 button.btn {
        width: 55px;
        height: 55px;
    }

    /*section.benefits-section.section .cl12SwNftSnBft .cl4mnBft {
        width: 32.8%;
        height: 215px;
         padding: 27px;
}*/
    section.brands-section.section {
        padding: 101px 0px 101px 90px;
    }

    .TtleBrnDmn h2 {
        font-size: 29px;
        line-height: 39px;
    }

    h4.font-head.mt70 {
        font-size: 14px;
    }

    div#s-brand-new .item a img {
        height: 154px;
    }

    section.benefits-section.section {
        padding: 42px 90px;
    }

    section.benefits-section.section .cl12SwNftSnBft .cl4mnBft .ImgSwnvrTvr svg {
        height: 70px;
    }

    p.time-dd svg {
        width: 17px;
    }

    /*.vendor-address p {
    min-height: 66px;
}*/
    .custom-vendor-list .img01 {
        height: 215px;
    }

    .category-01 ul {
        column-gap: 25px;
    }

    /*.category-01 ul img.vender-logo {
    right: 7px;
    bottom: 7px;
    width: 80px;
    height: 80px !important;
}*/
    .small-banner .container {
        padding: 0px 90px;
    }

    .s-sun0 .container,
    .s-season0 .container,
    .s-contact .container,
    .s-spect0 .container,
    .s-access0 .container {
        padding: 0px 50px;
    }

    div#product_load_scroll {
        flex: 75%;
        max-width: 75%;
    }

    .custom-category .col-lg-2.slider-left1 {
        flex: 25%;
        max-width: 25%;
    }

    .header.shop .nav li a {
        padding-left: 45px;
        font-size: 13px;
    }

    .custom-product-info-area .form-group .form-control {
        width: 122px !important;
    }

    .custom-product-info-area .text-area.aadd .form-group .form-control {
        width: 100px !important;
    }

    .product-area.most-popular.section.d-hide {
        padding: 34px 40px;
    }

    .cp-widget-button__inner1 img,
    .cp-widget-button__inner img {
        width: 35px;
    }

    .cp-widget-button2 .cp-widget-button__inner img {
        width: 43px;
    }

    div#exampleSpectacle .listItem.custom-listItem {
        width: 32% !important;
    }

    /*div#exampleSpectacle  .listItem.custom-listItem {
    width: 49%;
    float: left;
}*/
    .custom-modal .custom-listItem label {
        padding: 16px 38px 16px 20px;
        min-height: 107px;
    }

    ul.filter-dropdown-menu.list-unstyled.menu-lk li.list-checkbox.listing-div.custom-listing-div.Thickness.radio-listing .listItem.custom-listItem label.custom-check {
        min-height: 35px;
    }

    .cp-widget-button3 {
        bottom: 31.8%;
    }

    .cp-widget-button2 {
        bottom: 24%;
    }

    .cp-widget-button {
        bottom: 16%;
    }
}

@media (min-width:1400px) {

    /*  .product-area.most-popular .single-product .product-img a img {
   height: 25vh;
    width: 100%;
}*/
    /*  .header.shop .right-bar {
    column-gap: 12px !important;
    justify-content: end;
}*/
    .custom-vendor-list h4.font-head.mt70 {
        margin-bottom: 30px !important;
    }
}

@media (max-width:1400px) {

    /*  body .custom-vendor-list ul  li.vendor-name:hover {
    min-height: 470px;
}*/
    .brands-section .wearTrend h2 {
        font-size: 30px;
        /*    padding: 10px 39px 0px 0px;*/
    }

    section.banner01 form.newsletter-inner {
        width: 775px;
    }

    .l-01 .input-group-addon {
        min-width: 165px;
        padding: 8px 14px 8px 27px;
    }

    select#cat00 {
        font: normal normal normal 15px/21px Roboto;
    }

    .pac-target-input:not(:-webkit-autofill) {
        width: 310px;
        font: normal normal normal 15px/24px Roboto;
        height: 35px;
    }

    .l-01 .input-group-addon {
        margin-right: 28px;
    }

    .s02 input {
        height: 35px;
        padding-left: 35px;
        margin-left: 45px;
        font: normal normal normal 15px/24px Roboto;
    }

    section.banner01 button.btn svg {
        width: 20px;
    }

    section.banner01 h1.b-h1 {
        font: normal normal 300 35px/45px Gilroy;
        margin: 0px 0 36px;
    }

    .grid-sect .frame-text h2 {
        font-size: 28px;
    }

    .grid-sect .frame-text p {
        font: normal normal normal 15px/24px Roboto;
    }

    .frame-img3.text-left img,
    .frame-img2.opcity-last img {
        height: 385px;
    }

    .frame-one img {
        height: 778px;
    }

    .TtleBrnDmn h2 {
        font-size: 30px;
        line-height: 40px;
    }

    h4.font-head.mt70 {
        font-size: 18px;
    }

    .benefits-apecs.specs-back p {
        font: normal normal 400 12px/21px Roboto;
    }

    /*section.benefits-section.section .cl12SwNftSnBft .cl4mnBft {
    height: 211px;
}*/
    ul.footer-social li a {
        width: 25px;
        height: 25px;
    }

    ul.footer-social li a i {
        font-size: 16px;
    }

    ul.footer-social {
        column-gap: 18px;
    }

    .footer .copyright .right ul {
        column-gap: 19px;
    }

    .footer .copyright .right li a {
        font-size: 11px;
    }

    header.header.shop.home01 .logo img {
        width: 65% !important;
    }

    .right-menu .imgClmnvr {
        width: 40px;
        height: 35px;
    }

    .right-menu p {
        font: normal normal normal 12px/16px Roboto;
    }

    .header.shop .middle-inner {
        padding: 11.5px 40px;
    }

    /*.vendor-list {
    height: 375px;
}*/
    /*.vendor-list h4 {
    font: normal normal 300 45px/70px Gilroy;
}*/
    .distance-search .loction-search input#form1 {
        font-size: 20px;
        width: 280px;
        padding: 0px 0px 0px 31px;
    }

    .v-list-top .distance-search .serch-icon {
        width: 40px;
        height: 40px;
        padding: 5px 10px;
        font-size: 20px;
    }

    .v-list-top .loction-search label.form-label {
        margin-top: 6px;
    }

    .v-list-top .distance-search .serch-icon svg {
        width: 19px;
    }

    section.p-hide.category-01.custom-vendor-list .container {
        padding: 0 70px;
    }

    .custom-vendor-list .img01 {
        height: 200px;
    }

    /*.vendor-address p {
    font: normal normal normal 14px/21px Roboto;
    min-height: 63px;
}*/
    /*p.time-dd {
    font: normal normal normal 14px/19px Roboto;
}*/
    /*p.map-rat {
    font: normal normal normal 13px/18px Roboto;
}*/
    p.map-rat svg {
        width: 13px;
    }

    .green-rating {
        width: 45px;
        height: 19px;
        font: normal normal normal 14px/17px Roboto;
    }

    a.view-store-btn {
        font-size: 15px;
        padding-bottom: 3px;
        line-height: 17px;
    }

    /*body  .custom-vendor-list ul h2 {
    font-size: 19px;
}*/
    .category-01 ul {
        column-gap: 30px;
    }

    /*.custom-product-info-area .form-group .form-control {
    width: 100px !important;
}*/
    .custom-product-info-area .text-area.aadd .form-group .form-control {
        width: 100px !important;
    }

    .product-detail-list .xzoom4 {
        height: 321px;
    }

    section.product-detail.section .text-area .single-page-product .button .btn {
        width: 42px !important;
    }

    .footer .links ul li a {
        font-size: 13px;
        text-transform: uppercase;
    }

    .footer .social .contact ul li p,
    .single-footer.about p {
        font-size: 14px;
    }

    .footer p.call {
        font-size: 14px;
    }

    .footer p.call span {
        display: block;
    }

    .footer .copyright .right ul {
        column-gap: 9px;
    }


}

@media (max-width:1330px) {
    .TtleBrnDmn h2 {
        font-size: 30px;
        line-height: 38px;
    }

    .grid-sect .frame-text h2 {
        font-size: 32px;
    }

    .grid-sect .frame-img2 .frame-text {
        top: 135px;
    }

    .grid-sect .frame-text p {
        font: normal normal normal 16px/28px Roboto;
    }

    .footer .copyright .right li a {
        font-size: 12px;
    }

    body a.header-logout {
        font-size: 14px;
    }

    .most-popular .owl-carousel .owl-controls .owl-nav .owl-next,
    .cate-sec .owl-nav .owl-next {
        right: -6px;
        background: transparent;
        color: #0a4b83;
    }

    .most-popular .owl-carousel .owl-controls .owl-nav .owl-prev,
    .cate-sec .owl-nav .owl-prev {
        left: -23px;
    }

    section.product-detail.section .text-area .single-page-product.custom-box-quantity .button .btn {
        width: 25px !important;
    }

    .custom-modal .modal-dialog .modal-content .modal-header {
        padding: 15px 0px 15px 35%;
    }

    img.icon-img {
        right: 94%;
    }

    /*  .header.shop .right-bar {
    column-gap: 8px !important;
}*/
    /*.header.shop .right-bar .sinlge-bar .single-icon {
    font-size: 12px;
}*/
    /*.header.shop .nav li a {
    padding: 11px 14px;
}*/
    .product-detail-list .xzoom4 {
        height: auto;
    }

    .single-product .product-img .product-action-2 a {
        font-size: 10px;
        padding: 6px 6px 4px;
    }

    /*.product-area.most-popular .single-product .product-img a img {
    height: 25vh;
    width: 100%;
}*/
    .footer .copyright .right ul {
        column-gap: 10px;
    }

    /*section.benefits-section.section .cl12SwNftSnBft .cl4mnBft {
    height: 233px;
        width: 32.7%;
}*/
    .benefits-apecs.specs-back p {
        font: normal normal 400 12px/18px Roboto;
    }

    /*.footer .copyright .col-md-4.col-12{
    flex: 20%;
    max-width: 20%;
}*/
    .footer .copyright .col-md-8.col-12 {
        flex: 80%;
        max-width: 80%;
    }

    .grid-sect .frame-text {
        padding: 0 40px;
    }

    /*.vendor-address p {
    font: normal normal normal 13px/20px Roboto;
    min-height: 60px;
}*/
    section.banner01 h1.b-h1 {
        font: normal normal 300 32px/38px Gilroy;
        margin: 0px 0 22px;
    }

    .brand-col div#s-brand-new {
        width: 77.5%;
    }

    .menus-col {
        width: 32%;
        float: right;
    }

    .cate {
        width: 33%;
    }

    .custom-product-info-area .text-area.aadd .form-group .form-control {
        width: 80px !important;
    }

    .product-detail-list .xzoom-container {
        width: 100%;
        position: inherit;
    }

    .custom-product-info-area .form-group .form-control {
        width: 99px !important;
    }

    .hero-slider .owl-carousel .owl-item img {
        height: 320px;
    }

    .eyeglasses .men-glasses p {
        font: normal 35px / 36px "Gilroy";
        font-weight: 600;
    }

    .eyeglasses .men-glasses h3 {
        font: normal normal normal 18px/39px Roboto;
    }
}

@media (min-width:1200px) {
    .container.contact-side-detail {
        max-width: 1000px;
    }

    /*.product-area.section.cat-page .single-product {
    width: 29%;
}   */
    .custom-vendor-list .a01 {
        min-height: 70px;
    }

    section.product-detail.section .single-page-product {
        width: 205px;
        height: 41px;
    }

    section.product-detail.section .custom-product-info-area .qty-counter {
        width: 100% !important;
        height: 41px;
    }

    a.header-logout {
        font-size: 11px;
    }

    /*.header.shop .right-bar .sinlge-bar .single-icon {
    line-height: 28px;
}*/
}

@media screen and (max-width:1199px) {
    .custom-product-info-area .form-group .form-control {
        width: 78px !important;
    }

    section.terms-conditions-area.ptb-100 {
        padding: 50px 30px;
    }

    .product-detail-list .xzoom-thumbs a {
        height: 60px;
    }

    .contact-info {
        position: absolute;
        top: 30%;
        left: 85px;
    }

    span.cart {
        display: none;
    }

    span.wish {
        display: none;
    }

    /*.header.shop .right-bar .sinlge-bar .single-icon .total-count {
    right: 0px !important;
}*/
    .header.shop .right-bar .sinlge-bar .single-icon {
        font-size: 11px;
        line-height: 23px;
    }

    a.header-logout {
        font-size: 11px;
    }

    section.product-detail.section .add_to_cart {
        font-size: 12px;
    }

    section.product-detail.section .custom-product-info-area .qty-counter {
        width: 100% !important;
        height: 41px;
    }

    section.product-detail.section .text-area .single-page-product.custom-box-quantity .button .btn {
        width: 18px !important;
        font-size: 10px;
    }

    section.product-detail.section .text-area .qty-counter .input-number {
        width: 50%;
        margin-left: 25%;
    }

    li.list-checkbox.listing-div.custom-listing-div.Thickness .listItem {
        padding: 15px 0px !important;
    }

    .row-design li.list-checkbox.listing-div.custom-listing-div.Thickness.new {
        display: block;
        padding: 0;
        border: none;
        margin: 0;
        background: transparent;
    }

    li.list-checkbox.listing-div.custom-listing-div.Thickness.new .listItem {
        padding: 15px 0px !important;
        border: none;
        float: left;
    }

    li.list-checkbox.listing-div.custom-listing-div.Thickness.radio-listing {
        display: block;
    }

    li.list-checkbox.listing-div.custom-listing-div.Thickness.radio-listing .listItem {
        float: left;
    }

    .custom-modal .listItem span {
        line-height: 20px;
    }

    .shopping-cart.section.custom-shopping .table td p.cart-product-name {
        width: 138px;
    }

    .custom-listing-div .listItem {
        padding: 15px 10px !important;
    }

    .custom-shop .single-service {
        margin-left: 0px;
    }

    body .header.shop .nav li a {
        padding-left: 33px;
        font-size: 12px;
    }

    .header.shop .nav li::before {
        width: 20px;
    }

    .single-product .product-content .product-price span {
        font-size: 14px;
    }

    .single-product .product-img .product-action-2 a {
        font-size: 9px;
        padding: 6px 9px 4px;
    }

    .header.shop .right-bar .sinlge-bar .single-icon {
        font-size: 11px;
    }

    /*.header.shop .right-bar .sinlge-bar {
    margin-right: 4px;
}*/
    section.p-hide.category-01.custom-vendor-list {
        padding: 52px 0px;
    }

    /* .custom {
    display: flex;
    justify-content:center !important;
    align-items: center;
}*/
    /*body .h-01 {
    justify-content: center !important;
}*/
    /*.category-01 ul img.vender-logo {
    right: 7px;
    width: 70px;
    height: 70px !important;
}*/
    /*  .header.shop .logo.vendor-head-logo img {
    width: 100%;
}*/
    /*.header.shop .logo.vendor-head-logo {
    height: 58px;
    width: 80%;
    padding-top: 0px;
}*/
    .order-track {
        display: none;
    }

    .custom-home .img01 {
        overflow: hidden;
        height: 180px;
        width: 180px;
        border-radius: 100%;
        text-align: center;
        display: block;
        margin: 0 auto;
    }

    /*.header.shop .search-bar-top {
    float: right;
}*/
    /*.header.shop .logo {
    height: 58px;
    width: 100%;
    padding-top:0px;
}*/
    /*.header.shop .logo img {
    width: 80%;
}*/
    .header.shop .right-bar {
        justify-content: end;
    }

    .header.shop .middle-inner {
        padding: 20px 20px;
    }

    .grid-sect .frame-text {
        padding: 0 25px;
    }

    .grid-sect .frame-text h2 {
        font-size: 25px;
    }

    .grid-sect .frame-text p {
        font: normal normal normal 14px/23px Roboto;
    }

    .frame2 .frame-img2 img,
    .frame2 .frame-img3 img {
        height: 330px;
    }

    .frame-img3.text-left img,
    .frame-img2.opcity-last img {
        height: 325px;
    }

    .frame-one img {
        height: 655px;
    }

    .grid-sect .frame-img2 .frame-text {
        top: 110px;
    }

    section.brands-section.section {
        padding: 80px 0px 80px 60px;
    }

    .TtleBrnDmn h2 {
        font-size: 25px;
        line-height: 35px;
    }

    h4.font-head.mt70 {
        font-size: 14px;
    }

    .brand-col div#s-brand-new {
        width: 77.5%;
    }

    div#s-brand-new .item a img {
        height: 135px;
    }

    section.benefits-section.section {
        padding: 42px 60px;
    }

    /*section.benefits-section.section .cl12SwNftSnBft .cl4mnBft {
        padding: 25px;
            width: 32.7%;
        height: 226px;
}*/
    .benefits-apecs.specs-back h2 {
        font: normal normal bold 18px/16px Roboto;
    }

    section.benefits-section.section .cl12SwNftSnBft .cl4mnBft .ImgSwnvrTvr svg {
        height: 64px;
    }

    .benefits-apecs.specs-back p {
        font: normal normal 400 11px/19px Roboto;
    }

    .footer .copyright .right ul {
        column-gap: 4px;
    }

    section.p-hide.category-01.custom-vendor-list .container {
        padding: 0 50px;
    }

    .category-01 ul {
        column-gap: 15px;
    }

    body .custom-vendor-list ul li {
        width: 24% !important;
    }

    /*.vendor-address p {
    font: normal normal normal 12px/17px Roboto;
    min-height: 52px;
}*/
    /*p.time-dd {
    font: normal normal normal 12px/22px Roboto;
}*/
    p.map-rat span {
        font-size: 12px;
    }

    a.view-store-btn {
        font-size: 13px;
        padding-bottom: 0px;
        line-height: 12px;
    }

    /*body  .custom-vendor-list ul h2 {
    font-size: 18px;
}*/
    .v-list-top .distance-box h2 {
        font-size: 27px;
    }

    .distance-search .loction-search input#form1 {
        width: 250px;
        padding: 0px 0px 0px 20px;
    }

    .v-list-top .distance-box {
        gap: 20px;
    }

    .product-area.section.cat-page .single-product {
        width: 48%;
    }

    .hero-slider .owl-carousel .owl-item img {
        height: 276px;
    }

    .brands-section .wearTrend h2 {
        font-size: 24px;
        /*    padding: 10px 39px 0px 0px;*/
    }

    .eyeglasses .men-glasses {
        top: 79px;
    }

    section.eyeglasses img {
        height: 200px;
    }

    section.benefits-section.section .cl12SwNftSnBft .cl4mnBft .BftSwnVr p {
        font: normal normal normal 13px/17px Roboto;
    }

    section.benefits-section.section .cl12SwNftSnBft .cl4mnBft {
        margin-bottom: 12px;
        padding: 20px;
    }

    section.benefits-section.section .cl12SwNftSnBft .cl4mnBft .BftSwnVr h5 {
        font: normal normal bold 18px/21px Roboto;
    }

    .cate {
        width: 51%;
    }

    .user-name span {
        display: block;
    }

    .user-name svg {
        margin-right: 0;
    }

    .menus-col {
        width: 18%;
    }

    .header .header-inner {
        padding: 0px 5px;
    }

    .call-btn {
        display: none;
    }

    .contact-info {
        position: inherit;
        left: initial;
        top: initial;
    }

    .container.contact-side-detail {
        padding: 60px 60px 60px 60px;
    }

    div#exampleSpectacle .listItem.custom-listItem {
        width: 49%;
    }

    ul.filter-dropdown-menu.list-unstyled.menu-lk li.list-checkbox.listing-div.custom-listing-div.Thickness.radio-listing .listItem.custom-listItem {
        width: 48% !important;
    }
}

@media (max-width:1100px) {
    .header.shop .search-bar .btnn {
        line-height: 48px;
    }

    /*  .header.shop .search-bar button.btnn {
    left: -11px;
}*/
    .header.shop .right-bar {
        column-gap: 2px !important;
    }

    .single-product .product-img .product-action-2 a {
        font-size: 9px;
        padding: 4px 6px 2px;
    }

    .single-product .product-content .product-price span.old {
        font-size: 12px;
    }

    .single-product .product-content .product-price span {
        font-size: 12px;
    }

    .distance-search .loction-search input#form1 {
        width: 396px;
    }

    .v-list-top .distance-box a {
        padding: 12px 16px 13px 16px;
    }

    .over-results select {
        font: normal normal normal 13px/20px Roboto;
        height: 30px;
    }

    .over-results p {
        font-size: 10px;
    }

    .custom-category .prduct-tittle1 h2 {
        font-size: 22px;
    }

    .current-fillter h2 {
        font-size: 14px;
    }

    .listItem span {
        font: normal normal normal 11px/14px Roboto;
    }

    .over-results select {
        font: normal normal normal 13px/20px Roboto;
        height: 30px;
    }

    .over-results p {
        font-size: 10px;
    }

    .custom-category .prduct-tittle1 h2 {
        font-size: 22px;
    }

    .current-fillter h2 {
        font-size: 14px;
    }

    .listItem span {
        font: normal normal normal 11px/14px Roboto;
    }

    section.product-detail.section {
        padding: 30px 25px;
    }

    .custom-product-info-area .text-area.aadd .form-group .form-control {
        width: 65px !important;
    }

    .specc p.mt-3,
    .specc h4.float-center.mt-3 {
        padding: 0 22px !important;
    }

}

@media (min-width: 992px) {

    /*.container {
    max-width: 960px;
}*/
    /*.product-area.section.cat-page .single-product {
    width: 28%;
}*/
    .custom-modal .modal-dialog {
        max-width: 75% !important;
        margin: 1.75rem auto;
        max-height: 100%;
    }

    /*.about-us-sec .about-us-content {
      padding: 0px 260px 40px 100px;
   }

    .about-us-sec .about-us-title {
    padding: 20px 260px 0px 100px;
}*/


}

@media (max-width:991px) {
    .custom-product-info-area .form-group .form-control {
        width: 135px !important;
    }

    /*  .product-area .single-product {
    min-height: 300px;
}*/
    .single-product .product-content h3 a {
        font: normal normal normal 11px/14px Roboto;
    }

    .ter-m-and.condition h4 {
        padding: 0px 24px !important;
    }

    .ter-m-and.condition p {
        padding: 0px 26px !important;
    }

    .product-detail-list .xzoom-thumbs a {
        height: 80px;
    }

    .product-detail-list .xzoom4 {
        width: 60% !important;
        margin: 0 auto;
        display: block;
    }

    .product-detail-list .xzoom-thumbs {
        width: 60%;
        margin: 0 auto;
    }

    .contact-us h4,
    .vendor-list h4 {
        font-size: 34px;
    }

    .contact-side-detail h5 {
        font-size: 30px;
    }

    .custom-checkout .single-widget.get-button .btn {
        font-size: 12px;
    }

    section.product-detail.section .text-area .single-page-product.custom-box-quantity .button .btn {
        width: 35px !important;
        font-size: 10px;
    }

    /*  body .custom-vendor-list ul h2 {
    font-size: 16px !important;
}*/
    /*  .product-area.most-popular .single-product .product-img a img {
    height: 30vh;
    width: 100%;
}*/
    img.icon-img {
        right: 93%;
    }

    .custom-modal .listItem span {
        font-size: 12px;
    }

    .custom-modal .modal-dialog {
        max-width: 85% !important;
    }

    .thankyou-card h4 {
        font-size: 28px;
    }

    p.order-id {
        font-size: 18px;
    }

    section.l-bg01.register01 .t01 {
        display: block;
    }

    .custom-wishlist .table p {
        width: 160px;
    }

    .custom-shopping .table.shopping-summery {
        padding-right: 0px;
    }

    .buy-frame {
        width: 48% !important;
        float: left;
    }

    section.product-detail.section .add-to-cart {
        width: 100%;
        margin: 0px 1%;
    }

    body section.delivery-section img {
        width: 100%;
        height: 300px;
    }

    .custom-vendor-list .a01 {
        min-height: 50px;
    }

    .cart-btn {
        padding: 8px 6px;
        font-size: 11px;
    }

    .content-right button {
        font-size: 10px;
    }

    .shopping-cart.custom-shopping .total-amount .right .button5 .btn {
        width: 50%;
        margin: 10px;
    }

    .button5.custom-cart-btn {
        display: flex;
    }

    .vendor-rigth ul {
        align-items: center;
        justify-content: center;
    }

    section.product-detail.section .text-area .cta-area {
        width: 25%;
    }

    section.product-detail.section .text-area .cart-area .qty-area {
        width: 25%;
    }

    .image {
        height: 250px;
    }

    .vendor-list-footer .logo {
        display: inline-block;
        width: 110px;
        margin-bottom: 10px;
    }

    .custom-vendor-list h4.font-head.mt70 {
        font-size: 32px;
        font-weight: 600;
        margin-top: 0px;
    }

    body .custom-vendor-list ul {
        width: 100%;
        flex-wrap: wrap;
    }

    .custom-home ul {
        display: block !important;
    }

    .custom-home ul li {
        float: left;
    }

    .custom-home .img01 {
        overflow: hidden;
        height: 130px;
        width: 130px;
        border-radius: 100%;
        text-align: center;
        display: block;
        margin: 0 auto;
    }

    body .custom-vendor-list ul li {
        border: none;
        /* margin-right: 1%;
    margin-left: 1%;*/
        box-shadow: none;
        border-radius: 8px;
        width: 23% !important;
        transition: all .5s;
        box-shadow: 0px 0px 8px #ADADAD33;
    }

    /*.custom-vendor-list .img01 {
    height: 75px;
    width: 120px;
}*/
    /*section.product-detail.section .picZoomer {
    position: relative;
    top: 0px;
    left: 10px;
    right: 10px;
}*/
    .custom-det {
        margin-top: 20px;
    }

    .call-us {
        font-size: 14px;
    }

    /*.hero-slider .single-slider .owl-carousel .owl-stage-outer {
    height: 100%;
}*/
    /*.hero-slider {
    height: auto !important;
}*/
    .container-fluid.min-banner img,
    section.bg-banner.p-hide.min-banner img {
        height: 200px;
    }

    section.cate-sec {
        padding: 10px 30px;
    }

    section.cate-sec .wearTrend {
        font-size: 33px;
        line-height: 50px;
        margin-bottom: 20px;
    }

    .small-banner {
        padding: 30px 0 0px 0px;
    }

    .product-area.most-popular.d-hide.mt-4 {
        margin-bottom: 50px;
        padding: 0px 30px;
    }

    .product-area.most-popular.section.d-hide {
        padding: 30px 30px 30px 30px;
    }

    .product-area .section-title {
        margin-bottom: 15px !important;
    }

    /*section.benefits-section.section .cl12SwNftSnBft .cl4mnBft .ImgSwnvrTvr {
    width: 100px;
    height: 100px;
    text-align: center;
}*/
    section.benefits-section.section .cl12SwNftSnBft .cl4mnBft .BftSwnVr h5 {
        font-size: 18px;
    }

    section.benefits-section.section .cl12SwNftSnBft {
        column-gap: 12px;
    }

    /*h4.font-head.mt70 {
    font-size: 32px;
}*/
    /*.img01 {
    overflow: hidden;
    height: 130px;
    width: 130px;
    border-radius: 100%;
}*/
    body .category-01 ul h2 {
        font-size: 13px;
    }

    .product-area.section.cat-page .cat-pro {
        column-gap: 7px;
    }

    .product-area.section.cat-page .single-product {
        margin: 15px 2px;
    }

    section.banner01 form.newsletter-inner {
        width: 87%;
    }

    .l-01 .input-group-addon {
        min-width: 148px;
        padding: 8px 14px 8px 22px;
        margin-right: 19px;
    }

    .pac-target-input:not(:-webkit-autofill) {
        width: 260px;
    }

    .s02 input {
        padding-left: 20px;
        margin-left: 40px;
        width: 125px;
    }

    .grid-sect .frame-text h2 {
        font-size: 23px;
    }

    .grid-sect .frame-text p {
        font: normal normal normal 12px/19px Roboto;
    }

    .grid-sect .frame-text {
        padding: 0 18px;
    }

    .frame2 .frame-img2 img,
    .frame2 .frame-img3 img {
        height: 260px;
    }

    .grid-sect .frame-img2 .frame-text {
        top: 80px;
    }

    .frame-img3.text-left img,
    .frame-img2.opcity-last img {
        height: 280px;
    }

    .frame-one img {
        height: 540px;
    }

    section.brands-section.section {
        padding: 60px 0px 60px 40px;
    }

    .brand-col div#s-brand-new {
        width: 72.5%;
    }

    .distance-search .loction-search input#form1 {
        width: 172px;
    }

    .TtleBrnDmn h2 {
        font-size: 18px;
        line-height: 28px;
        padding-right: 30px;
    }

    /*section.benefits-section.section .cl12SwNftSnBft .cl4mnBft {
    width: 49%;
        height: 210px;
}*/
    .footer .copyright {
        padding: 15px 30px;
    }

    .footer .copyright .col-md-4.col-12,
    .footer .copyright .col-md-8.col-12 {
        flex: 100%;
        max-width: 100%;
    }

    ul.footer-social {
        justify-content: center;
        margin-bottom: 10px;
    }

    .footer .copyright .right ul {
        column-gap: 13px;
    }

    .footer .copyright .right li a {
        font-size: 10px;
    }

    /*.vendor-list {
    height: 230px;
}*/
    .vendor-list h4 {
        top: 60%;
        left: 50%;
    }

    .v-list-top .distance-box {
        gap: 10px;
    }

    .v-list-top .distance-box h2 {
        font-size: 22px;
    }

    .v-list-top .distance-box a {
        padding: 10px 16px 13px 16px;
        font-size: 19px;
        height: 40px;
    }

    .v-list-top select#distance {
        padding: 5px;
        height: 40px;
    }

    .v-list-top .distance-box a {
        padding: 10px 16px 13px 16px;
        font-size: 19px;
        width: 60px;
        height: 40px;
        width: 140px;
    }

    body .custom-vendor-list ul li {
        margin-bottom: 25px;
        width: 47% !important;
    }

    header.header.shop.home01 .logo img {
        width: 85% !important;
    }

    .right-menu .imgClmnvr {
        width: 32px;
        height: 26px;
    }

    .header.shop .middle-inner {
        padding: 11px 25px;
    }

    /*.vendor-address p {
    min-height: 35px;
}*/
    div#product_load_scroll {
        flex: 70%;
        max-width: 70%;
    }

    .custom-category .col-lg-2.slider-left1 {
        flex: 30%;
        max-width: 30%;
    }

    .hero-slider .owl-carousel .owl-item img {
        height: 203px;
    }

    section.eyeglasses img {
        height: 170px;
    }

    .eyeglasses .men-glasses {
        top: 55px;
        left: 40px;
    }

    .eyeglasses .men-glasses h3 {
        font: normal normal normal 14px/28px Roboto;
    }

    .header .header-inner {
        padding: 0px 10px;
    }

    section.cate-sec .content-box {
        height: 150px;
    }

    .eyeglasses .men-glasses p {
        font: normal 30px / 30px "Gilroy";
    }

    .custom-category .col-lg-2.slider-left1 {
        max-width: 30%;
    }

    /*.custom-category .prduct-tittle1 .col-lg-6 {
    width: 50%;
    padding-right: 0px;
}*/
    .prduct-tittle1 .over-results {
        padding-left: 0px;
    }

    .prduct-tittle1 .over-results p {
        padding-left: 0px;
        font-size: 10px;
        line-height: 1;
        width: 100%;
    }

    .product-area.section.cat-page .single-product {
        height: auto;
    }

    .product-area.section.cat-page .single-product .product-img a img {
        height: auto;
    }

    .single-product .product-img .product-action a.add_to_wishlist i {
        font-size: 15px;
        line-height: 23px;
    }

    .single-product .product-img span.green-rating {
        right: 21px;
        bottom: 5px;
        width: 42px;
        height: 20px;
        font: normal normal normal 12px/14px Roboto;
    }

    span.discount-text {
        width: 54px;
        height: 22px;
        font: normal normal 300 11px/12px Roboto;
    }

    .single-product .product-img .product-action a.add_to_wishlist {
        width: 35px;
        height: 35px;
    }

    .over-results select {
        width: 70%;
    }

    .custom-product-info-area .text-area.aadd .form-group .form-control {
        width: 100% !important;
    }

    body .cate {
        width: 28% !important;
    }

    body .menus-col {
        width: 30% !important;
    }

    .call-btn {
        display: none;
    }

    .user-name span {
        display: block;
    }

    .logo-col {
        width: 25%;
    }

    .user-name svg {
        margin-right: 0;
    }

    .header.shop .right-bar .sinlge-bar {
        padding: 3px 14px 7px 14px;
        height: 28px;
    }

    .inner-pro-des .text-area .text-area-inner,
    .product-tab-section .card,
    .product-tab-section .rating-tab .card-body .product-disc,
    .pro-col1 {
        padding: 20px;
    }

    section.benefits-section.section .cl12SwNftSnBft .cl4mnBft {
        width: 49%;
        min-height: 190px;
    }

    .footer .copyright .right li a {
        font-size: 9px;
    }

    .footer .copyright .right ul {
        justify-content: center;
    }

    .benefits-apecs.specs-back {
        width: 85%;
    }
}

@media(min-width: 768px) and (max-width: 991px) {
    .hero-slider {
        height: auto !important;
    }

    .header.shop .right-bar .sinlge-bar .single-icon {
        font-size: 11px !important;
    }

    .footer .copyright .right-div {
        /*  float:right !important;*/
        margin-top: -12px !IMPORTANT;
    }

    header.header.shop .order-track {
        display: none;
    }

    .header.shop .search-bar {
        width: 100% !important;
        height: auto !important;
    }

    .header.shop .search-bar form {
        width: 100%;
    }

    .header.shop .search-bar input {
        width: 100% !important;
    }

    /*body .header.shop .search-bar .btnn {
    height: auto;
    line-height: 40px;
}*/
    body .header.shop .search-bar input {
        padding: 0 52px 0 38px;
    }

    body .header.shop .nav li a {
        padding: 8px 10px 8px 27px;
        font-size: 9px;
    }

    .header.shop .nav li::before {
        width: 17px;
        top: 10px;
    }

    .header.shop .nav li.nav-spectacle-frame::before {
        top: 10px;
    }

    .header.shop .nav li.nav-accessories::before {
        height: 13px;
    }

    .header.shop .nav li.nav-contact-lenses::before {
        top: 7px;
    }

    .header.shop .nav li.nav-sunglasses::before {
        top: 5px;
    }

    .header.shop .search-bar-top select {
        height: 35px;
    }

    .header.shop .nav li.nav-home-eye-testing::before {
        height: 13px;
    }

    /*.hero-slider .single-slider .owl-carousel .owl-stage-outer {
    height: 35vh;
}*/
    .footer .copyright .left {
        float: none;
        text-align: left;
    }

    .footer .copyright .right {
        /*    float: right;
    text-align: right;*/
        margin-top: 0px;
    }
}

@media (max-width:851px) {
    li.list-checkbox.listing-div.custom-listing-div.Thickness.new .listItem {
        padding: 5px 0px !important;
    }

    li.list-checkbox.listing-div.custom-listing-div.Thickness .listItem {
        padding: 5px 0px !important;
    }

    /*  .header.shop .right-bar .sinlge-bar {
    margin-right: 12px;
}*/
    .header.shop .right-bar {
        /*    column-gap: 6px !important;*/
        justify-content: end;
    }

    .header.shop .right-bar .sinlge-bar .single-icon {
        font-size: 11px !important;
    }
}

@media (min-width:768px) {
    /*---.container{
        max-width: 720px;
    }   */
}

.header .search-top {
    display: none !important;
}

@media (max-width: 767px) {

    div#exampleSpectacle .listItem.custom-listItem,
    ul.filter-dropdown-menu.list-unstyled.menu-lk li.list-checkbox.listing-div.custom-listing-div.Thickness.radio-listing .listItem.custom-listItem {
        width: 100% !important;
    }

    .custom-product-info-area .form-group .form-control {
        width: 100% !important;
    }

    .product-info-area.custom-product-info-area .form-group.cc label {
        display: none;
    }

    .product-info-area.custom-product-info-area .form-group.cc,
    .product-info-area.custom-product-info-area label.right-title,
    .product-info-area.custom-product-info-area label.left-title {
        display: block !important;
    }

    .product-info-area.custom-product-info-area .form-group.cc::before {
        display: none;
    }

    /*  .product-area .single-product {
    min-height: 260px;
}*/
    .header.shop .right-bar {
        padding: 11px 0px;
    }

    .middle-inner .menus-col {
        width: 75% !important;
    }

    header.header.shop .user-name {
        display: block;
    }

    .s-frame0 .single-product .product-img {
        height: 116px;
    }

    .search-bar-top .search-bar input.searchProducts.ui-autocomplete-input {
        padding-left: 33px !important;
        padding-right: 10px !important;
    }

    body .header.shop .search-bar .btnn {
        line-height: 45px;
    }

    .header.shop .middle-inner .row {
        align-items: unset;
    }

    .hero-slider .owl-carousel .owl-item img {
        height: 97px;
    }

    section.eyeglasses img {
        height: 150px;
    }

    .eyeglasses .men-glasses {
        top: 27px;
        left: 18px;
    }

    .eyeglasses .men-glasses p {
        font: normal 22px / 39px "Gilroy";
    }

    .eyeglasses .men-glasses h3 {
        font: normal normal normal 11px/10px Roboto;
    }

    .small-banner .container {
        padding: 0px 45px;
    }

    .s-sun0 .container,
    .s-season0 .container,
    .s-contact .container,
    .s-spect0 .container,
    .s-access0 .container {
        padding: 0px 0px;
    }

    .product-area.most-popular .single-product .product-img a img {
        height: 15vh;
    }

    .single-product .product-content h3 a {
        font: normal normal normal 14px/25px Roboto;
    }

    h4.font-head.mt70 {
        text-align: center;
        width: 100%;
    }

    .cate-sec h4.font-head.mt70 {
        text-align: center;
        width: 100%;
    }

    .header.shop .logo.vendor-head-logo {
        width: 55%;
    }

    .middle-inner .logo-col {
        width: 30%;
    }

    .middle-inner .call-btn {
        display: none;
    }

    .header.shop .right-bar {
        width: 100%;
        text-align: right;
    }

    .header.shop .right-bar {
        padding: 11px 0px;
    }

    .header.shop .right-bar .sinlge-bar .single-icon .total-count {
        left: 8px;
    }

    .custom-category .col-lg-2.slider-left1 {
        flex: 100%;
        max-width: 100%;
    }

    div#product_load_scroll {
        flex: 100%;
        max-width: 100%;
        padding-top: 15px;
    }

    section.p-hide.category-01.custom-vendor-list .container {
        padding: 0 35px;
    }

    .right-menu p {
        padding-top: 0;
    }

    .v-list-top .loction-search label.form-label {
        margin-right: 8px;
    }

    /*  .vendor-list {
    height: 260px;
}*/
    /*.vendor-list h4 {
    font: normal normal 300 55px/35px Gilroy;
}*/
    .v-list-top .distance-box {
        gap: 8px;
    }

    .v-list-top .distance-box a {
        padding: 9px 16px 13px 16px;
        font-size: 20px;
        width: 58px;
    }

    .row.m-0.v-list-top .col-lg-12 {
        flex-wrap: wrap;
    }

    .banner-Search.distance-search {
        padding-top: 20px;
        width: 100%;
        display: none;
        float: left;
    }

    .distance-search .loction-search input#form1 {
        width: 244px;
    }

    .v-list-top .distance-search .serch-icon {
        width: 49px;
        height: 49px;
        padding: 13px 15px;
        font-size: 20px;
    }

    .header.shop .middle-inner .col-xl-1.col-lg-2.col-md-2.col-sm-7.col-8 {
        flex: 65%;
        max-width: 65%;
    }

    .login-box .card {
        padding: 20px;
    }

    .login-box button.btn.btn-primary {
        font-size: 12px;
    }

    .login-box .text-center {
        font-weight: 500;
        font-size: 12px;
    }

    .product-detail-list .xzoom4 {
        width: 80% !important;
        margin: 0 auto;
        display: block;
    }

    .product-detail-list .xzoom-thumbs {
        width: 80%;
        margin: 0 auto;
    }

    .contact-info {
        position: relative;
        top: 0;
        left: 0;
        padding: 32px;
    }

    .contact-side-detail p {
        font-size: 18px;
    }

    .contact-side-detail p span {
        font-size: 13px;
    }

    section.contact-map {
        z-index: 1;
        margin-top: 0px;
    }

    .profile-wrapper .profile-header-container {
        padding-left: 0px;
        text-align: center;
        padding-top: 30px;
    }

    .f-ptofile .file-preview.box.sm .thumb {
        height: 110px;
    }

    .profile-wrapper .profile-header-container .profile-avatar {
        position: initial;
    }

    .profile-wrapper .profile-header-container .profile-titles {
        margin-left: 0px;
    }

    .f-ptofile label {
        text-align: left;
    }

    .most-popular .owl-carousel .owl-controls .owl-nav .owl-next,
    .cate-sec .owl-nav .owl-next {
        right: -20px;
        background: #fff0;
    }

    .most-popular .owl-carousel .owl-controls .owl-nav .owl-prev,
    .cate-sec .owl-nav .owl-prev {
        left: -20px;
    }

    /*  section.product-detail.section .text-area .single-page-product.custom-box-quantity .button .btn {
    width: 40px !important;
}*/
    /*  .header.shop .right-bar .sinlge-bar .single-icon {
    font-size: 14px !important;
}*/
    .hero-slider {
        height: auto !important;
    }

    .slicknav_menu .slicknav_icon-bar {
        background-color: #333 !important;
    }

    a.header-logout {
        display: block;
    }

    .header.shop .logo {
        height: auto;
    }


    img.icon-img {
        right: 91%;
        height: 60%;
    }

    .custom-modal .listItem span {
        padding-left: 35px;
    }

    .vision-description {
        padding-left: 35px;
    }

    .custom-modal .modal-dialog .modal-content .modal-header {
        padding: 15px 0px 15px 30%;
    }

    .row-design li.list-checkbox.listing-div .listItem {
        width: 47%;
        float: left;
    }

    .custom-modal .listItem {
        padding: -5px 10px;
    }

    .custom-modal .custom-listItem label {
        padding: 10px 10px;
    }

    li.list-checkbox.listing-div.custom-listing-div.Thickness.new .listItem {
        padding: 5px 0px !important;
    }

    li.list-checkbox.listing-div.custom-listing-div {
        display: block;
        width: 100%;
    }

    .thankyou-card h4 {
        font-size: 24px;
    }

    .shopping-cart.custom-shopping .table td.product-name-text {
        text-align: left !important;
    }

    .custom-col-data td.total-amount {
        text-align: left !important;
    }

    .custom-wishlist .table p {
        width: auto;
    }

    .logo.vendor-head-logo {
        padding-left: 40px;
    }

    body section.form-section .row {
        padding: 0px 25px;
    }

    body section.form-section .form-heading h2 {
        font-size: 25px;
    }

    body section.contact-section .contact-book {
        margin: 10px auto 0px;
    }

    body section.form-section .main-form {
        padding: 0px 25px;
    }

    body section.icon-section ul.icon-list {
        margin: 50px auto 0px auto;
    }

    body section.work-section .work-part h2 {
        font-size: 25px;
    }

    body section.work-section .work-part ul.work-list li {
        width: 49%;
    }

    body section.work-section .work-part ul.work-list li img {
        width: 40%;
        display: block;
    }

    body section.work-section .work-part ul.work-list {
        width: 100%;
        display: block;
    }

    .custom-vendor-list .a01 {
        min-height: 75px;
    }

    .header.header.shop .slicknav_nav li a {
        font-size: 12px !important;
    }

    .header.header.shop .slicknav_nav {
        clear: both;
        color: #fff;
        margin: 0;
        background: #fff;
        padding-top: 15px;
        margin-left: -25px;
        padding: 20px;
        position: absolute;
        top: 66px;
        z-index: 999;
        border: 1px solid #eee;
        width: 100%;
        right: 0;
    }

    .slicknav_nav li a {
        text-transform: uppercase;
    }

    .content-right button {
        font-size: 14px;
    }

    .shop.checkout .single-widget.get-button .btn {
        width: 50%;
    }

    /*.custom-shopping .shopping-summery thead {
    display: block;
    width: 100%;
}*/
    .custom-shopping .table td::before {
        background: #063776 !important;
        padding: 8% 20px !important;
        text-align: center;
    }

    .shopping-cart.custom-shopping .table td {
        text-align: center !important;
    }

    section.product-detail.section .text-area .cta-area {
        width: 35%;
    }

    section.product-detail.section .text-area .cart-area .qty-area {
        width: 35%;
    }

    .image {
        height: 200px;
    }

    .cat-pro .single-product {
        width: 49% !important;
        margin-top: 0;
        margin-bottom: 40px;
    }

    body header.header.shop.home01.sticky .middle-inner {
        background: #202020c9;
    }

    body .custom-vendor-list ul li {
        width: 48% !important;
        text-align: center;
        display: inline-block;
        float: left;
    }

    /*  section.banner01 {
    height: 70vh !important;
}*/
    /*  .header.shop .logo.vendor-head-logo {
    height: 62px;
    width: 22%;
    padding-top: 0px;
}*/
    header.header.shop .user-name {
        display: block;
    }

    section.product-detail.section h2.product-name {
        font-size: 20px;
    }

    .custom-det .add_to_wishlist {
        font-size: 20px;
    }

    section.product-detail.section .text-area .product-price {
        margin-bottom: .5rem;
    }

    section.product-detail.section .product-price .price {
        font-size: 18px;
    }

    body .slicknav_btn {
        margin: 22px 10px;
    }

    .min-sum-banner .mid-banner img {
        /* height: 150px !important;*/
        width: 100%;
    }

    section.cate-sec .wearTrend {
        font-size: 24px !important;
        line-height: 40px !important;
    }

    .header .search-form {
        background: transparent !important;
    }

    .header .search-form button {
        height: 45px;
        top: 8px;
    }

    /*  .col-lg-2.col-md-2.col-12.call-btn {
    display: none;
}*/
    .header.shop .logo {
        width: 100px;
    }

    .header.shop .middle-inner {
        padding: 0px 10px;
    }

    body .slicknav_btn {
        margin: 22px 0 0;
    }

    .header.shop .search-top {
        line-height: 60px;
    }

    .header.shop .logo {
        line-height: 60px;
    }

    /*.hero-slider {
    height: auto !important;
}*/
    /*.hero-slider .single-slider .owl-carousel .owl-stage-outer {
    height: 35vh;
}*/
    .category-01 ul {
        display: block;
        text-align: center;
    }

    .category-01 ul li {
        width: 100% !important;
        text-align: center;
    }

    /*.img01 {
    border-radius: 100%;
    text-align: center;
    margin: 0 auto;
}
*/
    .custom-home .img01 {
        margin: 0 auto;
    }

    /*section.banner01 h1.b-h1 {
    font-size: 2rem;
}*/
    .pac-target-input:not(:-webkit-autofill) {
        animation-name: endBrowserAutofill;
        width: 590px;
        border: none;
        padding-left: 3px;
    }

    section.brands-section.section li {
        width: 31%;
        margin-bottom: 20px !important;
    }

    .benefits-section section .BftSwnVr.mt-4 {
        margin-top: 0px !important;
    }

    section.benefits-section.section .cl12SwNftSnBft {
        display: block;
    }

    .footer .copyright .right ul {
        align-items: center;
        justify-items: center;
        justify-content: center;
    }

    .footer .copyright .right ul i {
        font-size: 13px;
    }

    section.benefits-section.section .TtleBrnDmn {
        padding-bottom: 20px;
    }

    section.benefits-section.section {
        padding: 30px 0px;
    }

    section.brands-section.section {
        padding: 30px 44px 71px;
    }

    .TtleBrnDmn h2 {
        padding-right: 0;
    }

    .small-banner .single-banner {
        margin-bottom: 0 !important;
    }

    /*section.p-hide.category-01 {
    margin-bottom: 30px;
    margin-top: 30px;
}*/
    .header.shop .right-bar {
        display: block !important;
        float: right;
    }

    .cate {
        display: none;
    }

    .order-track a.single-icon {
        display: none;
    }

    .mobile-nav {
        float: left;
    }

    .header.shop .logo {
        float: right;
    }

    header.header.shop.home01 .logo {
        float: none;
    }

    .slicknav_open .slicknav_menu {
        display: block;
        background: #eee;
        padding: 0px 20px 20px 20px;
    }

    .most-popular .owl-carousel .owl-nav div,
    .cate-sec .owl-carousel .owl-nav div {
        font-size: 20px !important;
    }

    .product-area.section.cat-page .single-product {
        width: 48%;
    }

    .shopping-cart.custom-shopping .table td {
        vertical-align: middle;
        border-top: 1px solid #eee;
        padding: 10px;
        border-right: none;
        border-radius: 0px;
        height: auto;
        border: none;
        border-bottom: none !important;
        width: 18%;
        padding-left: 0px !important;
        display: inline-block;
    }

    .shopping-summery thead {
        display: none;
    }

    .shopping-summery thead .main-hading {
        display: none;
    }

    .shopping-cart .table td::before {
        display: none !IMPORTANT;
    }

    .shopping-cart .qty .input-number {
        height: 35px;
    }

    .shopping-cart .qty .button .btn {
        height: 35px;
        line-height: 35px;
    }

    .shopping-cart .qty .button .btn {
        width: 25px;
    }

    .shopping-summery tbody tr {
        /* border-bottom: 1px solid #eee !important;
    display: block;*/
        /*  height: 200px;*/
        width: 100%;
    }

    .custom-shopping .table.shopping-summery .SaveCartItem {
        padding: 1px 16px;
        font-size: 12px;
    }

    .custom-shopping .table.shopping-summery {
        padding-right: 0px;
    }

    .shopping-cart.custom-shopping .table td.image {
        padding: 10px !important;
        width: 60%;
        height: 120px;
        display: block;
        float: none;
        margin: 15px auto;
    }

    .shop-services .single-service {
        margin-left: 0px;
    }

    .shopping-cart.section.custom-shopping.custom-wishlist .table .product-name {
        text-align: left;
    }

    .shopping-cart.section.custom-shopping.custom-wishlist .table td.product-des {
        width: 100% !important;
    }

    .shopping-cart.section.custom-shopping.custom-wishlist .table td {
        width: 25% !important;
        float: none;
        padding: 8px 0px;
    }

    .l-01 {
        min-height: 45px;
    }

    .l-01 .input-group-addon {
        min-width: 105px;
        padding: 6px 8px;
        margin-right: 4px;
    }

    select#cat00 {
        font: normal normal normal 12px/19px Roboto;
        height: 30px;
    }

    .pac-target-input:not(:-webkit-autofill) {
        width: 100%;
    }

    .s01 svg {
        top: 28%;
        width: 14px;
        right: 45px;
    }

    section.banner01 h1.b-h1 {
        font: normal normal 300 22px/24px Gilroy;
        margin: 0px 0 28px;
    }

    .s02 input {
        padding-left: 9px;
        margin-left: 23px;
        width: 100px;
        font: normal normal normal 12px/22px Roboto;
        height: 45px;
        background-color: transparent;
    }

    header.header.shop.home01 .right-menu {
        margin-top: 11px;
    }

    section.banner01 button.btn {
        width: 35px;
        height: 35px;
    }

    section.banner01 button.btn svg {
        width: 15px;
        height: 23px;
    }

    section.banner01 button.btn {
        width: 35px;
        height: 35px;
        min-height: 35px;
    }

    section.banner01 form.newsletter-inner {
        width: 95%;
    }

    .frame-one img {
        height: 415px;
        object-fit: cover;
    }

    .frame2 .frame-img2 img,
    .frame2 .frame-img3 img {
        height: auto;
    }

    .frame-img3.text-left img,
    .frame-img2.opcity-last img {
        height: auto;
    }

    .grid-sect .frame-text p {
        font: normal normal normal 15px/25px Roboto;
    }

    .grid-sect .frame-text h2 {
        font-size: 20px;
    }

    .grid-sect .frame-text {
        text-align: center !important;
    }

    .brand-col .TtleBrnDmn {
        width: 100%;
    }

    .brand-col div#s-brand-new {
        width: 100%;
    }

    .brand-col {
        display: block;
    }

    .TtleBrnDmn h2 {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 20px;
    }

    div#s-brand-new .item a img {
        height: 90px;
    }

    section.benefits-section.section .cl12SwNftSnBft .cl4mnBft {
        width: 100%;
        height: auto;
    }

    .footer .copyright .right ul {
        flex-wrap: wrap;
    }

    section.banner01 {
        height: 480px;
    }

    .frame-img3.text-left img,
    .frame-img2.opcity-last img,
    .frame2 .frame-img3 img,
    .frame2 .frame-img2 img,
    .frame-one img {
        padding: 0;
    }

    .over-results p {
        padding-left: 0px;
    }

    .prduct-tittle1 .over-results {
        padding-left: 0px;
    }

    /*.header.shop .logo.vendor-head-logo {
    width: 40%;
}*/
    .middle-inner .logo-col {
        width: 25%;
    }

    .middle-inner .call-btn {
        display: none;
    }

    .header.shop .right-bar {
        width: 100%;
        text-align: right;
    }

    header.header.shop .user-name {
        display: block;
    }

    .header.shop .right-bar {
        padding: 15px 0px;
    }

    .header.shop .right-bar .sinlge-bar .single-icon .total-count {
        left: 8px;
    }

    section.eyeglasses .row {
        display: flex;
        flex-wrap: wrap;
    }

    section.eyeglasses {
        margin-bottom: -6px;
    }

    .eye-cate {
        width: 100%;
        margin-bottom: 10px;
    }

    .section-title h2 img {
        width: 52px;
    }

    body .section-title h2 {
        font-size: 20px;
    }

    section.cate-sec.brands-section.section .owl-nav {
        margin-top: -8px;
    }

    section.benefits-section.section .cl12SwNftSnBft .cl4mnBft .ImgSwnvrTvr {
        width: auto;
        height: auto;
        text-align: left;
        margin-bottom: 6px;
    }

    .TtleBrnDmn h2 {
        text-align: center;
    }

    select#cat00 {
        background-color: transparent;
    }

    .header.shop .logo.vendor-head-logo img {
        height: 66px;
        object-fit: contain;
    }

    .input-group-addon.lp-border.lp-where,
    .s02 {
        display: none;
    }

    section.banner01 input#searchAddress {
        background-color: transparent;
        margin-left: 19px;
    }

    section.banner01 form.newsletter-inner {
        width: 100%;
    }

    .differnt_popup1 img {
        width: 23px;
    }

}

@media (max-width:640px) {
    .shopping-cart.custom-shopping .table td {
        width: 16%;
    }

    .shopping-cart.custom-wishlist .table td {
        width: 18%;
    }

    .profile-wrapper .profile-feed-container .profile-feed .profile-feed-wrapper {
        width: 100%;
    }

}

@media (max-width:576px) {
    .page-title-area.bg-5 .page-title-content h2 {
        font-size: 26px;
    }

    section.terms-conditions-area.ptb-100 h6 span {
        font-size: 16px !important;
    }

    section.terms-conditions-area.ptb-100 h5 {
        font-size: 20px !important;
    }

    section.terms-conditions-area.ptb-100 h6 {
        font-size: 16px !important;
    }

    section.terms-conditions-area.ptb-100 {
        padding: 30px 20px;
    }

    .shopping-cart.section.custom-shopping.custom-wishlist .table .product-name {
        text-align: left;
    }

    .shopping-cart.section.custom-shopping.custom-wishlist .table td.product-des {
        width: 100% !important;
    }

    .shopping-cart.section.custom-shopping.custom-wishlist .table td {
        width: 25% !important;
        float: none;
        padding: 8px 0px;
    }

    body section.form-section .form-heading h2 {
        font-size: 20px;
    }

    .product-detail-list .xzoom-thumbs {
        width: 100%;
        margin: 0 auto;
    }

    .product-detail-list .xzoom4 {
        width: 90% !important;
        margin: 0 auto;
        display: block;
    }

    .contact-us h4,
    .vendor-list h4 {
        font-size: 30px;
    }

    section.l-bg01 .login-box .card-body .form-group.row.mid-row .text-right {
        text-align: left !important;
    }

    .most-popular .owl-carousel .owl-controls .owl-nav .owl-next,
    .cate-sec .owl-nav .owl-next {
        right: -16px;
        background: #fff0;
    }

    /*  section.product-detail.section .text-area .single-page-product.custom-box-quantity .button .btn {
    width: 119px !important;
}*/
    .footer .footer-top .single-footer.links iframe {
        width: 100%;
    }

    /*      .header.shop .right-bar .sinlge-bar .single-icon {
    font-size: 18px !important;
}*/
    /*.header.shop .right-bar .sinlge-bar .single-icon .total-count.custom-count {
    right: -26px !important;
}*/
    section.cate-sec .wearTrend {
        font-size: 18px !important;
        line-height: 40px !important;
        text-align: center;
    }

    body .custom-vendor-list ul li {
        margin-top: 5%;
    }

    /*  .header.header.shop .slicknav_nav {
    padding: 20px 30px;
}*/
    .product-area.most-popular .single-product .product-img a img {
        height: 17vh;
        width: 100%;
        /* object-fit: cover; */
    }

    img.icon-img {
        right: 90%;
        height: auto;
        width: 6%;
    }

    .custom-modal .modal-title {
        font-size: 20px;
    }

    .custom-modal .modal-dialog .modal-content .modal-header {
        padding: 15px 0px 15px 5%;
    }

    .custom-modal .modal-title {
        font-size: 22px;
    }

    .custom-modal .modal-dialog {
        max-width: 100% !important;
    }

    img.icon-img {
        right: 90%;
        height: auto;
        width: 6%;
    }

    .shopping-summery tbody tr {
        /*  border-bottom: 1px solid #eee !important;
    display: block;*/
        /*   height: 200px;*/
        width: 100%;
    }

    /*.shopping-cart.section.custom-shopping .table td p.cart-product-name {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 100px;
}*/
    .shopping-cart.section.custom-shopping .table td p.cart-product-name {
        text-overflow: inherit;
        overflow: initial;
        white-space: initial;
        width: auto;
    }

    .shopping-cart.custom-shopping .table td.qty {
        width: 32% !important;
        margin-left: 0px !important;
    }

    .shopping-cart.custom-shopping .table td.price {
        width: 32% !important;
    }

    .shopping-cart.custom-shopping .table td.na {
        width: 32% !important;
    }

    .shopping-cart.custom-shopping .table td {
        width: 32%;
        float: none;
        padding: 8px 0px;
    }

    .thankyou-card h4 {
        font-size: 20px;
    }

    p.order-id {
        font-size: 16px;
    }

    .thankyou-card.text-center {
        padding: 30px 0px;
    }

    /*  .shopping-cart.custom-shopping .table td.image {
    padding: 10px!important;
    width: 100px;
}*/
    .shopping-cart.custom-shopping .table td.image {
        padding: 10px !important;
        width: 40%;
        margin: 0 auto;
        height: 100px;
        display: block;
    }

    .logo.vendor-head-logo {
        padding-left: 0px;
    }

    /*.header.shop .logo.vendor-head-logo img{
    height: 45px;
}*/
    /*  .hero-slider {
    height: 60vh!important;
}*/
    /*  .header.header.shop .slicknav_nav {
    top: 60px;
}*/
    section.cate-sec .wearTrend {
        line-height: 30px !important;
    }

    section.product-detail.section h2.product-name {
        font-size: 18px;
        line-height: 22px;
    }

    section.product-detail.section .product-price .price {
        font-size: 16px;
    }

    body section.delivery-section img {
        width: 100%;
        height: 200px;
    }

    .custom-vendor-list .a01 {
        min-height: auto;
    }

    body section.work-section .work-part ul.work-list li {
        width: 100%;
    }

    /*.product-area .single-product {
    height: 200px;
}*/
    body section.work-section .work-part h2 {
        font-size: 20px;
    }

    body section.work-section .work-part ul.work-list li span {
        font-size: 16px;
    }

    section.work-section .work-part h2 {
        margin-bottom: 10px;
        padding-top: 10px;
    }

    .custom-shopping .table td::before {
        background: #063776 !important;
        padding: 12% 20px !important;
        text-align: center;
    }

    .shop.checkout .single-widget.get-button .btn {
        width: 100%;
    }

    .shopping-cart.custom-shopping .total-amount .right .button5 .btn {
        width: 100%;
        margin: 5px 0px;
        line-height: 12px;
        height: 35px;
    }

    .button5.custom-cart-btn {
        display: block;
    }

    section.product-detail.section .text-area .cta-area {
        width: 50%;
    }

    section.product-detail.section .text-area .cart-area .qty-area {
        width: 50%;
    }

    section.product-detail.section .text-area .custom-cart-area .qty-area {
        width: 100% !important;
    }

    section.product-detail.section .single-page-product {
        width: 200px;
        height: 41px;
    }

    .image {
        height: 300px;
        width: 100%;
    }

    .cat-pro .single-product {
        width: 100% !important;
        margin-top: 0;
        margin-bottom: 40px;
    }

    .custom-vendor-list h4.font-head.mt70 {
        font-size: 26px;
    }

    .custom-vendor-list h4.font-head.mt70 {
        font-size: 36px;
        font-weight: 600;
        margin-top: 0px;
        text-align: center;
    }

    body .custom-vendor-list ul li {
        width: 98% !important;
    }

    /*section.p-hide.category-01 .img01 {
    overflow: hidden;
    height: 100px;
    width: 120px;
    border-radius: 0%;
}
*/
    /*  .header.shop .logo.vendor-head-logo {
    height: auto;
    width: 50%;
    padding-top: 0px;
}*/
    .header.shop .logo img {
        object-fit: contain;
    }

    header.header.shop .logo {
        float: right;
    }

    .header.shop .middle-inner {
        padding: 6px 10px;
        height: 70px;
    }

    span.wish {
        display: none;
    }

    span.cart {
        display: none;
    }

    /*.header.shop .right-bar .sinlge-bar .single-icon .total-count {
    right: 0px !important;
}*/
    /*header.header.shop .logo img {
    width: 100%;
}*/
    header.header.shop .logo {
        width: 40%;
        height: auto;
    }

    .right.vendor-logo {
        display: none;
    }

    header.header.shop .user-name {
        display: block;
    }

    section.product-detail.section {
        padding: 30px 0px;
    }

    section.product-detail.section .product-rating {
        margin-bottom: .5rem;
    }

    section.product-detail.section .text-area .cart-area {
        margin-bottom: 1rem;
    }

    /*section.product-detail.section .add-to-cart {
    padding: 7px 0px;
}*/
    section.product-detail.section .text-area .qty-counter .input-number {
        height: 35px;
    }

    /*section.product-detail.section .text-area .qty-counter .button .btn {
    height: 38px;
    line-height: 35px;
}*/
    section.product-detail.section .text-area .product-info-area {
        padding: 1rem 0;
    }

    section.product-detail.section .qty-counter {
        height: 38px;
    }

    .product-area.section.cat-page .single-product {
        width: 100%;
    }

    span.where {
        display: none;
    }

    section.banner01 button.btn i {
        display: block;
    }

    section.banner01 button.btn span {
        display: none;
    }

    /*section.banner01 button.btn {
    width: 10%;
}*/
    section.banner01 input#searchAddress {
        font-size: 12px;
    }

    .header.shop .logo {
        float: none;
    }

    .most-popular .owl-carousel .owl-nav div {
        font-size: 20px;
    }

    /*  ul.footer-links li a {
    color: #fff !important;
    background: #fe5d09;
    padding: 4px 7px 4px 7px;
    border-radius: 100%;
    text-align: center;
    line-height: 20px;
    border: 2px solid #fe5d09;
}*/
    ul.footer-links li a {
        font-size: 14px !important;
    }

    /*  .hero-slider .single-slider .owl-carousel .owl-stage-outer {
    height: 65vh;
}*/
    .container-fluid.min-banner img,
    section.bg-banner.p-hide.min-banner img {
        height: 150px;
    }

    .small-banner h4.font-head.mt70 {
        font-size: 20px;
    }

    .section-title h2 {
        margin-bottom: 10px !important;
    }

    .most-popular .section-title {
        display: block;
    }

    /*section.banner01 h1.b-h1 {
    font-size: 1.5rem;
}*/
    /*.l-01 .input-group-addon {
    padding: 6px 11px;
}*/
    /*.l-01 {
    min-height: 25px;
}*/
    /*section.banner01 button.btn {
    min-height: 35.5px;
    padding: 6px 11px;
    font-size: 12px;
}*/
    /*section.banner01 {
    min-height: 30rem;
}*/
    /*h4.font-head.mt70 {
    font-size: 26px;
    margin-bottom: 10px !important;
}*/
    /*.pac-target-input:not(:-webkit-autofill) {
    width: 170px;
}*/
    .right-menu .imgClmnvr {
        width: 35px;
        height: 25px;
    }

    .right-menu i {
        color: #fff;
        font-size: 20px;
    }

    .right-menu .SrcicnMSvr {
        min-width: 54px;
    }

    .right-menu p {
        font-size: 10px;
    }

    header.header.shop.home01 .logo {
        width: 80px;
    }

    header.header.shop.home01 .logo img {
        width: 100% !important;
    }

    /*.header.shop .middle-inner .right-menu {
    column-gap: 3px !important;
}*/
    section.brands-section.section li {
        width: 44%;
        margin-bottom: 20px !important;
    }

    section.brands-section.section .TtleBrnDmn {
        width: 100% !important;
    }

    .product-tab-section {
        padding: 0px 20px;
    }

    body section.form-section .row {
        padding: 0px;
    }

    body section.form-section .main-form {
        padding: 0px;
    }

    body section.form-section .main-form .second-box {
        padding-top: 20px;
    }

    body section.work-section .work-part {
        padding: 10px;
    }

    section.benefits-section.section .TtleBrnDmn {
        width: 100% !important;
    }
}

@media (max-width:500px) {
    li.list-checkbox.listing-div.radio-listing {
        display: block;
    }

    .row-design li.list-checkbox.listing-div.radio-listing .listItem {
        width: 100%;
        float: left;
    }

    .shopping-summery tbody tr {
        /* border: 1px solid #eee !important;*/
        /* height: 182px;*/
    }

    .shopping-cart.custom-shopping .table td.qty {
        margin-left: 10px;
    }

    img.icon-img {
        right: 89%;
        height: auto;
        width: 7%;
    }

    section.product-detail.section .single-page-product {
        width: 180px;
    }

    .footer .download-icons {
        display: block;
    }

    .footer .download-icons .Android-part,
    .footer .download-icons .apple-part {
        width: 70%;
        margin: 0 auto;
        margin-bottom: 10px;
    }

    .footer .copyright p {
        font: normal normal normal 11px/18px Roboto !important;
        font-size: 12px !important;
    }
}

@media (max-width:400px) {
    .product-detail-list .xzoom-thumbs a {
        height: 40px;
    }

    .contact-us h4,
    .vendor-list h4 {
        font-size: 30px;
    }

    section.product-detail.section .custom-product-btn .buy-with-lens {
        width: 100%;
    }

    section.product-detail.section .single-page-product {
        width: 160px;
    }

    /*section.product-detail.section .text-area .single-page-product.custom-box-quantity .button .btn {
    width: 72px !important;
}*/
    /*  .shopping-summery tbody tr {
    height: 155px;
}*/
    section.form-section .main-form .second-box.third-box .form-pincode {
        width: 100%;
        margin-right: 0%;
    }

    .shopping-cart.custom-shopping .table td.product-name-text {
        text-align: left !important;
        line-height: 20px;
    }

    section.form-section .main-form .second-box.third-box .form-pincode.code-2 {
        width: 100%;
        margin-right: 0% !important;
        margin-left: 0%;
    }

    section.form-section .main-form .second-box .form-button.submit-btn {
        width: 50% !important;
    }

    /*.shopping-cart.custom-shopping .table td {
    width: 34%;
    float: left;
}*/
    /*.shopping-cart.custom-shopping .table td:nth-child(3){
    display:none;
}*/
    section.product-detail.section h2.product-name {
        font-size: 16px;
        line-height: 22px;
    }

    body section.delivery-section img {
        width: 100%;
        height: 150px;
    }

    .custom-shopping .table.shopping-summery .SaveCartItem {
        margin-left: 10px;
    }

    .buy-frame {
        width: 100% !important;
        float: none;
    }

    section.product-detail.section .add-to-cart {
        width: 100%;
        margin: 1% 0%;
    }

    section.product-detail.section .add-to-cart {
        font-size: 11px;
    }

    body section.work-section .work-part {
        padding: 10px;
    }

    header.header.shop.home01 .logo img {
        width: 78% !important;
    }

    .product-area.section.cat-page .single-product .product-content {
        padding: 10px 10px;
    }

    /*  .header.shop .right-bar .sinlge-bar {
    display: inline-block;
    margin-right: 6px;
}*/
    .header.shop .right-bar {
        padding: 10px 0px;
    }

    /*.header.header.shop .slicknav_nav {
    top: 61px;
}*/
    .custom-shopping tbody .qty .input-group {
        width: 100px;
        display: inline-block;
    }

    .shopping-cart.custom-shopping .table td {
        text-align: center !important;
    }

    .custom-shopping .table td::before {
        background: #063776 !important;
        padding: 18% 20px !important;
        text-align: center;
    }

    .shopping-cart.custom-shopping .table td.image {
        padding: 10px !important;
    }

    .header.shop .middle-inner .right-menu .imgClmnvr {
        width: 32px;
        height: 37px;
    }

    .header.shop .middle-inner .right-menu i {
        font-size: 16px;
    }

    .l-01 .input-group-addon {
        padding: 6px 4px;
    }

    /*.pac-target-input:not(:-webkit-autofill) {
    width: 140px;
}*/
    section.banner01 button.btn {
        min-height: 35px;
        padding: 6px 8px;
        font-size: 14px;
    }

    /*section.banner01 button.btn {
    width: 12%;
}*/
    /*.header.shop .middle-inner {
    padding: 0px 0px;
    height: 60px;
}*/
    .header.shop .middle-inner .right-menu {
        column-gap: 0px !important;
    }

    /*section.banner01 {
    min-height: 24rem;
}*/
    /*  .header.shop .logo.vendor-head-logo {
    height: auto;
    width: 45%;
    padding-top: 0px;
}*/
    .cart-btn {
        padding: 6px 5px;
    }

    .right-menu p {
        font-size: 8px;
    }

    h4.font-head.mt70 {
        font-size: 20px;
    }

    body section.form-section .main-form .first-box .form-name {
        width: 100%;
        padding-right: 0px;
    }

    body section.form-section .main-form .first-box .form-number {
        width: 100%;
        padding-right: 0px;
        margin-top: 10px;
    }

    body section.form-section .main-form .first-box {
        display: block;
        column-gap: 0px;
    }

    body section.form-section .main-form .second-box {
        display: block;
        padding-top: 10px;
        column-gap: 0px;
    }

    body section.form-section .main-form .second-box .form-button {
        width: 100%;
    }

    body section.form-section .main-form .form-pincode {
        width: 100%;
        padding-right: 0px;
        margin-top: 10px;
    }

    body section.form-section .main-form .second-box button {
        width: 100%;
        margin-top: 10px;
    }

    img.icon-img {
        right: 85%;
        height: auto;
        width: 10%;
    }

    .row-design li.list-checkbox.listing-div .listItem {
        width: 46%;
        float: left;
    }

    .shopping-cart.custom-wishlist .shopping-summery tbody tr {
        height: 120px;
    }

    section.related-product-sec h2 {
        font-size: 24px;
    }
}

@media (max-width:350px) {
    .shopping-cart.section.custom-shopping.custom-wishlist .table td {
        width: 23% !important;
        float: none;
        padding: 8px 0px;
    }

    .cart-btn {
        padding: 6px 5px;
        font-size: 8px;
    }

    .contact-us h4,
    .vendor-list h4 {
        font-size: 26px;
    }

    /*  .header.shop .logo.vendor-head-logo img {
    height: 45px;
}
    .header.shop .logo.vendor-head-logo img {
    height: 40px;
}*/
    .shopping-cart.custom-wishlist .shopping-summery tbody tr {
        height: 200px;
    }

    /*.shopping-cart.custom-wishlist .table td {
    width: 40% !important;
}*/
    /*  section.product-detail.section .text-area .single-page-product.custom-box-quantity .button .btn {
    width: 60px !important;
}*/
    /*  .header.shop .right-bar .sinlge-bar {
    display: inline-block;
    margin-right: 1px;
}*/
    /*.header.shop .right-bar .sinlge-bar .single-icon {
    font-size: 14px !important;
}*/
    /*.header.shop .right-bar .sinlge-bar .single-icon .total-count.custom-count {
    right: -23px !important;
}*/
    .product-area.most-popular .single-product .product-img a img {
        height: 20vh;
        width: 100%;
        /*object-fit: cover;*/
    }

    img.icon-img {
        right: 80%;
        height: auto;
        width: 13%;
    }

    .custom-shopping tbody .qty .input-group {
        width: 96px;
    }

    .custom-modal .modal-title {
        font-size: 20px;
    }

    img.icon-img {
        margin-right: 15px;
        margin-top: 25px;
    }

    section.product-detail.section .qty-counter {
        width: 110px;
    }

    .header.shop .middle-inner .row {
        align-items: normal;
    }

    /*  .shopping-summery tbody tr {
    height: 200px;
}*/
    .shopping-cart.custom-shopping .table td {
        /*width: 31%;*/
        float: none;
        text-align: center !important;
    }

    .shopping-cart.custom-shopping .table td.total-amount {
        margin-left: 10px;
        text-align: center !important;
    }

    .custom-shopping .table.shopping-summery .SaveCartItem {
        padding: 0px 2px;
        font-size: 10px;
        line-height: 20px;
        width: 80%;
    }

    .shopping-cart .qty .button .btn {
        height: 25px;
        line-height: 25px;
    }

    .shopping-cart .qty .input-number {
        height: 25px;
    }

    .shopping-cart .qty .input-number {
        padding: 0px 30px;
    }

    .hero-slider .owl-carousel .owl-item img {
        height: 83px;
    }

    /*.product-area .single-product {
    min-height: 241px;
}*/

}


@media screen and (max-width: 1300px) and (min-width: 992px) {

    .download-icons .Android-part,
    .download-icons .apple-part {
        width: auto;
    }

    .download-icons span.dwnld {
        white-space: nowrap;
        font-size: 11px;
    }

    .download-icons a {

        padding: 5px 11px;
    }


}


@media screen and (max-width: 767px) {

    header.header.shop .logo-col {
        width: 25% !important;
    }


    body .header.shop .right-bar {

        display: flex !important;
        align-items: center;
        padding-top: 17px;
    }

    header.header.shop .user-name {
        display: flex;
    }

    body a.header-logout {
        font-size: 9px;
    }

    .header.shop .right-bar .sinlge-bar {
        padding: 3px 12px 8px;
    }

    .user-name svg {
        margin-right: 6px;
        width: 12px;
    }


    .header.shop .right-bar .sinlge-bar .single-icon .total-count {
        left: 13px;
    }

}

@media screen and (max-width: 1024px) and (min-width: 768px) {

    header.header.shop .cate {
        width: 50% !important;
    }

    body .header.shop .right-bar .sinlge-bar.shopping span.total-count.cart-count {
        right: -11px !important;
    }

    .header.shop .right-bar .sinlge-bar .single-icon {
        font-size: 14px !important;
    }

    .footer .copyright .left {
        float: none;
        text-align: center;
        margin: 0 auto;
        display: table;
    }

}


/*###31oct#####*/


@media screen and (max-width: 400px) {

    header.header.shop.home01 .right-menu {
        margin-top: 5px;
    }

}

@media (max-width: 310px) {
    .header.shop .right-bar .sinlge-bar .single-icon {
        font-size: 8px !important;
    }

    .product-tab-section {
        padding: 0px 0px;
    }

    .product-tab-section .card {
        padding: 7px !important;
    }


    .product-tab-section .pro-col1 {
        padding: 10px;
    }


}


@media screen and (max-width: 767px) {

    .qty-counter.single-page-product button.btn.btn-primary.btn-number.plus-btn-qty i {
        font-size: 15px;
    }

    section.product-detail.section .add_to_cart {
        font-size: 10px;
    }


    section.product-detail.section .text-area .qty-counter .button .btn {
        line-height: 43px !important;
        height: 36px;
    }

    /* ###productdets###*/

    .shopping-summery thead {
        display: block;
    }

    .shopping-summery thead .main-hading {
        display: block;
        padding: 0px 18px;
    }


    .custom-shopping .shopping-summery thead tr th {
        font-size: 10px !important;
    }


    .shopping-cart.custom-shopping .table td.image {
        padding: 10px !important;
        width: 14%;
        margin: 0 auto;
        height: 100px;
        display: unset;
        float: left;
    }

    .shopping-summery tbody tr img {
        height: 38px;
    }

    .shopping-summery thead .main-hading {
        padding: 0 1px;
    }

    .shopping-cart.custom-shopping .table td.na {
        width: 6% !important;
    }

    .custom-shopping .shopping-summery thead tr th {
        font-size: 10px !important;
        padding: 8px 16px;
    }

    .shopping-cart .table .remove-icon {
        font-size: 15px;
        position: relative;
        top: 4px;
    }

    .shopping-cart.custom-shopping .table td.price {
        width: 22% !important;
    }

    .shopping-cart .table p {
        font-size: 10px;

    }

    .shopping-cart.custom-shopping .table td.qty {
        width: 11% !important;
    }

    .shopping-cart tbody .qty .input-group {
        width: 91px;
    }

    .custom-shopping .table.shopping-summery {
        padding-right: 0px;
        display: block !important;
        width: 100% !important;
        overflow-x: auto;
        white-space: nowrap;
    }

    .shopping-cart.section.custom-shopping .table td p.cart-product-name {
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        width: 82px;
    }

    .shopping-summery tbody .price span {
        font-size: 9px;
    }


    .shopping-cart.custom-shopping .table td.na {
        width: 6% !important;
        font-size: 10px;
    }


    .custom-shopping .shopping-summery thead tr th {
        background: #06407e;
    }


    .shopping-cart.custom-shopping .table td {
        width: 20%;
    }

    .shopping-summery tbody .total-amount span {
        position: relative;
        left: 40px;
    }

    /* ###productdets###*/

    .header.header.shop .slicknav_nav {

        box-shadow: 0 1px 6px 0 rgb(32 33 36 / 28%);

    }

    .profile-bio-content.ct-editable section.h-100.gradient-custom .d-flex {
        flex-wrap: wrap;
    }


    .profile-bio-content.ct-editable div#prescriptionDivForm input[type="file"] {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .profile-bio-content.ct-editable div#prescriptionDivForm .single-widget.get-button {
        margin-top: 15px;
    }


}

@media screen and (max-width: 991px) {
    .banner-section.vendor-list h4 {
        line-height: 44px;
    }
}


@media screen and (max-width: 1024px) and (min-width: 768px) {

    .shopping-cart.custom-shopping .table td {
        height: 85px;
    }

    .shopping-summery tbody tr img {
        height: 60px;
    }

    .custom-shopping .shopping-summery thead tr th {
        font-size: 10px !important;
    }

    .profile-wrapper .profile-feed-container .profile-feed .profile-feed-wrapper {
        width: 48% !important;
    }
}


@media screen and (max-width: 1100px) {
    section.product-detail.section .product-detail-list .xzoom-container {
        top: 15px;
    }

    .section.product-detail.section {
        padding: 0px 0px;
    }

}

@media screen and (max-width: 1250px) and (min-width: 1200px) {
    .cat-nav-head .call-btn {
        right: -29px;
    }

}