@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;	
	flex-wrap: wrap;
}

.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;	
	flex-wrap: wrap;
}

.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;	
	flex-wrap: wrap;
}

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

.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-center-left {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}

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

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

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


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

.search-group {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	margin: 10px 5px; 
}

.search-group-horizontal {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	margin: 10px 5px; 
}

.input-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	max-width: 100%;
}

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

.input-container > * {
  width: 100% !important;
}

.input-container > span > * {
  width: 100% !important;
}

.no-padding-left {
	padding-left: 0px !important;
}

.no-padding-top {
	padding-top: 0px !important;
}

.no-padding-bottom {
	padding-bottom: 0px !important;
}

.wrap {
	flex-wrap: wrap;
}

/* #################### 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;
}