#lp div.center {
    margin-inline: auto;
    max-width: 750px;
    position: relative;
}

#lp .store__line {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1em;
    margin: 1em;
}

#lp .floating {
    position: fixed;
    z-index: 99;
    bottom: 0;
    left: 0;
    width: 100%;
}

#lp .popup-con {
    padding-block: 5em;
}
#lp .popup-con ul {
    display: grid;
    grid-template-columns: 100%;
    gap: 1em;
}

@media screen and (max-width: 768px) {
    #lp .store__line {
        grid-template-columns: 1fr;
    }
}