@charset "UTF-8";

.horizontal-center {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;	
}

.horizontal-evenly {
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	align-items: center;	
}

.horizontal-around {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;	
}

.horizontal-between {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;	
}

.vertical-center {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.horizontal-left {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;	
}

.vertical-left {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.vertical-top-left {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}

.vertical-top-center {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}

.horizontal-right {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;	
}

.horizontal-top-left {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
}

.horizontal-top-center {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
}

.horizontal-center-left {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}

.vertical-right {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
}

/* #################### MARGINS #################### */

.mg-r-5 {
	margin-right: 5px !important;
}

.mg-r-10 {
	margin-right: 10px !important;
}

.mg-r-15 {
	margin-right: 15px !important;
}

.mg-r-20 {
	margin-right: 20px !important;
}

.mg-r-40 {
	margin-right: 40px !important;
}


.mg-b-5 {
	margin-bottom: 5px !important;
}

.mg-b-10 {
	margin-bottom: 10px !important;
}

.mg-b-20 {
	margin-bottom: 20px !important;
}

.mg-b-30 {
	margin-bottom: 30px !important;
}

.mg-t-5 {
	margin-top: 5px !important; 
}

.mg-t-8 {
	margin-top: 8px !important; 
}

.mg-t-10 {
	margin-top: 10px !important;
}

.mg-t-15 {
	margin-top: 15px !important;
}

.mg-t-20 {
	margin-top: 20px !important;
}

.mg-t-25 {
	margin-top: 25px !important;
}

.mg-t-30 {
	margin-top: 30px !important;
}