.gift{
    width: 200px;
    height: 200px;
    padding: 10px;
    border-radius: 15px;
    position: fixed;
    right: 10px;
    bottom: 10px;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.2);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-size: cover;
    background-repeat: no-repeat;
    backdrop-filter: blur(300);
    box-shadow: 0 0 20px #00000052;
    z-index: 3;
    display: none;
}

.gift .icon{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gift .icon svg{
    width: 50%;
}

.gift_text{
    width: 100%;
    text-align: center;
    font-family: "Roboto Slab","Andika",sans-serif;
    font-weight: 400;
    font-size: 14px;
}

.gift_text span{
    font-size: 16px;
    font-weight: 600;
    color:var(--red);
}

@media (max-width: 1300px) {
    .gift{
        width: 150px;
        height: 150px;
    }
    .gift_text{
        font-size: 12px;
    }

    .gift_text span{
        font-size: 14px;
    }
}

@media (max-width: 1200px) {
    .gift{
        width: 100px;
        height: 100px;
    }
    .gift_text{
        font-size: 10px;
    }

    .gift_text span{
        font-size: inherit;
    }

}

@media (max-width: 540px) {
    .gift{
        bottom: 60px;
    }
}