.whContainer {
    position: fixed;
    bottom: 1em;
    right: 2em;
    z-index: 100;
    display: flex;
    justify-content: center;
    padding: 0 10px;
    background: #edecec;
    border-radius: 12px;
    box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.347);
}

.whText p {
    line-height: 25px;
}

.whBtn {
    align-items: flex-end;
}

.whBtn img {
    margin-left: 10px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
}

@media (max-width: 550px) {
    .whContainer {
        bottom: 0.6em;
        right: 1em;
        z-index: 2;
        width: 35vw;
        display: flex;
        justify-content: center;
        padding: 0 0.5em;
    }
    .whContainer p {
        font-size: 0.9em;
    }
    .whBtn {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .whBtn img {
        border-radius: 50%;
        width: 30px;
        height: 30px;
    }
}