/**
 * Bolt magento plugin
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Open Software License (OSL 3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/osl-3.0.php
 *
 * @category   Bolt
 * @package    Bolt_Boltpay
 * @copyright  Copyright (c) 2016-2020 Bolt Financial, Inc (https://www.bolt.com)
 * @license    http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
 */

#boltpay-minicart-button-wrapper {
    min-height: 57px;
}
#boltpay-minicart-button-wrapper .bolt-loader-disabled {
    display: none;
}
#bolt-minicart-loading {
    margin: 0 auto;
    text-align: center;
    position: absolute;
    top: 0;
    z-index: 2;
    left: 0;
    right: 0;
    background: #fff;
    padding: 7% 0 4px;
    opacity: .93;
}
@keyframes loadingBolt {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.3;

    }
}
#bolt-minicart-loading img {
    width: 35px;
    display: inline-block;
    animation: loadingBolt 2s infinite linear;
}