.intensity .header #postFilters {
    margin-right: 0px !important;
}

.intensity .weekSelect {
    width: 220px;
    float: left;
}

.intensity .teamSelect {
    float: right;
}

.intensity .teamSelect .team {
    display: inline-block;
    background-color: #D6DCDF;
    color: #333;
    border-radius: 4px;
    min-width: 40px;
    text-align: center;
    padding: 8px 5px 8px 5px;
    font-size: 14px;
    box-sizing: border-box;
    transition: all .3s;
    cursor: pointer;
}

.intensity .teamSelect .team:hover {
    background-color: #EFEFEF;
}

.intensity .teamSelect .team.select {
    background-color: rgba(var(--mainColor), 1);
    color: white;
}

.intensity .teamSelect .team.selected {
    background-color: rgba(var(--mainColor), 1);
    color: white;
}

#intensityTable {
    width: 100%;
    margin-top: 10px;
}

#intensityTable .column {
    float: left;
    width: calc((100% - 60px) / 7);
    background-color: #EFEFEF;
    border-radius: 4px;
    margin-left: 10px;
    overflow: hidden;
}

#intensityTable .column:first-child {
    margin-left: 0px;
}

#intensityTable .column .header {
    background-color: #A1A4AE;
    text-align: center;
    padding-top: 7px;
    padding-bottom: 7px;
    font-size: 14px;
    text-transform: uppercase;
    color: white;
}

#intensityTable .columnContent {
    padding: 5px;
}

#intensityTable .column .cell {
    border-radius: 3px;
    overflow: hidden;
    font-size: 14px;
    background-color: #DCDDDF;
    margin-top: 5px;
    min-height: 32px;
}

#intensityTable .column .cell:first-child {
    margin-top: 0px;
}

#intensityTable .column .team {
    text-align: center;
    padding-top: 7px;
    padding-bottom: 8px;
    cursor: pointer;
    transition: all .2s;
}

#intensityTable .column .team.noIntensity {
    color: rgba(0, 0, 0, .1);
    cursor: default;
}

#intensityTable .column .team.low {
    background-color: #12A028;
    color: white;
}

#intensityTable .column .team.medium {
    background-color: #F5884F;
    color: white;
}

#intensityTable .column .team.high {
    background-color: #C1231C;
    color: white;
}

#intensityTable .indicators {
    display: table;
    margin-top: 30px;
}

#intensityTable .indicators .cell {
    display: table-cell;
    vertical-align: middle;
}

#intensityTable .indicators .cell .color {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    float: left;
    margin-right: 10px;
}

#intensityTable .indicators .cell .color.low {
    background-color: #12A028;
}

#intensityTable .indicators .cell .color.medium {
    background-color: #F5884F;
}

#intensityTable .indicators .cell .color.high {
    background-color: #C1231C;
}

#intensityTable .indicators .cell .text {
    display: inline-block;
    padding-right: 30px;
    margin-top: 5px;
}

.intensity .weekSelect {
    width: 100%;
    float: none;
}

#intensityTable .column {
    float: none;
    width: 100%;
    background-color: #EFEFEF;
    border-radius: 4px;
    margin-left: 0px;
    overflow: hidden;
    margin-bottom: 10px;
}

#intensityTable .indicators {
    display: block;
    margin-top: 20px;
}

#intensityTable .indicators .cell {
    display: block;
    vertical-align: middle;
    width: 100%;
    height: 30px;
    margin-top: 10px;
}