/**
 * Mageplaza
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Mageplaza.com license that is
 * available through the world-wide-web at this URL:
 * https://www.mageplaza.com/LICENSE.txt
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade this extension to newer
 * version in the future.
 *
 * @category    Mageplaza
 * @package     Mageplaza_PromoBar
 * @copyright   Copyright (c) Mageplaza (https://www.mageplaza.com/)
 * @license     https://www.mageplaza.com/LICENSE.txt
 */


.mppromobar-style {
    position: relative;
    box-sizing: border-box;
    text-align: center;
    width: 100%;
    transition-delay: 0.7s;
    transition-property: z-index;
    z-index: 20;
}
#mppromobar-fixed-page-top {
    position: sticky;
    top: 0;
    z-index: 35;
}
#mppromobar-fixed-page-bottom {
    position: sticky;
    bottom: 0;
    z-index: 35;
}
#mppromobar-fixed-page-top.cart-opened,
#mppromobar-fixed-page-bottom.cart-opened{
    transition-delay: 0s;
    z-index: 30;
}
.mppromobar-style .content-template {
    padding: 1rem 2rem;
}
.mppromobar-style .content-template a {
    text-decoration: none;
}
.mppromobar-style .content-template .mppromobar_url_text {
    padding: .5rem .5rem;
    border-radius: 3px;
}
.mppromobar-style .content-template .mppromobar-close-btn {
    font-size: 20px;
    float: right;
    cursor: pointer;
}
.mppromobar-style .content-template .mppromobar-close-btn:hover {
    font-weight: bold;
}

