/**
* 2007-2022 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-2022 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.
*/
.intl-tel-input,
.iti{
  width: 100%;
}

.valid-phone{
    position: absolute;
    right: 0;
    width: 2rem;
    height: 100%;
    display: none;
    align-items: center;
    z-index: 50;
}

.valid-phone.valid, .valid-phone.invalid {
    display: flex;
}

.valid-phone.valid::after{
    content: "✔️";
}

.valid-phone.invalid::after{
    content: "❌";
}
/* .select-country {
    display: flex;
    align-items: center;
    width: max-content;
    position: absolute;
    background: #f1f1f1;
    color: #7a7a7a;
    border: 1px solid rgba(0,0,0,.25);
    height: 100%;
}

.select-country_list--active {
    display: block;
    height: 250px;
    overflow-x: hidden;
    z-index: 1000;
}

.select-country_list {
    margin-bottom: 0;
    height: 100%;
}
.select-country_item {
    display: none;
    align-items: center;
    justify-content: space-evenly;
    width: 3.5rem;
}

.select-country_item.active{
    display: flex;
    height: 100%;
}

.select-country_list--active .select-country_item {
    display: flex;
}

input[name="phone"] {
    padding-left: 4rem;
}

input[name="phone-mobile"] {
    padding-left: 4rem;
} */