/**
 * 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: -23px;
}

.shipping-amount-display .truck i {
    display: inline-block;
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

/* Product page */
.shipping-amount-display.product {
    padding: 20px 20px 10px 20px;
}

.shipping-amount-display.product p.text {
    float: none;
}

/* Block cart */
.shipping-amount-display.cart {
    padding: 0;
}

.shipping-amount-display.cart p.text {
    float: none;
    font-size: 12px;
}

.shipping-amount-display .price {
    font-size: 12px;
}

.shipping-amount-display.product .price {
    font-size: 14px;
}

.shipping-amount-display.checkout .price {
    font-size: 16px;
}

/* Free shipping text */
.free-shipping-text i {
    font-size: 16px;
}