/*dropdown*/
.dropdown-toggle {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}
.dropdown-toggle::after {
    border: 0;
    content: "\f107";
    font-family: "Line Awesome Free";
    font-weight: 900;
    font-size: 80%;
    margin-left: 0.3rem;
}
.dropup .dropdown-toggle::after {
    border: 0;
    content: "\f106";
}
.dropdown-toggle.no-arrow::after {
    content: none;
}
.dropdown-menu {
    border-color: #dfdfe6;
    margin: 0;
    border-radius: 0;
    min-width: 14rem;
    font-size: inherit;
    padding: 0;
    -webkit-box-shadow: 0 0 50px 0 rgba(82, 63, 105, 0.15);
    box-shadow: 0 0 50px 0 rgba(82, 63, 105, 0.15);
    padding: 0.5rem 0;
    border-radius: 4px;
    max-width: 100%;
}
.dropdown-menu-animated {
    display: block;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: margin-top 0.3s, visibility 0.3s, opacity 0.3s;
    transition: margin-top 0.3s, visibility 0.3s, opacity 0.3s;
    margin-top: 20px !important;
}
.show.dropdown-menu {
    visibility: visible;
    opacity: 1;
    margin-top: 0 !important;
}
.dropdown-menu.dropdown-menu-xs {
    width: 160px;
    min-width: 160px;
}
.dropdown-menu.dropdown-menu-sm {
    width: 240px;
    min-width: 240px;
}
.dropdown-menu.dropdown-menu-md {
    width: 260px;
    min-width: 260px;
}
.dropdown-menu.dropdown-menu-lg {
    width: 320px;
    min-width: 320px;
}
.dropdown-menu.dropdown-menu-xl {
    width: 380px;
    min-width: 380px;
}
.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.5rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #74788d;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.dropdown-item.active,
.dropdown-item:hover,
.dropdown-item:active {
    color: #fff !important;
    background-color: var(--primary);
}

.notifications .nav-link{
    border: 0px;
    border-bottom: 2px solid transparent;
}
.notifications .nav-link.active{
    border-bottom-color: #d43533;
}

/*hover category menu*/

.aiz-category-menu .sub-cat-menu.more {
    height: 553px;
}
[dir="rtl"] .aiz-category-menu .sub-cat-menu {
    left: auto;
    /* right: calc(25% - 10px); */
    right: 270px;
}

.aiz-user-top-menu .user-top-nav-element > a {
    padding-top: 14px;
    padding-bottom: 14px;
}
.aiz-category-menu .category-nav-element > a {
    padding-top: 12px;
    padding-bottom: 12px;
}
.aiz-user-top-menu .user-top-nav-element:hover > a ,
.aiz-category-menu .category-nav-element:hover > a {
    position: relative;
    z-index: 10;
    background: var(--soft-secondary-base);
}
.aiz-user-top-menu .user-top-nav-element:hover > .user-top-menu-name,
.aiz-category-menu .category-nav-element:hover > a .cat-name{
    margin-left: 0px;
}
.hover-category-menu .all-category::before {
    position: absolute;
    content: "";
    width: 50px;
    height: 20px;
    bottom: 100%;
    right: 0;
}
.hover-category-menu .all-category::before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    border-top: 0;
    border-right: 12px solid transparent;
    border-bottom: 12px solid var(--soft-primary);
    border-left: 12px solid transparent;
    top: -12px;
    right: 20px;
}
[dir="rtl"] .hover-category-menu .all-category::before {
    left: 20px;
    right: auto;
}

#category-menu-bar-icon.show{
    transform: rotate(180deg);
}

.hover-user-top-menu{
    display: none;
}
.hover-user-top-menu.active{
    display: block;
    animation: toggle_show 0.5s
}

@keyframes toggle_show {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    100% {
        opacity: 1;
        transform: translateY(100);
    }
}


/* collapse side bar*/

.collapse-sidebar-wrap .overlay {
    opacity: 0;
    visibility: hidden;
}

