.arrow_box {
	position: relative;
	background: #d0e3f9;
    padding: 1em;
	border: 4px solid #a0c7f2;
    border-radius: 10px;
    min-height: 110px;
}
.arrow_box:after, .arrow_box:before {
	right: 100%;
	top: 50%;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.arrow_box:after {
	border-color: rgba(136, 183, 213, 0);
	border-right-color: #d0e3f9;
	border-width: 30px;
	margin-top: -30px;
}
.arrow_box:before {
	border-color: rgba(194, 225, 245, 0);
	border-right-color: #a0c7f2;
	border-width: 36px;
	margin-top: -36px;
}