.gifts-popup-block {
    z-index: 1060;
    background-color: white;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media screen and (min-width: 992px) {
    .gifts-popup-block {
        position: fixed;
        width: 70vw;
        height: 70vh;
        left: 15vw;
        top: 15vh;
    }
}

@media screen and (max-width: 991px) {
    .gifts-popup-block {
        position: fixed;
        width: calc(100vw - 60px);
        height: 75vh;
        left: 0;
        bottom: 0;
    }
}

.gifts-popup-block .gifts-popup-title {
    font-weight: bold;
    font-size: 18px;
}

.gifts-popup-block .gifts-popup-sets {
    display: flex;
    flex-direction: column;
    gap: 50px;
    overflow-y: auto;
    overflow-x: hidden;
    overflow-wrap: break-word;
}

.gifts-popup-block .gifts-popup-sets .gifts-set-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gifts-popup-block .gifts-popup-sets .gifts-set-block .gifts-set-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
}

.gifts-popup-overlay {
    background-color: black;
    opacity: 0.8;
    top: 0;
    bottom: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1050;
}

.span-exit {
    cursor: pointer;
    position: absolute;
    top: 30px;
    right: 30px;
}
