/**
 * 2012-2019 INNERCODE
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the EULA (End User License Agreement)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * https://www.innercode.lt/ps-module-eula.txt
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to info@innercode.lt so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade PrestaShop to newer
 * versions in the future.
 *
 * @author    Innercode
 * @copyright Copyright (c) 2012 - 2019 INNERCODE, UAB. (https://www.innercode.lt)
 * @license   https://www.innercode.lt/ps-module-eula.txt
 * @package   freeshippingamountdisplay
 * @site      https://www.innercode.lt
 */

.shipping-amount-display p.text {
    color: #555454;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    float: right;
}

.shipping-amount-display .price {
    color: #fe4669;
    font-size: 15px;
    font-weight: bold;
 }

.shipping-amount-display .line {
    display: block;
    height: 4px;
    background: #d6d4d4;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.shipping-amount-display .filled-line {
    display: block;
    background: #fe4669;
    height: 4px;
    width: 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.shipping-amount-display .truck {
    float: right;
    margin-top: -19px;
}

.shipping-amount-display .truck i {
    display: inline-block;
    font-size: 22px;
}

/* Product page */
.shipping-amount-display.product p.text {
    float: none;
}

.shipping-amount-display.product.has-free-shipping {
    margin-top: 20px !important;
}

/* Checkout */
.shipping-amount-display.checkout .inner {
    width: 100%;
    padding: 0;
    text-align: center !important;
}

.shipping-amount-display.checkout p.text {
    float: none;
    margin-bottom: 0;
}

.shipping-amount-display.checkout .price {
    font-size: 16px;
}

/* Free shipping text */
.free-shipping-text i {
    font-size: 16px;
}