/**
* 2007-2017 PrestaShop
*
* 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    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2017 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/

/* CUSTOM */

.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: 10px;
    position: relative;
    background-color: #fbfbfb; 
    border: 1px #d6d4d4;
}

.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: 30%;
	transform: translate( -50%, -50% );
}

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

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