.collapse-sidebar-wrap .overlay {
    opacity: 0;
    visibility: hidden;
}
.sidebar-all {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}
.sidebar-all .collapse-sidebar {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: fixed;
    width: 340px;
    max-width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    overflow-y: auto;
}
.sidebar-all.sidebar-right .collapse-sidebar {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    left: auto;
    right: 0;
}
.sidebar-all.sidebar-auto .collapse-sidebar {
    width: auto;
    max-width: 100%;
    height: auto;
    -webkit-transform: translate(-50%, -100px);
    transform: translate(-50%, -100px);
    left: 50%;
    top: 0;
}
.sidebar-all.sidebar-full .collapse-sidebar {
    width: 100%;
    max-width: 100%;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    left: auto;
    right: 0;
}
.sidebar-all,
.sidebar-all .collapse-sidebar,
.sidebar-all .overlay {
    opacity: 0;
    visibility: hidden;
}
@media (max-width: 575.98px) {
    .sidebar-sm {
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        position: fixed;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 1;
    }
    .sidebar-sm .collapse-sidebar {
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        position: fixed;
        width: 340px;
        max-width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 2;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        overflow-y: auto;
    }
    .sidebar-sm.sidebar-right .collapse-sidebar {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        left: auto;
        right: 0;
    }
    .sidebar-sm.sidebar-auto .collapse-sidebar {
        width: auto;
        max-width: 100%;
        height: auto;
        -webkit-transform: translate(-50%, -100px);
        transform: translate(-50%, -100px);
        left: 50%;
        top: 0;
    }
    .sidebar-sm.sidebar-full .collapse-sidebar {
        width: 100%;
        max-width: 100%;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        left: auto;
        right: 0;
    }
    .sidebar-sm,
    .sidebar-sm .collapse-sidebar,
    .sidebar-sm .overlay {
        opacity: 0;
        visibility: hidden;
    }
    .aiz-filter-sidebar .collapse-sidebar {
        overflow-y: auto;
    }
}
@media (max-width: 767.98px) {
    .sidebar-md {
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        position: fixed;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 1;
    }
    .sidebar-md .collapse-sidebar {
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        position: fixed;
        width: 400px;
        max-width: 320px;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 2;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        overflow-y: auto;
    }
    .sidebar-md.sidebar-right .collapse-sidebar {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        left: auto;
        right: 0;
    }
    .sidebar-md.sidebar-auto .collapse-sidebar {
        width: auto;
        max-width: 100%;
        height: auto;
        -webkit-transform: translate(-50%, -100px);
        transform: translate(-50%, -100px);
        left: 50%;
        top: 0;
    }
    .sidebar-md.sidebar-full .collapse-sidebar {
        width: 100%;
        max-width: 100%;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        left: auto;
        right: 0;
    }
    .sidebar-md,
    .sidebar-md .collapse-sidebar,
    .sidebar-md .overlay {
        opacity: 0;
        visibility: hidden;
    }
}

@media (max-width: 991.98px) {
    .sidebar-lg {
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        position: fixed;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 1;
    }
    .sidebar-lg .collapse-sidebar {
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        position: fixed;
        width: 400px;
        max-width: 320px;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 2;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        overflow-y: auto;
    }
    .sidebar-lg.sidebar-right .collapse-sidebar {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        left: auto;
        right: 0;
    }
    .sidebar-lg.sidebar-auto .collapse-sidebar {
        width: auto;
        max-width: 100%;
        height: auto;
        -webkit-transform: translate(-50%, -100px);
        transform: translate(-50%, -100px);
        left: 50%;
        top: 0;
    }
    .sidebar-lg.sidebar-full .collapse-sidebar {
        width: 100%;
        max-width: 100%;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        left: auto;
        right: 0;
    }
    .sidebar-lg,
    .sidebar-lg .collapse-sidebar,
    .sidebar-lg .overlay {
        opacity: 0;
        visibility: hidden;
    }
}

@media (max-width: 1199.98px) {
    .sidebar-xl {
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        position: fixed;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 1;
    }
    .sidebar-xl .collapse-sidebar {
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        position: fixed;
        width: 400px;
        max-width: 320px;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 2;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        /* overflow-y: auto; */
    }
    .sidebar-xl.sidebar-right .collapse-sidebar {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        left: auto;
        right: 0;
    }
    .sidebar-xl.sidebar-auto .collapse-sidebar {
        width: auto;
        max-width: 100%;
        height: auto;
        -webkit-transform: translate(-50%, -100px);
        transform: translate(-50%, -100px);
        left: 50%;
        top: 0;
    }
    .sidebar-xl.sidebar-full .collapse-sidebar {
        width: 100%;
        max-width: 100%;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        left: auto;
        right: 0;
    }
    .sidebar-xl,
    .sidebar-xl .collapse-sidebar,
    .sidebar-xl .overlay {
        opacity: 0;
        visibility: hidden;
    }
}

.collapse-sidebar-wrap.active,
.collapse-sidebar-wrap.active .collapse-sidebar,
.collapse-sidebar-wrap.active .overlay {
    opacity: 1;
    visibility: visible;
}
.collapse-sidebar-wrap.active .collapse-sidebar {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
    background-color: #fff;
}
.collapse-sidebar-wrap.active .sidebar-auto {
    -webkit-transform: translate(-50%, 0px);
    transform: translate(-50%, 0px);
}

.dropdown-toggle.filter-section[data-toggle].collapsed:after {
    content: "\f107";
    font-family: "Line Awesome Free";
    color: #b5b5bf;
    font-size: 16px;
}

.dropdown-toggle.filter-section[data-toggle]:not(.collapsed):after {
    font-family: "Line Awesome Free";
    content: "\f106";
    color: #b5b5bf;
    font-size: 16px;
}

.badge-custom {
    display: inline-block;
    padding: 3px;
    font-size: 11px;
    border-radius: 0 50em 50em 0;
    color: #ff0000;
    font-weight: 600;
    line-height: 26px;
    position: absolute;
    background: #fff;
    z-index: 1;
    top: 20px;
    box-shadow: 2px 1px 6px 2px rgba(0, 0, 0, 0.1),
        0 4px 4px 0px rgba(0, 0, 0, 0.06) !important;
}

.badge-custom .box {
    height: 26px;
    width: 26px;
    background: #ff0000;
    color: #fff;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
}
[dir="rtl"] .badge-custom {
    border-radius: 50em 0 0 50em;
}

