.container-widget {
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    z-index: 20000;
    display: flex;
    cursor: pointer;
    justify-content: center;
    align-items: center;
}

.container-widget img {
    width: 100%;
}

.box {
    position: absolute;
    right: 50px;
    bottom: 110px;
    width: 400px;
    height: 80vh;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    border: 2px solid rgb(0, 190, 87);
    z-index: 1000;
    display: none;
}

.box::after{
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 0;
	height: 0;
	border: 14px solid transparent;
	border-top-color: #00be57;
	border-bottom: 0;
	border-right: 0;
	margin-right: -3px;
    margin-bottom: -15px;
}