.btn{
	width: fit-content;
	min-width: 146px;
	height: 48px;
	display: flex;
	flex-direction: row;
	align-items: center;
	border: 0px;
	text-decoration: none !important;
	justify-content: center;
	text-align: center;
	white-space: nowrap;
	padding-left: 15px;
	padding-right: 15px;
	cursor: pointer;
}
.btn .btn_icon{
	margin-left: -15px;
	width: 48px;
	height: 48px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}


.btn.btn_green{
	background-color: #67B448;
	color: white;
}
.btn.btn_green:hover{
	background-color: #509833;
}

.btn.btn_outline.btn_green{
	background-color: white;
	border:1px solid #67B448;
	color : #67B448;
}

.btn.btn_blue{
	background-color: #1686AF;
	color: white;
}

.btn.btn_big{
	height: 77px;
	width: 494px;
	font-size: 24px;
	font-weight: 600;
}

@media all and (max-width: 768px) {
	.btn.btn_big{
		font-size: 18px;
		width: 100%;
		height: 48px;
	}
}