.u-flex {
    display: flex;
}

.u-flexColumn {
    flex-direction: column;
}

@media screen and (min-width: 959px) {
    .u-l-flexRow {
        flex-direction: row;
    }
}

.u-flexWrap-row {
    flex-wrap: wrap;
}

.u-flexWrap-no {
    flex-wrap: nowrap;
}

.u-flexShrink-0 {
    flex-shrink: 0;
}

.u-flexGrow-0 {
    flex-grow: 0;
}

.u-flexGrow-1 {
    flex-grow: 1;
}

.u-flexOrder-0 {
    order: 0;
}

.u-flexOrder-1 {
    order: 1;
}

.u-flexOrder-2 {
    order: 2;
}

.u-flexOrder-3 {
    order: 3;
}

.u-flexOrder-4 {
    order: 4;
}

.u-flexOrder-5 {
    order: 5;
}

@media screen and (min-width: 970px) {
    .u-l-flexOrder-1 {
        order: 1;
    }

    .u-l-flexOrder-2 {
        order: 2;
    }
}

.u-alignCenter {
    align-items: center;
}

.u-alignSelfCenter {
    align-self: center;
}

.u-alignEnd {
    align-items: flex-end;
    align-content: flex-end;
}

.u-alignStart {
    align-items: flex-start;
    align-content: flex-start;
}

.u-alignStretch {
    align-items: stretch;
    align-content: flex-start;
}

.u-alignBetween {
    align-content: space-between;
}


.u-justifyRight {
    justify-content: flex-end;
}

.u-justifyCenter {
    justify-content: center;
}

.u-justify-between {
    justify-content: space-between;
}

.u-justify-around {
    justify-content: space-around;
}

.u-block {
    display: block !important;
}

.u-inline-block {
    display: inline-block;
}

.hidden {
    display: none !important;
}

.u-s-hidden,
.u-l-hidden,
.u-xl-hidden {
    display: none;
}

@media screen and (min-width: 569px) {
    .u-s-hidden {
        display: initial;
    }
}

@media screen and (min-width: 959px) {
    .u-l-hidden {
        display: initial;
    }
}

@media screen and (min-width: 1200px) {
    .u-xl-hidden {
        display: initial;
    }
}

.u-pos-rel {
    position: relative;
}

.u-pos-abs {
    position: absolute;
}

.u-pos-abs-0 {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.u-pos-abs-50 {
    position: absolute;
    top: 50%;
    right: auto;
    left: 50%;
    bottom: auto;
}

.u-abs-z100 {
    z-index: 100;
}

.u-abs-z10 {
    z-index: 10;
}

.u-abs-all-0 {
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
}

.u-abs-t0 {
    top: 0px;
}

.u-abs-tl0 {
    top: 0px;
    left: 0px;
}

.u-abs-tr10 {
    top: 10px;
    right: 10px;
}

.u-abs-blr0 {
    top: auto;
    right: 0;
    left: 0;
    bottom: 0;
}

.u-abs-br1 {
    top: auto;
    right: 1%;
    left: auto;
    bottom: 7px;
}

.u-abs-blr1 {
    top: auto;
    right: 1%;
    left: 1%;
    bottom: 7px;
}

.u-abs-b0 {
    top: auto;
    right: auto;
    left: auto;
    bottom: 0;
}

.u-pos-fix {
    position: fixed;
}

.u-fix-tl0 {
    top: 0;
    left: 0;
}

.u-fix-tr0 {
    top: 0 !important;
    right: 0 !important;
}

.u-fix-tr10p {
    top: 0 !important;
    right: 10% !important;
}

.u-fix-lr0 {
    left: 0;
    right: 0;
    margin: 0 auto;
}

.u-fix-zTop {
    z-index: 10000 !important;
}

.u-fix-z1000 {
    z-index: 1000 !important;
}

.u-fix-z500 {
    z-index: 500 !important;
}

.u-tf-center {
    transform: translate(-50%, -50%);
}

.u-tf-center-v {
    transform: translate(0%, 50%);
}

.u-tf-center-v2 {
    transform: translate(0%, -50%);
}

.u-tf-center-h {
    transform: translate(50%, 0%);
}

.u-tf-center-h2 {
    transform: translate(-50%, 0%);
}

.u-tf-no {
    transform: none !important;
}

.u-of-auto {
    overflow: auto;
}

.u-of-hidden {
    overflow: hidden;
}

.u-of-y-auto {
    overflow-y: auto;
}

.u-bg-contain {
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.u-bg-cover {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.u-ratioHeader {
    padding-bottom: 45%;
    position: relative;
}

.u-ratio-4-3:after {
    content: '';
    display: block;
    margin-top: 75%;
}

.u-ratio-16-9:after {
    content: '';
    display: block;
    margin-top: 56.25%;
}

.u-ratio-image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.u-ul-nostyle {
    list-style: none;
    margin: 0;
    padding: 0;
}

.u-animate-ease {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
