.ls-popup-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

.ls-popup {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 30%;
    width: 365px;
}

.ls-popup .logo {
    background-image: url("https://cdn.lasourisscooters.nl/la-souris/images/lasouris-logo.svg");
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    height: 48px;
    position:relative;
    width: 200px
}

.ls-popup-close.ls-icon:after {
    content: '\f00d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    height: 30px;
    width: 30px;
    color: #fff;
}

@media (max-width: 1024px) {
    .ls-popup {
        max-width: 40%;
    }
}

@media (max-width: 768px) {
    .ls-popup {
        max-width: 80%;
    }
}

@media (max-width: 280px) {
    .ls-popup {
        max-width: 93%;
        width: 100%;
    }
}