.btn {
	display: 		inline-block;
	position: 		relative;
	font-size: 		22px;
	font-weight: 	600;
	line-height: 	inherit;
	text-decoration: none;
	padding: 		20px 40px;
	border: 		0;
	border-radius: 	50px;
	transition: all 0.1s;
	cursor: 		pointer;
}

.btn:hover, 
.btn:active {
	transform: scale(0.98);
}

.btn-block {
	width: 			100%;
	display: 		flex;
	flex-direction:	row;
	justify-content: center;
	align-items: 	center;
	margin-left: 	auto;
	margin-right: 	auto;
	margin-top: 	20px;
	margin-bottom: 	20px;
	padding-left: 	0;
	padding-right: 	0;
}

.btn-block + .btn-block {
	margin-top: 0;
}

.btn-circle {
	background-color: #000FFF;
	height: 	65px;
	width: 		65px;
	padding: 	15px;
	border-radius: 50px;
	display: 	flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.btn-circle-icon {
	height: 	auto;
	width: 		40px;
}

.btn-float {
	position: 	fixed;
	z-index: 	99;
	bottom: 	20px;
}
.btn-float.float-right {
	right: 		20px;
}
.btn-float.float-left {
	left: 		20px;
}

.btn-navbar {
    font-size: 14px;
    padding: 10px 16px 8px;
    margin-left: auto;
    margin-right: auto;
}

.btn-light {
	background-color: #FFF;
	color: #000FFF;
}

.btn-primary {
	background-color: #000FFF;
	color: #FFF;
}
.btn-secondary {
	background-color: #00FFFF;
	color: #000FFF;
}

.btn-green {
	background-color: #47FF47;
	color: #000FFF;
}

@media screen and (max-width: 767px) {
	.btn {
		font-size: 18px;
	}
}
@media screen and (max-width: 479px) {
	.btn {
		font-size: 16px;
        padding-top: 18px;
        padding-bottom: 18px;
	}

	.btn-navbar {
		font-size: 14px;
		padding-left: 16px;
		padding-right: 16px;
	}
}