.gift__wrap {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 25px;
    background-color: var(--page-overlay-color);
    z-index: 1000;
}

.gift__wrap .gift__popup {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 772px;
    min-height: 412px;
    padding: 40px 50px;
    border-radius: 18px;
    background-color: #000;
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    background-image: url(../img/gift_img.png);
    overflow: hidden;
}

.gift__wrap .gift__txt {
    max-width: 400px;
}

.gift__wrap .gift__title {
    color: #fff;
    font-size: var(--title-size-lg);
    line-height: 1;
}

.gift__wrap .gift__description {
    margin-top: 15px;
    margin-bottom: 0;
    color: #fff;
}

.gift__wrap .page__btn {
    margin-top: 40px;
}

.gift__wrap .gift__close {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 15px;
    inset-inline-end: 15px;
    border: none;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    background-image: url(../img/close.svg);
    outline: none;
}

@media (max-width: 680px) {
    .gift__wrap .gift__popup {
        background-position: 38vw bottom;
        background-size: cover;
    }
}

@media (max-width: 520px) {
    .gift__wrap .gift__popup {
        min-height: 360px;
        padding: 30px 25px;
    }
}