/* ---- Nav User Info ---- */
.nav-user-info{
    cursor: pointer;
}
.nav-user-info .nav-user-img{
    transition: all 0.5s;
}
.nav-user-info:hover .nav-user-img{
    border-color: var(--primary) !important;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.16);
}
.nav-user-info .nav-user-img > svg *{
    transition: all 0.5s;
}
.nav-user-info:hover .nav-user-img > svg *{
    fill: var(--primary);
}
/* Top menu sidebar for mobile */
.aiz-top-menu-sidebar{
    opacity: 0;
    visibility: hidden;
}
.aiz-top-menu-sidebar.active{
    opacity: 1;
    visibility: visible;
}
.aiz-top-menu-sidebar .collapse-sidebar{
    overflow-y: auto;
    transform: translateX(-100%);
    left: 0;
    right: auto;
    transition: all 0.5s;
}
.aiz-top-menu-sidebar.active .collapse-sidebar{
    transform: translate(0%, 0%);
}
.aiz-top-menu-sidebar ul li{
    list-style-type: none;
}

/* Accordion */
.aiz-accordion-wrap{
    margin-bottom: 2px;
}
.aiz-accordion-heading .aiz-accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px 0;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}
.aiz-accordion-heading.active, .aiz-accordion-heading:hover {
    background-color: #ccc;
}
.aiz-accordion-heading .aiz-accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
    font-size: 18px;
}
.aiz-accordion-heading.active .aiz-accordion:after {
    content: "\2212";
}
.aiz-accordion-panel {
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.accordion .card-header i{
    transition: all 0.4s
}
.accordion .card-header[aria-expanded="true"] i{
    transform: rotate(180deg);
}
.header_menu_links.active{
    background-color: rgb(0 0 0 / 10%) !important;
}

.aiz-user-top-menu .user-top-nav-element:hover > .user-top-menu-name,
.aiz-category-menu .category-nav-element:hover > a .cat-name{
    margin-left: 0px;
}
.aiz-card-box .img-fit {
    max-height: 100%;
    width: auto;
    object-fit: inherit;
    margin: auto;
}
.aiz-category-menu .sub-cat-menu{
    display: none;
    position: absolute;
    width: calc(100% - 25%);
    left: calc(25% - 10px);
    height: calc(100% + 20px);
    overflow: hidden;
    top: 0;
    z-index: 9;
    background-color: #fff;
    overflow-y: auto;
}
[dir="rtl"] .aiz-category-menu .sub-cat-menu{
    left: auto;
    right: calc(25% - 10px);
}
.aiz-category-menu .category-nav-element:hover .sub-cat-menu{
    display: block;
}
.aiz-category-menu .category-nav-element:hover > a{
    position: relative;
    z-index: 10;
    background: #fff;
    box-shadow: -2px 3px 5px rgb(0 0 0 / 0.1);
}
.hover-category-menu .all-category::before {
    position: absolute;
    content: "";
    width: 50px;
    height: 20px;
    bottom: 100%;
    right: 0;
}
.hover-category-menu .all-category::before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    border-top: 0;
    border-right: 12px solid transparent;
    border-bottom: 12px solid var(--soft-primary);
    border-left: 12px solid transparent;
    top: -12px;
    right: 20px;
}
[dir="rtl"] .hover-category-menu .all-category::before {
    left: 20px;    
    right: auto;
}
.aiz-category-menu .category-nav-element:hover .sub-cat-menu {
    display: block;
}

/*custom menu start*/
.fullnavbarcustom li.category-nav-element img {
    display: block;
    margin: auto;
    margin-bottom: 0;
    width: 64px;
    height: 64px;
    opacity: 1 !important;
}

.fullnavbarcustom li.category-nav-element a, .fullnavbarcustom li.category-nav-element {
    text-align: center;
}
.fullnavbarcustom ul.list-unstyled.categories {
    display: inline-flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}
.fullnavbarcustom .aiz-category-menu .category-nav-element:hover .sub-cat-menu {
    top: 100%;
    left: 0;
    width: 100%;
    text-align: left;
    height: auto;
}
.fullnavbarcustom .aiz-category-menu .category-nav-element:hover > a {
    box-shadow: none;
}
.fullnavbarcustom .aiz-category-menu .category-nav-element .sub-cat-menu li.mb-2 a:hover
{
    color: var(--primary) !important;
}
.seeAll
{
    padding: 9px 16px;
}
@media screen and (max-width: 767px)
{
    
    .f-item{
        padding-right:1.5rem;
        padding-left:1.5rem;
    }
   .fullnavbarcustom ul.list-unstyled.categories {
    flex-wrap: nowrap;
} 
}
.blinkseller
{
    text-transform: uppercase;
    font-weight: 600;
}
/* Blink for Webkit and others
(Chrome, Safari, Firefox, IE, ...)
*/

@-webkit-keyframes blinker {
  from {opacity: 1.0;}
  to {opacity: 0.5;}
}
.blinkseller{
	text-decoration: blink;
	-webkit-animation-name: blinker;
	-webkit-animation-duration: 0.6s;
	-webkit-animation-iteration-count:infinite;
	-webkit-animation-timing-function:ease-in-out;
	-webkit-animation-direction: alternate;
}
/*custom menu end*/

