/**
 * Copyright © 2020 Magenest. All rights reserved.
 * See COPYING.txt for license details.
 *
 * Magenest_ProductLabel extension
 * NOTICE OF LICENSE
 *
 * @category Magenest
 * @package  Magenest_ProductLabel
 */
.product-label-container {
    position: absolute;
    z-index: 1;
    max-width: 100%;
 }
.product-label-container.label-product-detail.hidden {
    display: none !important;
}

.product-label-container.label-product-detail {
    display: block !important;
}

.product-label-container.label-category-page.hidden {
    display: none !important;
}

.product-label-container.label-category-page {
    display: block !important;
}

.bot-mid {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}
.bot-right {
    bottom: 0;
    right: 0;
    text-align: right;
}
.bot-left {
    bottom: 0;
    left: 0;
    text-align: left;
}
.mid-left {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    text-align: left;
}
.mid-mid {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.mid-right {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    text-align: right;
}
.top-left {
    top: 0;
    left: 0;
    text-align: left;
}
.top-right {
    top: 0;
    right: 0;
    text-align: right;
}
.top-mid {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}