/**
* PrestaPlus
*
* Module for Prestashop E-Commerce Software
*
* @author    Markus Engel <info@onlineshop-module.de>
* @copyright Copyright (c) 2019, Onlineshop-Module.de
* @license   commercial, see licence.txt
*/

/* Product Page */
.delivery-information {
	display: none;
}

/* Checkout */
#prestaplus-reassurance {
	margin-top: 2rem;
	display: none;
}

#prestaplus-reassurance li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

#prestaplus-reassurance li:last-child {
    border: 0;
}

#prestaplus-reassurance li .block-reassurance-item {
    display: flex;
    padding: 1rem 1.5rem;
}

#prestaplus-reassurance li .block-reassurance-item .h6 {
	margin: 0px;
}

#prestaplus-reassurance li .block-reassurance-item > span{
	    margin-right: 0.625rem;
}

#prestaplus-reassurance li .block-reassurance-item .h6 > p {
	margin: 0px;
    font-family: inherit;
    font-weight: 700;
    line-height: 1.1;
    color: inherit;
}

#prestaplus-reassurance li .block-reassurance-item  p {
	margin: 0px;
}

#cart #total_delivery_time_cart {
    position: relative;
    top: 8px;
}

/* Free shipping top badge */
#pp-free-shipping-top.pp-free-shipping-badge {
	display: inline-flex;
	align-items: center;
    justify-content: center;
	position: absolute;
	padding: 0px 20px;
	border-radius: 999px;
	font-weight: 700;
	color: #000;
	background: #ffffff;
	overflow: hidden;
	bottom: 5px;
	right: 0;
	font-size: 11px;
    min-width: 200px;
}
#pp-free-shipping-top.pp-free-shipping-badge.completed .pp-free-shipping-fill {
    background: #8E0000;
}
#pp-free-shipping-top.pp-free-shipping-badge.completed .pp-free-shipping-label {
    color: #fff;
}
#pp-free-shipping-top .pp-free-shipping-fill {
	position: absolute;
    min-width: 10%;
	left: 0;
	top: 0;
	height: 100%;
	background: #d29999;
	transition: width 0.25s ease;
	z-index: 0;
	overflow: hidden; /* to clip the gloss */
}
#pp-free-shipping-top .pp-free-shipping-fill .pp-free-shipping-gloss {
	position: absolute;
	right: 0;
	top: 0;
	width: 24px; /* thin overlay */
	height: 100%;
	background: linear-gradient(90deg, #d29999 0%, #ffffff 100%);
}
#pp-free-shipping-top .pp-free-shipping-label,
#pp-free-shipping-top .pp-free-shipping-rest {
	position: relative;
	z-index: 1;
}
#pp-free-shipping-top .pp-free-shipping-label {
	margin-right: 3px;
}
#pp-free-shipping-top .pp-free-shipping-rest {
	font-weight: 700;
}

/* Cart notice */
.pp-cart-freeshipping.notice {
	margin: 8px 0;
	padding: 12px;
	background: #dff0d8; /* light green */
	color: #2e6d2e;
	text-align: center;
	border-radius: 4px;
}

@media (max-width: 991px) {
	#pp-free-shipping-top.pp-free-shipping-badge {
        bottom: -9px;
        font-size: 8px;
        line-height: 5px;
        z-index: 99999;
        min-width: 125px;
        padding: 3px 0px;
	}
}
