.whats-container {
    background: #00466E;
    position: fixed;
    right: 4vw;
    bottom: 4vh;
    padding: 8px 20px;
    font-weight: 600;
    cursor: pointer;
    color: white;
}

.whats-content {
    text-align: center;
    position: fixed;
    width: 189px;
    height: 45px;
    background: white;
    overflow: hidden;
    z-index: 10000;
    display: none;
    bottom: 9.3vh;
    right: 4vw;
    color: gray;
    padding-top: 10px;
    padding-bottom: 6px;
    -webkit-box-shadow: 0px -2px 2px 0px rgb(0 0 0 / 28%);
    -moz-box-shadow: 0px -2px 2px 0px rgb(0 0 0 / 28%);
    box-shadow: 0px -2px 2px 0px rgb(0 0 0 / 28%);
}

.whats-content img {
    width: auto;
    height: 100%;
    margin-right: 5px;
    padding-bottom: 6px;
}

.whats-container:hover+.whats-content {
    display: block;
    /*width: 190px;*/
}