/**
* Loulou66
* LpsPasswordSecurity module for 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
*
* 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    Loulou66.fr <contact@loulou66.fr>
*  @copyright loulou66.fr
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*/
.lpspasswordsecurity {display : inline-block;}
.lpspasswordsecurity_wrapper {
    position: relative;
    display: table;
    width: 100%;
}
.lpspasswordsecurity .lpspasswordinfo {
    font: 13px/16px sans-serif;
    position: absolute;
    z-index: 1000;
    display: none;
    width: 100%;
    top: -225px;
}
.lpspasswordsecurity .lpspasswordinfo::after {
    content: '';
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #23a86d;
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
}
.lpspasswordsecurity .lpspasswordinfo .lpspaswword_box_info {
    -webkit-box-shadow: 0 2px 10px rgb(0 0 0 / 20%);
    -moz-box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    box-shadow: 0 2px 10px rgb(0 0 0 / 20%);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 10px;
    background: #FFFFFF;
}
.lpspasswordsecurity .lpspasswordinfo .lpspaswword_box_info .lpspaswword_box_message {
    background-color: #23a86d;
    color: #f1f1f1;
    padding: 10px;
    white-space: initial;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    text-align: center;
}
.lpspasswordsecurity .lpspasswordinfo .lpspaswword_box_info .lpspaswword_box_check ul {
    margin-top: 10px;
    margin-bottom: 0;
}
.lpspasswordsecurity .lpspasswordinfo .lpspaswword_box_info .lpspaswword_box_check li {
    list-style: none;
    padding: 3px;
}
.lpspasswordsecurity .lpspasswordinfo .lpspaswword_box_info .lpspaswword_box_check li span {
    background-color: #f1f1f1;
    border: 3px solid #23a86d;
    width: 15px;
    height: 15px;
    display: block;
    float: left;
    border-radius: 100%;
    margin-right: 15px;
}
.lpspasswordsecurity .lpspasswordinfo .lpspaswword_box_info .lpspaswword_box_check li span.valid {
    background-color: #23a86d
}
.lpspasswordsecurity .lpspasswordinfo .lpspaswword_box_info .lpspaswword_box_check li span.invalid {
    background-color: #f1f1f1
}
.lpspasswordsecurity .lpspasswordfield {
    position: relative;
    z-index: 2;
    background: transparent!important;
    color: #000000;
    float: left;
}
.lpspasswordsecurity .lpspasswordmeter {
    position: absolute;
    width: 100%;
    height: 100%;
}
.lpspasswordsecurity .lpspasswordmeter > div {
    width: 0%;
    height: 100%;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.lpspasswordsecurity .lpspawwordveryweak {
    background-color: #dc3545;
    width: 25% !important;
}
.lpspasswordsecurity  .lpspawwordweak {
    background-color: #fd7e14;
    width: 50% !important;
}
.lpspasswordsecurity  .lpspawwordmedium {
    background-color: #ffc107;
    width: 75% !important;
}
.lpspasswordsecurity  .lpspawwordstrong {
    background-color: #28a745;
    width: 100% !important;
}
.lpspasswordsecurity span.input-group-btn {
    margin: 10px 0;
    display: flex !important;
    width: 100% !important;
    flex-direction: row;
}
.lpspasswordsecurity span.input-group-btn .btn {
    flex: 1;
    justify-content: center;
}
.lpspasswordsecurity span.input-group-btn .btn.lpsGeneratePassword {
    margin: 0 10px;
}
.lpspasswordconfirm span.input-group-btn {display:  block; margin-top: 10px;}
.lpspasswordsecurity span .btn,
.lpspasswordconfirm span .btn {
    border: 0;
    box-shadow: none;
    color: #fff;
    font-size: .6875rem;
    font-weight: 400;
    text-transform: uppercase !important;
    background: #7a7a7a;
}
.lpsPasswordError {margin: 10px 0 0 0 !important;}
.lpsPasswordError span {margin: 0; display: block !important;}
.lpspasswordsecurity .lpspasswordfield::-ms-reveal,
.lpspasswordsecurity .lpspasswordfield::-ms-clear {
    display: none !important;
}
.form-control.lpspasswordfield{
    width: 100%;
}