.bubble {
    box-sizing: border-box;
    position: relative;
    border-radius: 15px;
    padding: 30px;
    margin: 15px;
    border: 1px solid #d1d1d1;
	min-width: 190px;
}

.bubble-left:after {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	top: 20px;
	left: -40px;
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
	border-left: 20px solid transparent;
	border-right: 30px solid white;
}

.bubble-right:after {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	top: 40px;
	right: -40px;
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
	border-right: 20px solid transparent;
	border-left: 30px solid white;
}

.bubble-top:after {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	top: -40px;
	right: 240px;
	border-top: 20px solid transparent;
	border-bottom: 30px solid white;
	border-right: 20px solid transparent;
	border-left: 20px solid transparent;
}

.bubble-bottom-right:after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: 20px;
    border-bottom: 20px solid transparent;
    border-top: 30px solid #e5e5e5;
    border-left: 30px solid transparent;
}


.bubble-bottom-left:after {
    content: '';
    position: absolute;
    bottom: -50px;
	left: 35px;
    border-bottom: 20px solid transparent;
    border-top: 30px solid #e5e5e5;
    border-right: 30px solid transparent;
}


.display_flex {
    display: flex;
}


.bubble2 {
    position: relative;
    top: -60px;
    left: -45px;
}