.flex{
	display: flex;
	align-items: center;
}

.flex-sb-c {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.flex-sb-e {
	display: flex;
	justify-content: space-between;
	align-items: end;
}

.flex-sb-t {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.flex-sb{
	display: flex;
	justify-content: space-between;
}

.flex-start-c{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.flex-col-center {
	display: flex;
	flex-flow: column;
	justify-content: center;
}

.flex-col-c-c {
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
}

.flex-col-sa-c {
	display: flex;
	flex-flow: column;
	justify-content: space-around;
	align-items: center;
}

.flex-sa-c {
	display: flex;
	align-items: center;
	justify-content: space-around;
}

.flex-c-c {
	display: flex;
	align-items: center;
	justify-content: center;
}

.fl-end {
	justify-content: flex-end;
}
.flex-se-c{
	display:flex;
	justify-content:space-evenly;
	align-items:center;
}

.flex-se-t{
	display:flex;
	justify-content:space-evenly;
	align-items: top;
}

.flex-col{
	display:flex;
	flex-flow:column;
}
.flex-col-se-c{
	display:flex;
	flex-flow:column;
	justify-content:space-evenly;
	align-items:center;
}
.flex-col-sa-c{
	display:flex;
	flex-flow:column;
	justify-content:space-around;
	align-items:center;
}
.flex-col-sb-c{
	display:flex;
	flex-flow:column;
	justify-content:space-between;
	align-items:center;
}
.flex-col-top-c{
	display:flex;
	flex-flow:column;
	justify-content:flex-start;
	align-items:center;
}
.flex-col-se-left{
	display:flex;
	flex-flow:column;
	justify-content:space-evenly;
	align-items:flex-start;
}

.flex-fs-c{
	display: flex;
	align-items:center;
} 

/* Most of mobile devices including zoom
* While this is less or equal to 768px
*/

@media
( max-width :991px),
only screen and (max-width: 760px),
only screen and (max-device-width: 768px),
only screen and (max-width: 980px)
{
	.no-flex{
	display: unset;
	}
}


/* Specificly for i-pad specific */
@media only screen
and (max-device-width: 768px)
and (orientation:portrait)
{
	
}

/* Specificly for i-pad pro specific */
@media only screen
and (min-device-width: 481px)
and (max-device-width: 1024px)
and (orientation:portrait)
{
	
}

/* Specificly for i-pad pro specific */
@media only screen
and (min-device-width: 1024px)
and (max-device-width: 1366px)
and (orientation: landscape)
and (-webkit-min-device-pixel-ratio: 2)
{
	
}