/* REMOVES BREADCRUMBS FROM PRODUCT PAGE SO CUSTOMERS CANT SEE ALL PRODUCTS */
.breadcrumb-item a {
  pointer-events: none;
  color: gray;
  text-decoration: none;
  cursor: default;
}

/* REMOVES SKU FROM PRODUCT PAGE */
.product-detail-container .meta-sku {
    display: none;
}

/* IMAGE SIZE FOR ADMIN LOGIN PAGE */
  a.navbar-brand img {
    max-height: none !important;
    height: 300px !important;
    width: 100%;
}

/* DISPLAYS ONLY SOCIAL ICONS FOR SHARING AND NOT THE NAME IN TEXT */
.widget-socials-share.widget-socials__text a .text {
    display: none;
}



/* REMOVES PAGE NAME FROM EACH PAGE AT TOP */
.page-title.text-center {
    display: none;
}


/* HIDES THE PRODUCT CATEGORY FROM DISPLAYING ON LIST OF PRODUCTS PAGE */
@media (min-width: 992px) {
    body[id^="product-category-"] .catalog-header__title {
      display: none !important;
    }
}


/* REMOVES THE BACKGROUND FROM SOCIAL MEDIA LOGO ON HOMEPAGE */

.footer-socials-container ul li a {
    background: none;
}

/* SIZE OF MAIN LOGO ON SITE  */

.card-img-top{
  height: 250px !important;
  object-fit : cover;
}
/* Footer Logo Properties */
.site-info__item .site-info__image img {
    height: 60px;
    width: 60px;
    max-width: none;
}

@media (max-width: 676px) {
    .ck-content .image.image_resized {
     	width: 80% !important;
    }
}

.product-inner .product-bottom-box {
    display: none !important;
}


.header .header-middle .header-wrapper .header-items {
    width: 30%;
}
/* Logo Height */
.header .header-middle .header__left .logo a img {
    max-height: 200px !important;
}

/* REMOVES THE OUT OF STOCK FLAG FROM PRODUCT IMAGES */
span.ribbon.out-stock {
    display: none !important;
}

/* TEXT SIZE FOR NAV MENU */
ul.menu a {
    font-family: Verdana;
    font-size: 15px;
    font-weight: normal;
}

/* CHANGES THE LOOK OF COMING SOON PAGE */
.coming-soon-page .col-md-6.d-none.d-md-block {
    display: block !important;
}

/** Display newsletter image on mobile */
@media (max-width: 767px) {
.newsletter-popup .modal-dialog .newsletter-popup-bg {
    display: block !important;
    width: 100%;
}
}

/** Increase logo height on mobile */
@media (max-width: 1199px) {
    .header-items-mobile.header-items-mobile--left, .header-items-mobile.header-items-mobile--right {
        width: 20%;
    }

    .header-items-mobile.header-items-mobile--center {
        width: 60%;
        justify-content: center;
    }

    .header-items-mobile.header-items-mobile--center .logo img {
        max-height: none !important;
        height: 70px;
    }
}
/** Fix to make the Download App BG Image look good on mobile version */
@media (max-width: 768px) {
.widget-mobile-apps {
    background-position: top;
    background-size: cover;
}
}