.top-navbar{
    background-color: #ffe186 !important;
}
.top-header-bold{
    font-weight: 600;
}
.top-header-bold:hover{
    font-weight: 600;
    color: #0f52ba !important;
}
.all-categories-highlight {
    font-size: 15px;
    font-weight: 600;
    /* text-transform: uppercase; */
}
.offer{
   font-weight: 600;
}
.btn-offer{
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    padding: 2px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 15px 5px 15px 5px;
    text-decoration: none;
  -webkit-animation: glowing 1500ms infinite;
  -moz-animation: glowing 1500ms infinite;
  -o-animation: glowing 1500ms infinite;
  animation: glowing 1500ms infinite;
}
@-webkit-keyframes glowing {
  0% { background-color: #B20000; -webkit-box-shadow: 0 0 3px #B20000; }
  50% { background-color: #FF0000; -webkit-box-shadow: 0 0 420px #FF0000; }
  100% { background-color: #B20000; -webkit-box-shadow: 0 0 3px #B20000; }
}

@-moz-keyframes glowing {
  0% { background-color: #B20000; -moz-box-shadow: 0 0 3px #B20000; }
  50% { background-color: #FF0000; -moz-box-shadow: 0 0 20px #FF0000; }
  100% { background-color: #B20000; -moz-box-shadow: 0 0 3px #B20000; }
}

@-o-keyframes glowing {
  0% { background-color: #B20000; box-shadow: 0 0 3px #B20000; }
  50% { background-color: #FF0000; box-shadow: 0 0 30px #FF0000; }
  100% { background-color: #B20000; box-shadow: 0 0 3px #B20000; }
}

@keyframes glowing {
  0% { background-color: #B20000; box-shadow: 0 0 3px #B20000; }
  50% { background-color: #FF0000; box-shadow: 0 0 20px #FF0000; }
  100% { background-color: #B20000; box-shadow: 0 0 3px #B20000; }
}
}
.btn-offer:hover{
    background-color: var(--hov-primary);
    border-color: var(--hov-primary);
}
header.sticky-top.z-1020.bg-white.border-bottom.shadow-sm {
    box-shadow: 0 2px 3px 0 rgb(0 0 0 / 10%) !important;
    margin-bottom: 5px;
}

@media screen and (max-width: 767px)
{
.aiz-category-menu .sub-cat-menu {
    display: none !important;
}
}
.fullnavbarcustom .aiz-category-menu .category-nav-element:hover .sub-cat-menu {
    height: 150px;
    overflow-y: scroll;
}
@media screen and (max-width: 991px)
{
    .fullnavbarcustom ul.list-unstyled.categories {
    flex-wrap: nowrap;
    }
    .fullnavbarcustom ul.list-unstyled.categories {
    justify-content: right;
    }
    .fullnavbarcustom li.category-nav-element a, .fullnavbarcustom li.category-nav-element li a {
    font-size: 12px;
    padding: .5rem 1rem;
}
.fullnavbarcustom li.category-nav-element img {
    width: 40px;
    height: 45px;
}
.fullnavbarcustom .card-columns .card {
    display: block;
}
.sub-cat-menu ul.list-unstyled.mb-3 {
    margin-bottom: 0 !important;
}
.mobpad0
{
    padding: 0;
}
.position-relative.logo-bar-area.z-1 {
    height: auto;    margin: 0;
}
.mobpb10
{
        padding: 5px 0;
}
  .mobp0
    {
        padding: 0 !important;
    }
    .mobslider
    {
        display: block;
    }
    .mobbanner_disnone
    {
        display: none;
    }
}
.mob_display{
    display: flex!important;
    flex-wrap: wrap;
}
.d-none.d-xl-block.align-self-stretch.category-menu-icon-box.ml-auto.mr-0 {
    display: none !important;
}
.d-none.d-xl-block.align-self-stretch.category-menu-icon-box.ml-auto.mr-0 {
    display: none !important;
}

.alter-color{
    border-color: rgb(255 225 134) !important;
    background-color: rgb(255 225 134) !important;
}

.site-header-logo {
    display: inline-flex;
    height: auto;
    margin-right: 25px;
    text-align: left;
    align-items: center;
}
.addrss-link{
    margin:0px;
    padding:0px;
}
.addrss-link li{
    color:#fff;
    display:inline-block;
    margin-right:10px;
    font-size: 15.3px;
}
.addrss-link li i {
    position: relative;
    margin-right: 0;
    font-size: 18px;
    top: 2px;
}
.top-navbar {
    background-color: rgb(0 0 0 / 95%) !important;
    padding: 9px 0 0;
}
.cls-11 {
    fill: #333;
}
.with_newsearch .form-control {
    padding: 0.6rem 1rem;
    font-size: 14px;
    height: calc(1.3125rem + 0.9rem + 0px);
    border: none !important;
    color: #898b92;
    padding-left: 15px;
}
.with_newsearch button.btn.searchbtn
{
    background: #fff;
    padding: 4px 6px;
    box-shadow: none;
    border: none;
}
.with_newsearch .stop-propagation
{
    background: #000;
}
.top-navbar ul.social a {
    display: inline-block;
    width: 32px;
    height: 32px;
    border-radius: 50em;
    line-height: 32px;
    font-size: 21px;
}
.top-navbar .list-inline-item:not(:last-child) {
    margin-right: 7px;
}
.header-custom {
    background: rgb(0 0 0 / 95%);
}
.fullnavbarcustom {
    background: transparent !important;
    padding: 0 !Important;
}
.fullnavbarcustom li.category-nav-element a {
    color: #fff;
    font-size: 14px;
}
.dropdown-menu.dropdown-menu-sm {
    top: 100% !important;
}
#cart_items li a, #cart_items2 li a {
    padding: 0;
}
.dropdown-menu.dropdown-menu-lg {
    top: 100% !important;
}
.dropmenu_new a {
    color: #000;
    font-size: 14px;
    font-weight: 600;
}
.dropdown:hover .dropdown-menu
{
    display: block;
}
.fullnavbarcustom .aiz-category-menu .category-nav-element:hover > a {
    box-shadow: none;
    color: #0f52ba !important;
    background: transparent;
}
.fullnavbarcustom .aiz-category-menu .category-nav-element .sub-cat-menu li:hover a
{
    color: #0f52ba !important;
}


.nav-cart-box i {
    color: #fff;
    opacity: 1 !important;
}
.fullnavbarcustom li.category-nav-element a {
    padding: 30px 10px !important;
}
.header-custom .badge-primary {
    background-color: #0f52ba;
    position: relative;
    top: -11px;
    left: -12px;
}
.seeAll {
    padding: 0;
    line-height: 81px;
}
#cart_items a, #cart_items2 a {
    padding: 27px 0;
}
.sec_pad#cart_items a, .sec_pad#cart_items2 a
{
    padding: 25px 0;
}
.header-custom {
    height: auto;
    margin-top: 0;
}
header.sticky-top.z-1020.bg-white.border-bottom.shadow-sm {
    margin-bottom: 0px;
}
.justify-content-around
{
    justify-content: space-around;
}
.fullnavbarcustom .aiz-category-menu .category-nav-element:hover .sub-cat-menu {
    width: 230px;
    left: auto;
}
.sub-cat-menu .card-columns
{
    display: block;
    column-count: 1 !important;
}
div#wishlist i, div#wishlist2 i {
    color: #fff;
    opacity: 1 !important;
}
.flexwrap
{
    flex-wrap: wrap;
}
div#wishlist a {
    padding: 30px 0;
}
div#wishlist2 a {
    padding: 30px 0;
}
@media (min-width: 768px)
{
    .logo-bar-area .h-md-40px, .logo-bar-area .size-md-40px {
    height: 60px;
}
}
.mob_disply
{
    display: none;
}

@media (min-width: 1200px)
{
    .container {
    max-width: 1170px;
}
}
ul.social.colored [class*="facebook"] {
    background-color: #3b5999;
}
ul.social.colored [class*="twitter"] 
{
    background: #38A1F3;
}
footer ul.social a {
    display: inline-block;
    width: 33px;
    height: 33px;
    border-radius: 3px;
    line-height: 36px;
    text-align: center;
    font-size: 18px;
}

ul.social.colored [class*="instagram"] {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}
ul.social.colored i {
    color: #fff;
    font-size: 22px;
    background: transparent !important;
}
@media (max-width: 767px)
{
    .fullnavbarcustom {
    display: none;
}
.cls-12
{
    fill: #fff;
}
/*div#cart_items {*/
/*    display: none;*/
/*}*/
.hideonmob_search
{
    display: none;
}
.mob_disply
{
    display: block;
}
.top-navbar {
    padding: 7px 0;
}
.new_bgsearch_arrow
{
    background: #fff;
    padding: 4px;
    border-radius: 0;
}
.flex-grow-1.front-header-search.d-flex.align-items-center.bg-white.hideonmob_search.active {
    display: none !important;
}
}

@media (min-width: 1400px) {
  .container {
   max-width: 1370px;
  }
  
  .logo-bar-area .h-md-40px, .logo-bar-area .size-md-40px {
    height: 80px;
}
.fullnavbarcustom li.category-nav-element a {
    padding: 30px 20px !important;
}
.top-navbar .list-inline-item:not(:last-child) {
    margin-right: 10px;
}
}
@media (min-width: 1900px) {
.fullnavbarcustom li.category-nav-element a {
    padding: 30px 17px !important;
    font-size: 16px;
}
}
@media (max-width: 767px)
{
    .top-navbar
    {
        display: none;
    }
    .mobimgwidth_logo
    {
    width: 245px;
    height: auto;
    margin-left: 20px;
    }
    .header-custom
    {
        padding-bottom: 12px !Important;
    }
    .mobjustifycenter
    {
        justify-content: center;
    }
    .mobmr-0
    {
        margin-right: 0 !Important;
        padding: 0;
    margin-bottom: 10px;
    }
    .hideonmobs
    {
        display: none !Important;
    }
    .addrss-link li {
    font-size: 10px;
}
.site-header-logo {
    margin-right: 0;
    text-align: center;
    justify-content: center;
    width: 100%;
}
}
/*mobile menu*/
.showonmob
{
    display: none;
}

#hamburger {
  width: 35px;
  position: relative;
  margin: auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#hamburger span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 7px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#hamburger span:nth-child(1) {
  top: 0px;
}

#hamburger span:nth-child(2) {
  top: 9px;
}

#hamburger span:nth-child(3) {
  top: 19px;
}

#hamburger.open span:nth-child(1) {
  top: 9px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

#hamburger.open span:nth-child(2) {
  opacity: 0;
  left: -30px;
}

#hamburger.open span:nth-child(3) {
  top: 9px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.sitenavigation ul {
  margin: 0;
  padding: 0;
}
.sitenavigation li {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: inline-block;
  margin-left: -4px;
  line-height: 20px;
}
.sitenavigation li.nav-dropdown:hover > a {
  color: #000;
}
.sitenavigation li a {
  color: #758283;
  text-decoration: none;
  display: block;
  padding: 11px 14px;
  font-size: 0.9375em;
  -webkit-tap-highlight-color: transparent;
}
.sitenavigation li a.nav-path-selected, .sitenavigation li a.linkclicked {
  color: white;
  background-color: #ECECEC;
}
.sitenavigation li a.nav-selected {
  background-color: #777;
  color: #000;
}
.sitenavigation li a:hover {
  color: #000;
}
.sitenavigation li.clicked > ul {
  display: block;
}
.sitenavigation li ul {
  display: none;
  position: absolute;
  min-width: 200px;
  max-width: 300px;
  padding: 0;
  margin: 0;
}
.sitenavigation li ul a {
  background-color: #dfdfdf;
  font-size: 0.8125em;
}
.sitenavigation li ul li {
  float: none;
  display: block;
  margin: 0;
}
.sitenavigation li ul ul {
  left: 100%;
  margin-top: -40px;
}
.sitenavigation li ul ul a {
  background-color: lightgray;
}
.sitenavigation .nav-dropdown:hover > a, .sitenavigation .nav-dropdown.clicked > a {
  background-color: #ECECEC;
}

.no-js .sitenavigation li:hover > ul {
  display: block !important;
}

.menu-icon {
  display: none;
}
a.text-reset.prlist:hover span {
    color: #9A0056 !important;
}
@media (max-width: 1199px) {
    .z-index2
    {
        z-index: 8;
    }
 .fullnavbarcustom {
    display: none;
}  
.flex-grow-1.d-flex.align-items-center.bg-white.justify-content-start {
    justify-content: end !important;
    margin-right: 60px;
}
        .showonmob
    {
        display: block;
        z-index: 9999999;
    }
.navbar {
    width: 100%;
    /* background-color: #f9f9f9; */
    /* border: thin solid #ededed; */
    height: 85px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    z-index: 1;
}
.d-lg-none.ml-auto.mr-0.mobsearch i {
    position: absolute;
    right: 65px;
    top: 18.4px;
    z-index: 2;
}

/*.position-relative.logo-bar-area.z-1 {
    padding: 10px 0;
}*/
  .navbar .logo {
    float: right;
    font-weight: 800;
    padding: 5px;
    margin: 10px;
  }
.navbar .menu-icon {
    position: absolute;
    height: 25px;
    padding-top: 0;
    margin-top: 15px;
    display: block;
    -webkit-tap-highlight-color: transparent;
    padding-bottom: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    position: absolute;
    left: 16px;
    top: 25px;
}
  .navbar .sitenavigation ul {
    display: none;
    max-width: none !important;
  }
  .navbar .sitenavigation li {
    float: none;
    display: block;
    margin: 0;
    padding: 0;
  }
  .navbar .sitenavigation.is-tapped > ul {
    display: block;
    position: absolute;
    margin: 0;
    background-color: #fff;
    right: 0;
    left: 0;
    z-index: 100;
    top: 100%;
    padding: 0;
  }
  .navbar .sitenavigation.is-tapped > ul a {
       width: 100%;
    margin: 0;
    background-color: #fff;
    display: block;
    font-size: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
    height: auto;
    color: #000;
    text-transform: uppercase;
    float: none;
    border: none !important;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
  }
  .navbar .sitenavigation.is-tapped > ul ul a {
    text-transform: capitalize;
}
  .navbar .sitenavigation.is-tapped > ul li {
    width: 100%;
    border-bottom: solid 1px #f7f7f7;
    -webkit-tap-highlight-color: transparent;
  }
  .navbar .sitenavigation.is-tapped > ul li li {
    background-color: #fff;
  }
  .navbar .sitenavigation.is-tapped > ul ul {
    display: none;
    width: 100%;
    z-index: 200;
    border: none;
    margin-left: 0;
    padding: 0;
    position: relative !important;
  }
  .navbar .sitenavigation.is-tapped > ul ul ul {
    clear: both;
    left: 0;
    margin-top: 0;
  }
  .navbar .sitenavigation.is-tapped > ul ul li {
    border-bottom: solid 1px #f9f9f9;
  }
  .navbar .sitenavigation.is-tapped > ul ul li li a {
    background-color: #f9f9f9;
    padding-left: 30px;
  }
  .navbar .sitenavigation.is-tapped > ul ul a {
    background-color: #fff;
    font-size: 15px;
    padding-left: 20px;
  }
 .navbar .sitenavigation.is-tapped > ul ul a:before {
    content: "- ";
    display: inline-block;
    margin-right: 8px;
    color: #000;
  }
  .navbar .sitenavigation.is-tapped > ul li.nav-dropdown {
    cursor: pointer;
  }
  .navbar .sitenavigation.is-tapped > ul li.nav-dropdown > a {
    width: 90%;
  }
  ul.submenulist {
    padding: 20px 0 15px !important;
}
/*  .navbar .sitenavigation.is-tapped > ul li.nav-dropdown:after {
    content: "\f107";
    font-family: 'Line Awesome Free';

    position: absolute;
    color: #fff;
    padding: 0;
    display: block;
    width: 10%;
    right: 0;
    margin-top: -33px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    padding-top: 6px;
    padding-bottom: 6px;
    background: #0f52ba;
}*/
  .navbar .sitenavigation.is-tapped > ul li.nav-dropdown i {
    content: "\f107";
    font-family: 'Line Awesome Free';

    position: absolute;
    color: #fff;
    padding: 0;
    display: block;
    width: 10%;
    right: 0;
   
    margin-top: -28px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    padding-top: 12px;
    padding-bottom: 12px;
    background: #0f52ba;
}
.navbar .sitenavigation.is-tapped > ul li.nav-dropdown.open a i {
    transform: rotate(
180deg
);
}
 .navbar .sitenavigation.is-tapped > ul ul li.nav-dropdown a i {
    transform: rotate(
0deg
) !Important;
}
 .navbar .sitenavigation.is-tapped > ul ul li.nav-dropdown.open a i {
    transform: rotate(
180deg
) !Important;
}
  .navbar .sitenavigation.is-tapped > ul li.expanded:after {
    display: none;
  }
  .navbar .sitenavigation.is-tapped > ul li.expanded li:first-child:before {
    content: "\f106";
    font-family: 'Line Awesome Free';
    position: absolute;
    color: #fff;
    padding: 0;
    display: block;
    width: 10%;
    right: 0;
    margin-top: -33px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    padding-top: 6px;
    padding-bottom: 6px;
    background: #0f52ba;
  }
  .submenulist
  {
      
    background: #fff;
    padding: 20px 0;
  }
  .navbar .sitenavigation.is-tapped > ul ul.submenulist a {
    padding: 0;
    text-align: center;
}
}
@media screen and (max-width: 767px)
{
    .d-lg-none.ml-auto.mr-0.mobsearch i {
    position: absolute;
    right: 65px;
    top: 13.4px;
}
.position-relative.logo-bar-area.z-1 {
    padding: 0px 0 0 !Important;
}
.navbar .menu-icon {
    margin-top: 10px;
}
}
.dropdown-menu-right:before {
    content: "";
    display: block;
    height: 20px;
    position: absolute;
    top: -20px;
    width: 100%;
}

/* 07-5-2022*/
div#compare, div#compare2 {padding: 25px 0;}

div#compare i, div#compare2 i {color: #fff;color: #fff;
opacity: 1 !important;
font-size: 20px;
position: relative;
top: 4px;}

.dropdown-menu.dropdown-menu-sm {
transform: translate3d(0px, 0px, 0px) !important;
right: 0 !important;
left: auto !important;
}

@media screen and (max-width: 767px)
{
.dropdown-menu.dropdown-menu-sm {
right: auto !important;
}
.row.m-0.justify-content-end.aar {
justify-content: center !important;
}
}

.fullnavbarcustom li.category-nav-element .sub-cat-menu a { 
    padding: 10px 10px !important;
}
i.la.la-search.la-flip-horizontal {
    font-size: 25px;
    /* height: 31px; */
    position: relative;
    top: 3px;
    color: #000;
}

@media screen and (min-width: 1800px)
{div#search-content {
    height: 570px;
}
    
}
div#wishlist i, div#wishlist2 i {
    font-size: 20px !important;
}
.row.m-0.justify-content-end.aar .la {
    font-size: 21px;
}

