.popup {
    display: none;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    transition: opacity .5s ease
}

.popup.show {
    opacity: 1
}

.popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #000;
    opacity: .8;
}

.popup__wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.popup__close {
    position: absolute;
    top: -35px;
    right: -41px;
    width: 40px;
    height: 40px;
    z-index: 1000;
    background-color: white;
    border-radius: 50%;
    padding: 8px;
    cursor: pointer;
}

.popup__close svg {
    width: 100%;
    height: auto
}

.popup__item {
    display: none;
    width: 720px;
    height: 360px;
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup__item.show {
    display: flex;
}

.nectar-global-section.before-footer {
    z-index: 9;
}

@media only screen and (min-width: 851px) and (max-width: 1000px) {

}

@media only screen and (min-width: 1001px) and (max-width: 1099px) {

}

@media only screen and (max-width: 800px) {
    .popup__item {
        width: 400px;
    }
}