

.cardsForm {
    margin: auto;
    text-align: center;
}

.content3{
    text-align: center;
    margin-left: 10px;
}

.centerBtn {
    display: flex;
    justify-content: center;
    
}

/* .content-select select{
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
} */

.content-select select::-ms-expand {
    display: none;
}

.content-select{
	max-width: 250px;
	position: relative;
}
 
.content-select select{
	display: inline-flex;
	width: 100%;
	cursor: pointer;
  	padding: 7px 10px;
  	height: 42px;
  	outline: 0; 
  	border: 0;
	border-radius: 0;
	background: #f0f0f0;
	color: #7b7b7b;
	font-size: 1em;
	color: #999;
	font-family: 
	'Quicksand', sans-serif;
	border:2px solid rgba(0,0,0,0.2);
    border-radius: 12px;
    position: relative;
    transition: all 0.25s ease;
}
 
.content-select select:hover{
	background: #f0f0f0;
}
 
/* 
Creamos la fecha que aparece a la izquierda del select.
Realmente este elemento es un cuadrado que sólo tienen
dos bordes con color y que giramos con transform: rotate(-45deg);
*/
.content-select i{
	position: absolute;
	right: 20px;
	top: calc(50% - 13px);
	width: 16px;
	height: 16px;
	display: flex;
	border-left:4px solid #999;
	border-bottom:4px solid #999;
	transform: rotate(-45deg); /* Giramos el cuadrado */
	transition: all 0.25s ease;
}
 
.content-select:hover i{
	margin-top: 3px;
}

.inputText{
    border:2px solid rgba(0,0,0,0.2);
    border-radius: 10px;
	height: 42px;
}

.comboBoxSelect {
    border-radius: 10px;
    border:2px solid rgba(0,0,0,0.2);
    display: inline-flex;
    height: 42px;
    width: 100px;
    
    font-family: 
	'Quicksand', sans-serif;
    font-size: 20px;
    color: #838383;
}
