/**
* 2007-2021 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-2021 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.
*/

.imei_search {
    position: relative;
}

.imei_search .imei_info {
    cursor: pointer;
    display: inline-block;
}

.imei_search .imei_info::before {
    content: '';
    background-color: #4D4D4D;
    -webkit-mask: url('../img/info.svg') no-repeat 50% 50%;
    mask: url('../img/info.svg') no-repeat 50% 50%;
    -webkit-mask-size : contain;
    mask-size: contain;
    background: url('../img/info.svg') no-repeat;
    background-size: 100%;
    width: 21px;
    height: 21px;
    display: block;
    margin: 5px auto 10px;
    fill: #4D4D4D;
    color: #4D4D4D;
}


.imei_search .imei_info:hover::before{
    background-color: #00829c;
    fill: #00829c;
    color: #00829c;
}

.info-bull {
    position: absolute;
    right: 75px;
    top: 40px;
    background-color: #F0F0F0;
    border: 2px solid #4D4D4D;
    border-radius: 16px;
    color: #4D4D4D;
    padding: 30px;
    max-width: 220px;
    z-index: 1;
}

.info-bull .cross {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
}

.info-bull .cross::before {
    content: '';
    background-color: #4D4D4D;
    -webkit-mask: url('../img/times-circle-regular.svg') no-repeat 50% 50%;
    mask: url('../img/times-circle-regular.svg') no-repeat 50% 50%;
    -webkit-mask-size : contain;
    mask-size: contain;
    background: url('../img/times-circle-regular.svg') no-repeat;
    background-size: 100%;
    width: 21px;
    height: 21px;
    display: block;
    margin: 5px auto 10px;
    fill: #4D4D4D;
    color: #4D4D4D;
}


.info-bull .cross:hover::before {
    background-color: #00829c;
    fill: #00829c;
    color: #00829c;
}

