/********** columnsBlocks ****************/

.thera-flex {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-flow: row wrap;
	margin: 0 -10px;
	-webkit-justify-content: flex-start;
	-moz-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-content: space-around;
	align-content: space-around;
	/*for IE 9- */
	text-align: center;
}

.thera-flexbox {
	-webkit-box-flex: 0;
	-moz-box-flex: 0;
	-ms-box-flex: 0;
	-webkit-flex: 0;
	-ms-flex: 0 0;
	-moz-flex: 1;
	flex: 1 0 0;
	min-width: 200px;
	margin: 10px;
	padding: 15px 1% 1%;
	text-align: left;
	/* For IE 9- */
	display: inline-block;
	vertical-align: top;
}

/********** Modales ****************/

.thera-modale {
    position: fixed;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
		width: 100%;
		height: 100%;
		background-color: #424242;
		background-color: rgba(0, 0, 0, 0.8);
		-webkit-transition: opacity 0.5s, visibility 0.8s;
		transition: opacity 0.5s, visibility 0.8s;
}

.thera-modale-content {
    position: relative;
    width: 690px;
		max-height: 80%;
    margin: auto;
    background-color: white;
    overflow: auto;
    padding: 25px 10px 10px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 10px white;
    box-shadow: 0 0 10px white;
}

.thera-close-modal {
	position: absolute;
	right: 5px;
	top: -10px;
}

.thera-close-modal::before {
    font-family: 'fontAwesome';
    content: "\f00d";
    font-size: 3em;
    color: #333333;

}