.popup-homepage-new{
    position: relative;
    background-color: transparent;
    background: transparent;
    &::before {
        position: absolute;
        content: '';
        top: -1px;
        left: -1px;
        right: -1px;
        bottom: -1px;
        border-radius: 20px;
        border: 0.03020833vw solid;
        background-image: linear-gradient(180deg, #ffffff -74.36%, #00000000 75.85%);
        z-index: -9;
        width: calc(100% + 2px);
        height: calc(100% + 2px);
    }
    &::after {
        position: absolute;
        content: '';
        top: 1px;
        left: 1px;
        right: 1px;
        bottom: 1px;
        border-radius: 20px;
        background-image: linear-gradient(139deg, #222 4.64%, #000 93.85%);
        z-index: -9;
        width: 100%;
        height: 100%;
    }

    display: flex;
    justify-content: space-between;
    gap: 70px;

    background-color: #222222;
    .pop-up__content{
        padding: 0;
        order:2;
        width: 100%;
    }
    .pop-up__qr-code span{
        font-size: 17px;
    }
    .pop-up__content__header{
        color:white;
        font-size: 34px;
    }
    .pop-up__content__text{
        font-size: 19px;
        color:white;
        margin-bottom: 0;
    }
    .pop-up__qr-code__text{
        color:white;
    }
    .pop-up__app-stores{

    }
    .pop-up__app-stores__single-store a{
            grid-template-columns: unset;
    }
        .pop-up__app-stores__single-store:not(:last-child) {
        margin-bottom: inherit;
        margin-right: 20px;
    }
    .pop-up__qr-code img{
        width: 150px;
        height: 150px;
        object-fit: contain;
    }
    .close-popup-homepage-new{
        position: absolute;
        top: 20px;
        right: 20px;
        cursor: pointer;
        background: transparent;
        border: none;
        
    }
}
.popup-homepage-new--overlay{
    display: none;
    position: fixed;
    background: #00000085;
    z-index: 9999999999;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
}

.disable-background:before {
    display: none;
    /* background: #00000080;
    content: " ";
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000; */
}

.pop-up__close {
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    border: none;
    position: absolute;
    top: 1.2rem;
    right: 1.35rem;
    min-width: 2.4rem;
    max-width: 2.4rem;
    width: 2.4rem;
    min-height: 2.4rem;
    max-height: 2.4rem;
    height: 2.4rem;
    background-image: url(assets/images/icons/icon-cancel.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
    -webkit-transition: opacity 0.15s ease;
    transition: opacity 0.15s ease;
}

.pop-up__close:hover,
.pop-up__close:focus-visible {
    opacity: 0.8;
}