.left {
    float: left;
}
.right {
    float: right;
}
.center {

}

.br {
    clear: both;
}
.space {
    clear: both;
    height: 60px;
}
.space-sm {
    clear: both;
    height: 30px;
}
.space-xs {
    clear: both;
    height: 15px;
}


.mr-15 {
    margin-right: 15px;
}


.block {
    display: block !important;
}
.table {
    display: table !important;
}

.w-auto {
    width: auto !important;
}
.center {
    width: 0 auto !important;
}


.straight {
    padding: 0 120px;
}










/*Centralizar texto:*/
.center {
    text-align: center;
}

/*Centralizar itens em linha (flexbox):*/
.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/*Centralizar bloco horizontalmente:*/
.center {
    margin: 0 auto;
}