/*--------------------------------- FLOATS --------------------------------*/

.left {
    float: left;
}

.right {
    float: right;
}

/*--------------------------------- CENTER --------------------------------*/
.center {
    margin: 0 auto;
}

/*------------------------------- DISPLAY -----------------------------*/

.dspl-none {
    display: none;
}

.dspl-inline {
    display: inline-block;
}

.dspl-inline-fr {
    display: inline;
}

.dspl-block {
    display: block;
}

/*------------------------------- TEXT ALIGNS ----------------------------*/

.t-center {
    text-align: center;
}

.t-left {
    text-align: left;
}

.t-right {
    text-align: right;
}

/*-------------------------------- FONT SIZES ----------------------------*/
.fsm {
    font-size: medium;
}

.fss {
    font-size: small;
}

.fsxs {
    font-size: x-small;
}

/*------------------------------- FONT COLOURS --------------------------------*/
.f-white {
    color: white;
}

.f-black {
    color: black;
}

/*-------------------------------- OTHER ----------------------------*/
.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
         -moz-user-select: none; /* Old versions of Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome, Edge, Opera and Firefox */
}