/**
 * PrestaShop module created by VEKIA, a guy from official PrestaShop community ;-)
 *
 * @author    VEKIA PL MILOSZ MYSZCZUK VATEU PL9730945634
 * @copyright 2010-2026 VEKIA
 * @license   This program is not free software and you can't resell and redistribute it
 * @author    https://mypresta.eu/
 *
 */

.myfreepopup-root {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.myfreepopup-root[hidden] {
    display: none !important;
}

.myfreepopup-overlay {
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0.7;
}

.myfreepopup-modal {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow: auto;
    background: #fff;
    color: #111;
    padding: 28px 24px 24px;
    box-sizing: border-box;
}

.myfreepopup-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.myfreepopup-close:before,
.myfreepopup-close:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 8px;
    width: 16px;
    height: 2px;
    background: #111;
}

.myfreepopup-close:before {
    transform: rotate(45deg);
}

.myfreepopup-close:after {
    transform: rotate(-45deg);
}

.myfreepopup-body {
    font-size: 15px;
    line-height: 1.5;
}

.myfreepopup-body img {
    max-width: 100%;
    height: auto;
}
