
.btn-arrow:after {
    display: inline-block;
    content: " ";
    width: 14px;
    height: 14px;
    transform: rotate(-90deg);
    background: transparent url("../../assets/down-white.svg") no-repeat center center;
    margin-left: 20px;
}

.btn-arrow-left:before{
    display: inline-block;
    content: " ";
    width: 14px;
    height: 14px;
    transform: rotate(90deg);
    background: transparent url("../../assets/down-white.svg") no-repeat center center;
    margin-right: 20px;
}

.button-green {
	background-color: #1e7d33;
}

.button-blue {
	background-color: #1566AC;
}

.home-button {
	margin: auto;
}

.home-button > img {
	transform: rotate(90deg);
	float: left;
}

.submit {
	margin-top: 20px;
}

.back-button {
	width: 100%;
	margin-left: 0;
}

.register-button {
	margin-top: 50px;
	width: 100%;
}

.btn-reset {
    margin-top: 10px;
}

.half-button {
	width: 50%;
}

.full-button {
	margin-top: 30px;
	width: 100%;
}

.three-quarter-button {
	width: 75%;
	margin-top: 30px;
}

#add {
	background-image: url(../../assets/add.svg);
	background-repeat: no-repeat;
	background-size: auto 50%;
	background-position: 30px;

}

button:hover {
    background-color:rgba(0, 0, 0, 0.8);
    transition-duration: 500ms;
}

button:focus {
	outline:0;
	background-color:rgba(0, 0, 0, 0.8);
    transition-duration: 500ms;
}


/* Get rid of webkit browser's blue highlighting effect */
button:active {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

button:disabled {
    background-color: #C2C7CC;
}

button > img {
    transform: rotate(-90deg);
    height: 10px;
    width: auto;
    float: right;
    margin-right: 20px;
    margin-top: 5px;
    margin-left: 10px;

}

.remove-number {
	background-color: white;
	float: right;
	color: #98B4CB;
	display: block;
	margin-bottom: 20px;
}

.remove-number:hover {
	color: #1566AC;
	transition: 0.3s;
	background-color: white;
}

.remove-number > img {
    height: 20px;
    margin: 0 10px 0 0;
    width: auto;
    float: left;
}



@media screen and (max-width: 767px) {
	.three-quarter-button {
		width: 100%;
	}

	#add {
		background-position: 10px;
	}

	.register-button {
		margin: 0;
	}
}

@media screen and (min-width: 835px) and (max-width: 1040px) {
	#add {
		background-position: 10px;
	}

	.three-quarter-button {
		width: 100%;
	}

	.register-button {
		padding: 0;
		margin: 0;
	}

	.home-button {
		width: 100%;
		margin: 0;
	}

}