* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
    box-sizing: border-box;
}

b, strong {
	font-weight: bold;
}

.noselect {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.transition {
	-webkit-transition: all .1s linear; 
	-moz-transition: all .1s linear; 
	-ms-transition: all .1s linear; 
	-khtml-transition: all .1s linear; 
	transition: all .1s linear; 
}

.fullheight{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
    box-sizing: border-box;
	height: 100%;
}
.fullwidth{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
    box-sizing: border-box;
	width: 100%;
}

/* TEXTO */
.align-left {
	text-align: left;
}
.align-right {
	text-align: right;
}
.align-center {
	text-align: center;
}
.align-middle {
	vertical-align: middle;
}
.align-top {
	vertical-align: top;
}
.align-bottom {
	vertical-align: bottom;
}
.text-hyphenate {
	-webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    -o-hyphens: auto;
    word-break:auto;
    overflow-wrap: break-word;
    hyphens: auto;
}
.text-truncate{
	position: relative;
	max-width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.text-nowrap {
	white-space: nowrap;
}

/** FLEX BOX */
.flex-container, .flex-container-row {
    padding: 0;
    margin: 0;
    list-style: none;
    display: table-row;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-around;
    justify-content: space-around;
}
.flex-container-col {
   	padding: 0;
	margin: 0;
	list-style: none;
	display:table-column;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
   	-webkit-flex-direction: column;
   	flex-direction: column;
   	-webkit-flex-wrap: wrap;
   	flex-wrap: wrap;
   	-webkit-flex-flow: col wrap;
   	flex-flow: col wrap;
}

.flex-wrap {
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.flex-nowrap {
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
}
.flex-wrap-reverse {
	-webkit-flex-wrap: wrap-reverse;
	flex-wrap: wrap-reverse;
}
.flex-align-left {
	-webkit-justify-content: flex-start;
   	justify-content: flex-start;
}
.flex-align-right {
	-webkit-justify-content: flex-end;
   	justify-content: flex-end;
}
.flex-align-center {
   	-webkit-justify-content: center;
   	justify-content: center;
}
.flex-align-space-around {
   	-webkit-justify-content: space-around;
   	justify-content: space-around;
}
.flex-align-space-between {
   	-webkit-justify-content: space-between;
   	justify-content: space-between;
}
.flex-align-top {
	-webkit-align-items: flex-start;
   	align-items: flex-start;
}
.flex-align-bottom{
	-webkit-align-items: flex-end;
   	align-items: flex-end;
}
.flex-align-middle {
	-webkit-align-items: center;
   	align-items: center;
}
.flex-item {
	-webkit-flex: auto auto;
	flex: auto auto;
	-webkit-flex-grow: 1;
	flex-grow: 1;
}
.flex-stretch {
	-webkit-align-self: stretch;
	align-self: stretch;
}

.one-side {
    width: 50%;
}
.padding {
	padding: 5px;
}
.padding2 {
	padding: 10px;
}
.padding3 {
	padding: 15px;
}
.padding4 {
	padding: 20px;
}
.padding5 {
	padding: 25px;
}
.padding6 {
	padding: 30px;
}
.margin {
	margin: 5px;
}
.margin2 {
	margin: 10px;
}
.margin3 {
	margin: 15px;
}
.margin4 {
	margin: 20px;
}
.margin5 {
	margin: 25px;
}
.margin6 {
	margin: 30px;
}

.float-left {
	float: left;
}
.float-right {
	float: right;
}
.float-left::after, .float-right::after {
	content: '';
	clear: both;
}

/** FLEX BOX SIMPLES */
.d-flex {
	display: flex;
	align-items: center;
}
.flex1 {
	flex: 1;
}
.flex2 {
	flex: 2;
}