.btn {
	background: green;
	padding: 12px 0px;
	border-radius: 8px;
	background: var(--gbpc-green);
	background: linear-gradient(90deg, rgba(128, 221, 66, 1) 0%, rgba(22, 200, 60, 1) 100%);
	color: white;
	box-shadow: 0px 3px 7px -5px #555;
	margin: 15px 0px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	width: 150px;
	box-sizing: border-box;
	font-weight: bold;
}

.btn.full {
	width: 100%;
}

.btn.secondary {
	background: none;
	border: 1px solid var(--gbpc-green);
	color: var(--gbpc-green);
}

.btn.addBtn {
	width: 45px;
	height: 45px;
}
