/* quick fix to hide add to cart on related products */
.related-product-main .product-item-info .product-top .product-item-inner {
    display: none;
}

/* quick fix to hide add to cart (select all) on related products */
.block.related-product-main .block-actions {
    display: none;
}

.product-addto-links {
    display: none;
}

/* quick fix to hide add to cart on brand related products */
.products-grid .product-item-info .actions-link button.action.tocart.btn-cart {
    display: none;
}

/* quick fix to hide wishlist and compare on related products */
.products-related.products-grid .product-item-details> .product-detail-action {
    display: none;
}

/* quick fix to hide wishlist and compare on upsell products */
.products-upsell.products-grid .product-item-details> .product-detail-action {
    display: none;
}

.fme-hide-price-text {
    margin-bottom:20px;
    display: block;
}


/* Brute Force For Now to hide prices */
.price-box .price {
display: none;
opacity: 0;
}

.logged-in .price-box .price {
    display: block;
    opacity: 1;
    -moz-transition: opacity 2s;
    -ms-transition: opacity 2s;
    -o-transition: opacity 2s;
    transition: opacity 2s;
}

.product-info-main .price-box .price {
    display: none;
    opacity: 0;
}

.logged-in .product-info-main .price-box .price {
    display: block;
    opacity: 1;
    -moz-transition: opacity 2s;
    -ms-transition: opacity 2s;
    -o-transition: opacity 2s;
    transition: opacity 2s;
}


/* Qty increase / Decrease */

.field.qty {
    display: none;
    opacity: 0;
}

.logged-in .field.qty {
    display: block;
    opacity: 1;
    -moz-transition: opacity 2s;
    -ms-transition: opacity 2s;
    -o-transition: opacity 2s;
    transition: opacity 2s;
}




body.dark:not(.panel-popup) .hideprice-form-actions button {
    color: #000 !important
}

.modal-popup .modal-inner-wrap {
    background-color: #0f0f0f !important
}
.modal-content {
    padding: 15px;
    margin: 15px;
}


/* Breadcrumb Wrapper - Fix */

.catalog-product-view .breadcrumb-wrapper {
    background-color: #222;
}

.catalog-product-view h3 {
    margin-bottom:20px
}