/* =================   ARROWS POINTED DOWN   ================= */

.arrow_box_down {
	position: relative;
	background: #ffffff;
	border: 1px solid #000000;
}
.arrow_box_down:after, .arrow_box_down:before {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.arrow_box_down:after {
	border-color: rgba(171, 171, 171, 0);
	border-top-color: #ffffff;
	border-width: 5px;
	margin-left: -5px;
}
.arrow_box_down:before {
	border-color: rgba(171, 171, 171, 0);
	border-top-color: #000000;
	border-width: 6px;
	margin-left: -6px;
}

/* =================   ARROWS POINTED RIGHT   ================= */
.arrow_box_right {
	position: relative;
	background: #ffffff;
	border: 1px solid #000000;
}
.arrow_box_right:after, .arrow_box_right:before {
	left: 100%;
	top: 50%;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.arrow_box_right:after {
	border-color: rgba(255, 255, 255, 0);
	border-left-color: #ffffff;
	border-width: 14px;
	margin-top: -14px;
}
.arrow_box_right:before {
	border-color: rgba(0, 0, 0, 0);
	border-left-color: #000000;
	border-width: 15px;
	margin-top: -15px;
}