img.pay_logo {
    width: 100%;
}
.logindropdown a {
    padding: 27px 5px;
}
.logindropdown .list-group-flush>.list-group-item a
{
    padding: 0px 0;
}
i.la.la-user.la-2x.opacity-80
{
    margin-top: 0 !Important;
}
button.btn.btn-primary.searchbtn:focus i {
    color: #fff;
}

button.btn.btn-primary.searchbtn:focus {
    border-radius: 0;
}
@media screen and (max-width: 1199px)
{
     .top-navbar .list-inline-item:not(:last-child) {
    margin-right: 2px;
}
ul.social.colored i {
    font-size: 17px;
}
.top-navbar ul.social a {
    width: 27px;
    height: 27px;
    font-size: 12px;
}  
.navbar .menu-icon {
    z-index: 999;
}
.row.m-0.d-flex.align-items-center.flexwrap.mobjustifycenter {
    justify-content: space-between;
}

}
@media screen and (max-width: 1100px)
{
 

.mobtextcxenter
{
    text-align: center;
}



}
@media screen and (max-width: 991px)
{
    .flex-grow-1 {
    flex: 100% !important;
}
    .col-xl-2.pr-0.pl-0.col-lg-4.col-4.d-lg-block.d-sm-none {
    display: none;
}
.flex-grow-1.front-header-search.d-flex.align-items-center.bg-white.hideontab {
    display: none !important;
}
.navbar
{
    z-index: -1;
}
.navbar .menu-icon {
    z-index: 999;
    left: 40px;
    top: 14px;
}
.navbar .sitenavigation.is-tapped > ul
{
    top: 85%;
}
button.btn.searchbtn {
    padding: 0.2rem 1rem;
}
    img.mw-100.h-65px.h-md-40px.mobimgwidth_logo {
    margin-left: 40px;
}
.col-auto.col-xl-3.pl-0.pr-3.d-flex.align-items-center.z-index2.col-lg-7.col-7 {
    z-index: 9999999;
}
.flex-grow-1.front-header-search.d-flex.align-items-center.bg-white {
    margin-bottom: 7px;
}
    .flex-grow-1.front-header-search.d-flex.align-items-center.bg-white.hideonmob_search {
    display: none !important;
}
.row.m-0.justify-content-end.aar {
    justify-content: center !important;
}
    .row.m-0.with_newsearch {
    text-align: center;
    justify-content: center;
}
}
@media screen and (max-width: 767px)
{
/*.col-auto.col-xl-3.pl-0.pr-3.d-flex.align-items-center.z-index2.col-lg-7.col-7.mobmlduetomenu {
    margin-left: 66px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999999;
}
    img.mw-100.h-65px.h-md-40px.mobimgwidth_logo {
    margin-left: 0px;
}*/
.nav-cart-box.dropdown.show.logindropdown {
    display: none;
}
}
@media screen and (max-width: 575px)
{
.col-auto.col-xl-3.pl-0.pr-3.d-flex.align-items-center.z-index2.col-lg-7.col-7.mobmlduetomenu {
    margin-left: 66px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999999;
}
    img.mw-100.h-65px.h-md-40px.mobimgwidth_logo {
    margin-left: 0px;
}
    .slick-list.draggable {
    height: auto !important;
}
    .text-md-left.mobfooter.imglogo_footer img {
    width: 100%;
    object-fit: contain;
}
   .navbar
   {
       height: 55px;
   }
    .mobimgwidth_logo {
    width: 250px;
    }


.navbar .menu-icon {
    left: 15px;
}

.nav-cart-box.dropdown.show.logindropdown {
    display: none;
}
.navbar .menu-icon {
    left: 0;
    margin-left: 15px;
    z-index: 99999;
}
div#cart_items, div#cart_items2 {
    display: none;
}
.row.m-0.justify-content-end.aar {
    justify-content: end !important;
}
.navbar .menu-icon {
    left: 0;
    margin-left: 15px;
    z-index: 99999;
    margin: 0;
    margin-left: 10px;
    top: 20px;
}
}
div#compare span.badge.badge-primary.badge-inline.badge-pill {
    top: -6px;
}
@media screen and (max-width: 767px)
{
    .mobp0
    {
        padding: 0;
    }
.logindropdown a {
    padding: 21px 5px;
}
.logindropdown .list-group-flush>.list-group-item a
{
    padding: 0px 0;
}
    #cart_items a, #cart_items2 a {
    padding: 21px 0;
}
div#wishlist a, div#wishlist2 a {
    padding: 21px 0;
}
div#compare, div#compare2 {
    padding: 18px 0;
}
section.light_black.py-5.text-light.footer-widget.mobpad20 {
    padding: 10px 0 !important;
}
.navbar .sitenavigation.is-tapped > ul {
    top: 100%;
}
.hideonmobcart
{
    display: none;
}
.flex-grow-1.front-header-search.d-flex.align-items-center.bg-white {
    border-radius: 7px;
}
input#searchtwo {
    border-radius: 7px;
}
.flex-grow-1.front-header-search.d-flex.align-items-center.bg-white
{
  
    margin: 5px 0px 7px;  
}
button.btn.searchbtn {
    padding: 0.2rem 8px 0.3rem;
}
div#compare, div#compare2 {
    padding: 18px 13px;
}
div#compare {
    position: relative;
    left: 5px;
}
span.flex-grow-1.ml-1 {
    position: absolute;
}
div#wishlist span.badge.badge-primary.badge-inline.badge-pill, div#wishlist2 span.badge.badge-primary.badge-inline.badge-pill {
    top: -8px;
    left: 4px;
}
.header-custom .badge-primary {
    left: 4px;
}
.header-custom .badge-primary {
    left: 7px;
    top: -10px;
}
div#wishlist, div#wishlist2 {
    padding: 0 10px 0 0;
}
div#wishlist{
    position: relative;
    right: -5px;
}
button.btn.searchbtn {
    padding: 0.4rem 1rem;
}
}

@media screen and (min-width: 431px) and (max-width: 575px)
{
    .flex-grow-1.front-header-search.d-flex.align-items-center.bg-white {
    margin: 20px 0px 7px;
    width: 100%;
}
}
.col-xl-2.pr-0.pl-0.col-lg-4.col-4.d-lg-none.z-index8 {
    z-index: 9999999;
}
h3.fw-600.fs-14.text-truncate-2.lh-1-4.mb-0.h-35px {
    min-height: 35px;
    height: auto;
}
input#search:focus {
    outline: none;
    box-shadow: none;
}
@media screen and (max-width: 345px)
{
div#wishlist {
    right: -5px;
    padding: 0;
}
div#compare {
    left: 9px;
    padding: 18px 8px;
}
}

.aiz-user-panel.width_full {
    width: 100%;
}

#coupon_form .card-header.mb-2 {
    padding: 0;
}
.newbold {
    font-weight: 600 !important;
    font-size: 13px !important;
        text-transform: capitalize;
}
p.redtext {
    margin-top: 3px !important;
    color: red;
    margin: 0;
    font-size: 11px;
}


