/**
* 2008-2024 Prestaworld
*
* NOTICE OF LICENSE
*
* The source code of this module is under a commercial license.
* Each license is unique and can be installed and used on only one website.
* Any reproduction or representation total or partial of the module, one or more of its components,
* by any means whatsoever, without express permission from us is prohibited.
*
* DISCLAIMER
*
* Do not alter or add/update to this file if you wish to upgrade this module to newer
* versions in the future.
*
* @author    prestaworld
* @copyright 2008-2024 Prestaworld
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0
* International Registered Trademark & Property of prestaworld
*/
#presta_avp_popup {
    display: none;
}

.presta_avp_wrapper {
    z-index: 999999;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.presta_avp_popup_box {
    padding: 1rem;
    max-width: 600px;
}

.presta_avp_popup_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.presta_img_container {
    margin-bottom: 1rem;
    height: 100px;
    width: 100px;
}

.presta_img_container img {
    height: 100%;
    width: 100%;
}

.presta_avp_title {
    font-size: 1.2rem;
}

.presta_avp_description {
    font-size: 1rem;
}

.presta_avp_error_msg {
    display: none;
    font-style: italic;
    color: #ff0000;
    font-size: 0.9rem;
    /* text-align: start; */
}

.presta_avp_additional_info {
    font-size: 0.85rem;
}

.presta_avp_flex {
    display: flex;
    gap: 0.3rem;
}

.presta_avp_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.presta_avp_input {
    text-align: center;
}

.presta_avp_input:focus {
    outline: none;
}

@media (max-width:500px) {
    .presta_img_container {
        height: 75px;
        width: 75px;
    }
}
