.bracket-container {
    margin: 0 auto;
    display:block;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction:row;
    flex-direction: row;
}

.split {
    display: block;
    float: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    min-width: 100%;
    -webkit-flex-direction: row;
    flex-direction: row;
}

.champion {
    float: left;
    display: block;
    width: 16%;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-self: center;
    align-self: center;
    margin-top: -15px;
    text-align: center;
    padding: 230px 0;
}

.champion i {
    color: #a0a6a8;
    font-size: 45px;
    padding: 10px 0;
}

.round {
    display: block;
    float: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    width: 95%;
    width: 30.8333% \9;
}

.split-one .round {
    margin: 0 2.5% 0 0;
}

.split-two .round {
    margin: 0 2.5% 0 0;
}

.split-three .round {
    margin: 0 2.5% 0 0;
}

.split-four .round {
    margin: 0 2.5% 0 0;
}

.split-five .round {
    margin: 0 2.5% 0 0;
}

.split-six .round {
    margin: 0 2.5% 0 0;
}

.split-seven .round {
    margin: 0 2.5% 0 0;
}

.matchup {
    margin: 10px 0;
    padding: 0;
    width: 100%;
    height: 60px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.matchup-public-site {
    margin: 10px 0;
    padding: 0;
    width: 100%;
    height: 90px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.score {
    font-size: 11px;
    text-transform: uppercase;
    float: right;
    color: #2C7399;
    font-weight: bold;
    font-family: 'Roboto Condensed', sans-serif;
    position: absolute;
    right: 5px;
}

.team {
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.champion li, .round li {
    box-shadow: none;
    opacity: 0.45;
}

.current li {
    opacity: 1;
}

.current li.team {
    opacity: 1;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.3);
        -ms-transform: scale(1.3);
        transform: scale(1.3);
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

@media screen and (min-width: 981px) and (max-width: 1099px) {
    .container {
        margin: 0 1%;
    }

    .champion {
        width: 14%;
    }

    .split {
        width: 43%;
    }
}

@media screen and (max-width: 980px) {
    .container {
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        flex-direction: column;
    }

    .split, .champion {
        width: 90%;
        margin: 35px 5%;
    }

    .champion {
        -webkit-box-ordinal-group: 3;
        -moz-box-ordinal-group: 3;
        -ms-flex-order: 3;
        -webkit-order: 3;
        order: 3;
    }

    .split {
        border-bottom: 1px solid #b6b6b6;
        padding-bottom: 20px;
    }
}

@media screen and (max-width: 400px) {
    .split {
        width: 95%;
        margin: 25px 2.5%;
    }

    .round {
        width: 21%;
    }

    .current {
        -webkit-flex-grow: 1;
        -moz-flex-grow: 1;
        flex-grow: 1;
    }
}