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

#iqitpopupwheretobuy-overlay {
    background-color: #000;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 5103;
    opacity: 0;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    visibility: hidden;
}

#iqitpopupwheretobuy {
    background-color: #fefefe;
    position: fixed;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 5104;
    width: 400px;
    height: 400px;
    margin: auto;
    opacity: 0;
    visibility: hidden;
    transition: transform .3s ease-out, opacity .3s ease, visibility .3s ease;
    -ms-transform: translate(-50%, -75%);
    -webkit-transform: translate(-50%, -75%);
    transform: translate(-50%, -75%);
    left: 50%;
    top: 50%;
}
#iqitpopupwheretobuy.showed-iqitpopupwheretobuy {
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    opacity: 1;
    visibility: visible;
}


#iqitpopupwheretobuy .iqitpopupwheretobuy-content {
    padding: 15px;
}

#iqitpopupwheretobuy .iqitpopupwheretobuy-close {
    height: 25px;
    top: -25px;
    right: 0px;
    position: absolute;
    background: #D6D6D6;
    padding-right: 25px;

}

#iqitpopupwheretobuy .iqit-close-checkbox, #iqitpopupwheretobuy .iqit-close-popup {
    display: inline-block;
}

#iqitpopupwheretobuy .iqit-close-checkbox {
    vertical-align: middle;
    padding: 5px;
    font-size: 10px;
}

#iqitpopupwheretobuy .iqit-close-checkbox > div {
    display: inline-block;
    vertical-align: middle;
}

#iqitpopupwheretobuy .iqit-close-popup {
    background: #000;
    width: 25px;
    height: 25px;
    cursor: pointer;
    z-index: 2;
    text-align: center;
    line-height: 25px;
    position: absolute;
    top: 0px;
    right: 0px;
}

#iqitpopupwheretobuy .cross {
    display: block;
}

#iqitpopupwheretobuy .cross:before {
    content: "\f00d";
    display: block;
    font-family: "FontAwesome";
    font-size: 18px;
    color: #fff;
}

#iqitpopupwheretobuy-overlay.showed-iqitpopupwheretobuyo {
    opacity: 0.4;
    visibility: visible;
}
#iqitpopupwheretobuy .iqitpopupwheretobuy-content-wrapper{
    max-height: 100%;
    overflow-y: auto;
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    #iqitpopupwheretobuy {
        width:100% !important;
        z-index: 999999 !important;
        transform: translate(-50%, -50%) scale(1);
    }
    #iqitpopupwheretobuy .iqitpopupwheretobuy-close {
        top: 0px !important;
    }
}