/**
* 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 { line-height: 32px;}
.pri-response.has-success { color: #36943e; border: 1px solid; padding: 5px 10px; }
.pri-response.has-error { color: #d02a2c; border: 1px solid; padding: 5px 10px; }
.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 {
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    width: 100%;
    transition: all 500ms cubic-bezier( 0.17, 0.04, 0.03, 0.94 );
}

.pri-modal {
    background: rgba( 0, 0, 0, 0.5 );
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
}

.pri-block-content {
    padding-top: 20px;
    background: #fbfbfb;
    border: solid 1px #d2d0d0;
}

.pri-modal .pri-block-content {
    background: #fff;
    left: 50%;
    position: absolute;
    top: 50%;
    width: 90%;
    transform: translate( -50%, -50% );
}

.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;
}

.pri-response-div {
    width: 100%;
    margin-bottom: 20px;
    font-weight: bold;
}

button.btn.btn-primary.button-sm.buttonProductInfoRequest {
    width: 25%;
    padding: 10px 0;
    font-size: 20px;
    text-transform: capitalize;
    transition: background-color 0.35s ease-in-out;
}
.buttonProductInfoRequest:hover(), .buttonProductInfoRequest:active()
{
    background-color:  #f1071b;
}


.form-control
{
    box-shadow: 0px 0px 2px 1px transparent;
    transition:box-shadow 0.35s ease-in-out,border 0.35s ease-in-out; 
    border: 1px solid transparent !important;
}

.form-control:focus, .input-group.focus {
    /*outline: .0em solid #e10f21 !important;*/
    outline:none;
    box-shadow: 0px 0px 2px 1px #e10f21;
    border: 1px solid #e10f21 !important;
}

@media(min-width: 768px) {
    .pri-modal .pri-block-content {
        width: 30%;
    }

}


@media (max-width: 991px) {
    .buttonProductInfoRequest {
        width: 100%;
        margin-bottom: 15px;
    }

    button.btn.btn-primary.button-sm.buttonProductInfoRequest {
        width: 100%;
    }
    
    .pri-block-content [for="pri-privacy"] {
        font-size: 0.7em;
    }
    
    span.pri-response.radiusSite.has-error {
        font-size: 13px;
    }
    
}
