/**
 * 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_StoreCredit
 * @copyright   Copyright (c) Mageplaza (https://www.mageplaza.com/)
 * @license     https://www.mageplaza.com/LICENSE.txt
 */

.tooltip-credit {
    display: block;
    position: absolute;
    padding: 0;
    margin: 1px 5px 0;
    border-top: none !important;
}

.tooltip-credit .field-tooltip-action:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 20px;
    line-height: inherit;
    color: #bbbbbb;
    content: '\e623';
    font-family: 'luma-icons';
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
}
.tooltip-credit .field-tooltip-action:hover:before {
    color: #000;
}

.tooltip-credit:hover .tooltip-message {
    visibility: visible;
    opacity: 1;
}

.tooltip-message {
    position: absolute;
    right: 0;
    visibility: hidden;
    width: 15rem;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 10px;
    z-index: 1;
    margin-left: 10px;
    opacity: 0;
    transition: opacity 0.3s;
    display: block;
}