.action-bar {
	display: block;
	position: fixed;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	padding: 0px;
	margin: 0px;
	box-shadow: 0px 5px 25px rgba(40, 40, 40, 0.5);
	background-color: transparent;
	border-radius: 8px;
    z-index: 3;
	transition: 300ms all;
}

.action-bar .btn {
	display: inline-block;
	padding: 15px 30px;
	margin: 0px;
	margin-right: -5.5px;
	background-color: #ccc;
	font-size: 15px;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
	border-radius: 0px;
	transition: 250ms;
}

.action-bar .btn:first-of-type {
	border-radius: 8px 0px 0px 8px;
}
.action-bar .btn:last-of-type {
	border-radius: 0px 8px 8px 0px;
}

.action-bar .btn:hover {
	border-radius: 8px;
	transform: scale(1.07);
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}

/* BTN Colours */

.action-bar .btn:nth-child(1) {
	background-color: #00B4CC;
}

.action-bar .btn:nth-child(2) {
	background-color: var(--cd-color-red);
}

.action-bar .btn:nth-child(3) {
	background-color: var(--cd-color-purple);
}
