.button,
.gpnf-add-entry {
	background: #5A77B0;
	box-shadow: 0px 2px 15px rgba(21, 70, 100, 0.1);
	border-radius: 5px;
	height: 50px;
	font-family: "Gotham A", "Gotham B";
	font-weight: 700;
	font-size: 11px;
	line-height: 50px;
	text-align: center;
	letter-spacing: 0.4em;
	text-transform: uppercase;
	color: #fff;
	display: inline-block;
	padding: 0 40px;
	transition: background .2s linear;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
	cursor: pointer;
}

.button:hover,
.gpnf-add-entry:hover,
.content .button:hover {
	background: #708dcb;
	color: #fff;
}

.button + .button {
	background: #fff;
	color: #5A77B0;
	margin-top: 20px;
}

.button + .button:hover {
	color: #708ecb;
	background: #fff;
}

.buttons-container {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.buttons-container .button {
	width: 100%;
}

.home .buttons-container .button {
	padding: 0;
}

@media screen and (min-width: 1024px) {
	.buttons-container {
		justify-content: flex-start;
	}
	
	.home .buttons-container .button,
	.buttons-container .button {
		width: auto;
		padding: 0 20px;
	}
	
	.home .buttons-container .button {
		width: calc(50% - 10px);
		padding: 0;
		margin: 0;
	}
	
	.button + .button,
	.home .buttons-container .button + .button,
	.buttons-container .button + .button {
		margin: 0 0 0 20px;
	}
	
	.home .buttons-container .button + .button + .button,
	.buttons-container .button + .button + .button {
		margin: 20px 0 0 0;
	}
}

@media screen and (min-width: 1400px) {
	.home .buttons-container .button {
		width: auto;
		padding: 0 40px;
	}
	
	.home .buttons-container .button + .button {
		margin-left: 30px;
	}
}