.container-options{
	display: flex;
	/*align-items: center;*/
	justify-content: center;
	flex-direction: column;
	width: 100%;
	height: 100vh;
	background-color: white;
}

.row-option>.title{
	font-size: 28px;
	color:#00a000;
}

.row-option>.subtitle{
	color:grey;
	font-size:13px;
}

.row-option{
	width: 100%;

	padding: 10px 0;

	display: flex;
	justify-content: center;
	align-items: center;
}

.row-option>button{
	width: 100%;
	max-width: 240px;
	height: 48px;
	padding: 0 16px;

	border:1px solid #00a000;
	background-color: white;
	border-radius: 4px;

	display: flex;
	align-items: center;

}

.row-option>button>img{
	width: 36px;
	height: 36px;
}

.row-option>button>:last-child{
	flex-grow: 1;
	color: #00a000;
	font-size: 18px;
}


