/**
* 2010-2025 ADPixNet | WebMastering
*
* 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 or ThirtyBees to newer
* versions in the future. If you wish to customize PrestaShop or ThirtyBees for your
* needs please refer to https://www.prestashop.com or https://www.thirtybees.com for more information.
*
*
* @Module		Age Control
* @Description	Make your PrestaShop store compliant with your country adult content law.
* @Version		1.0.5
* @Copyright	ADPixNet | WebMasterring <https://adpixnet.com/>
* @Addons		PrestaShop - ThirtyBees Developments <https://addons.adpixnet.com/>
* @support		Support Requests <https://admin.adpixnet.com/forms/ticket?styled=1&with_logo=1>
* @license		Valid for 1 website (or project) for each purchase of license International Registered 
*				Trademark & Property of ADPixNet. More information on <https://addons.adpixnet.com/content/1-politique-de-license>
*/

#agecontrol_box {
    z-index: 99999;
}

#agecontrol_outer {
    z-index: 9999;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
}

#agecontrol_inner {
    z-index: 10000;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-top: -207px;
    margin-left: -190px;
    width: 380px;
    padding-top: 20px;
}

#agecontrol_inner > div {
    opacity: 0;
}

#agecontrol_inner_box {
    z-index: 10001;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-top: -207px;
    margin-left: -190px;
    width: 380px;
    padding-top: 20px;
    border-radius: 3px;
}

#agecontrol_inner_box div p {
    color: white;
}

.age_text p{
    font-family: Helvetica;
    text-align: center;
    font-weight: lighter;
    font-size: 21px;
    width: 77%;
    margin: 0 auto;
    line-height: 27px;
    margin-bottom: 17px;
}

.age_buttons {
    margin: 0 auto 31px;
    width: 345px;
}

#confirmb {
    font-size: 16px;
    letter-spacing: .065em;
    padding: 10px 14px;
    border: 3px solid white;
    background: none;
    color: white;
    margin: 0;
    text-transform: uppercase;
    text-decoration: none;
    width: 165px;
}

#confirmb:hover {
    color: #8FDB99;
    border-color: #8FDB99;
}

#declineb {
    font-size: 16px;
    letter-spacing: .065em;
    padding: 10px 13px;
    border: 3px solid white;
    background: none;
    color: white;
    margin: 0;
    margin-left: 10px;
    text-transform: uppercase;
    text-decoration: none;
    width: 165px;
}

.age_day {
    text-align: center;
    font-size: 16px;
    letter-spacing: .065em;
    padding: 10px 14px;
    border: 2px solid white;
    background: none;
    color: white;
    margin: 0;
    margin-left: 10px;
    text-transform: uppercase;
    text-decoration: none;
    width: 80px;
    height: 45px;
}

.age_month {
    text-align: center;
    font-size: 16px;
    letter-spacing: .065em;
    padding: 10px 14px;
    border: 2px solid white;
    background: none;
    color: white;
    margin: 0;
    margin-left: 10px;
    text-transform: uppercase;
    text-decoration: none;
    width: 80px;
    height: 45px;
}

.age_year {
    text-align: center;
    font-size: 16px;
    letter-spacing: .065em;
    padding: 10px 14px;
    border: 2px solid white;
    background: none;
    color: white;
    margin: 0;
    margin-left: 10px;
    text-transform: uppercase;
    text-decoration: none;
    width: 80px;
    height: 45px;
}

.age_buttons input::-webkit-input-placeholder {
    color: white !important;
}
 
.age_buttons input:-moz-placeholder { 
    color: white !important;  
}
 
.age_buttons input::-moz-placeholder { 
    color: white !important;  
}
 
.age_buttons input:-ms-input-placeholder {  
    color: white !important;  
}

#declineb:hover {
    color: #DB8F8F;
    border-color: #DB8F8F;
}

@media(max-width: 430px) {
    #agecontrol_inner {
        width: 300px;
        margin-left: -150px;
    }
    
    #agecontrol_inner_box {
        width: 300px;
        margin-left: -150px;
    }
    
    #confirmb {
        width: 110px;
    }
    
    #declineb {
        width: 110px;
    }
    
    .age_buttons {
        width: 234px;
    }
}