.tcm-section {
	width:100%;
	display:flex;
	flex-direction:column;
	justify-content:start;
	
	margin:20px 0;
}
.tcm-row {
	flex:1;
	display:flex;
	flex-direction:row;
}
.tcm-col {
	flex:1;
	display:flex;
	flex-direction:column;

	margin:0 10px;
}
.tcm-col:first-child { margin-left:0; }
.tcm-col:last-child { margin-right:0; }
.tcm-col.tcm-end {
	align-items:flex-end;
}
.tcm-col.v-center {
        text-align:center;
        align-content:center;
}
.tcm-col.tcm-2 { flex:2; }
.tcm-col.tcm-3 { flex:3; }
.tcm-col.tcm-4 { flex:4; }
.tcm-col.tcm-5 { flex:5; }
.tcm-nospace {
	margin:0;
	padding:0;
}
.tcm-hidden {
	display:none;
	opacity:0;
}
#tcm-modal {
        position:fixed;
        z-index:9;
        top:0;
        bottom:0;
        left:0;
        right:0;
        padding:30px;
        background:rgba(255,255,255,0.8);
}
