/**
* 2018 Code4Life
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 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/afl-3.0.php
* 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 license@prestashop.com 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. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    Code4Life <supporto@code4life.it>
*  @copyright 2018 Code4Life
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/

/* CUSTOM */

.hidden { display: none; }

.pri-response { float: right; line-height: 32px; }
.pri-response.has-success { color: #36943e; }
.pri-response.has-error { color: #d02a2c; }
.pri-loader { background: rgba(0,0,0,0.1) url('/img/loader.gif') no-repeat center center; bottom: 0; display: none; left: 0; position: absolute; right: 0; top: 0; }

.pri-container {
	margin-bottom: 2rem;
	position: relative;
}

.pri-container-box {
    padding: 1rem 1.5rem;
	box-shadow: 2px 2px 8px 0 rgba(0,0,0,.2);
	background: #fff;
}

.pri-container-box > a > .fa { margin-right: 1rem; }

.pri-container-box .pri-collapse .pri-block-content {
    background: #fff;
    border: none;
}

.pri-container-box .pri-collapse .pri-block-close { display: none; }

.pri-block.active {
	opacity: 1;
	visibility: visible;
}

.pri-collapse.active {
	position: relative;
}

.pri-block {
	position: absolute;
	opacity: 0;
	overflow: hidden;
	visibility: hidden;
	width: 100%;
	transition: all 500ms cubic-bezier( 0.17, 0.04, 0.03, 0.94 );
	z-index: 99999;
}

.pri-modal {
	background: rgba( 0, 0, 0, 0.5 );
	bottom: 0;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
}

.pri-block-content {
	background: #fbfbfb;
	border: solid 1px #d2d0d0;
	padding: 20px;
}

.pri-modal .pri-block-content {
	background: #fff;
	left: 50%;
	position: absolute;
	top: 50%;
	width: 90%;
	transform: translate( -50%, -50% );
}
@media(min-width: 768px) {
	.pri-modal .pri-block-content {
		width: 30%;
	}
}

.pri-block-close {
	padding: 0 0 5px;
	overflow: hidden;
}

.pri-block-close a {
	float: right;
}

.pri-block-content [for="pri-privacy"] { font-size: 0.8em; }
.pri-block-content [for="pri-privacy"] > div {
	display: inline-block;
	vertical-align: middle;
}