.users {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
}

.users__section, .users__section--active {
    width: calc(50% - 1.5rem);
    height: calc(100% - 1.5rem);
    overflow-y: hidden;
    margin: .75rem;
    display: inline-block;
    background-color: white;
    box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.3);
    vertical-align: top;
}

.users__zipCodesWrapper {
    padding: 0 1rem;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 1rem 0;
}

.users__name {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    height: 50px;
    line-height: 50px;
    border-bottom: 1px solid #bbb;
    box-shadow: 0px 3px 6px -2px rgba(0, 0, 0, 0.75);
    z-index: 1;
    position: relative;
}

.users__sectionHeader {
    width: 100%;
    height: 80px;
    line-height: 80px;
    font-weight: 700;
    font-size: 1.7rem;
    text-align: center;
    color: white;
    box-shadow: 0px 2px 6px -2px rgba(0, 0, 0, 0.75);
    z-index: 1;
    position: relative;
}

.users__lineItemsWrapper {
    width: 100%;
    height: calc(100% - 100px);
    overflow-y: auto;
}

.users__lineItemsWrapper div.mediaLine:nth-child(2n - 1) {
    background-color: #DDD;
}

.users__lineItemsWrapper div.mediaLine--active:nth-child(n) {
    background-color: lightblue;
}

.users__roles {
    padding: 0 1rem;
    text-align: center;
    font-size: 2.6rem;
    font-weight: 700;
}

.users__editor {
    overflow-y: auto;
    width: auto;
    height: calc(100% - 130px);
}

.users__editor--active {
    overflow-y: auto;
    width: auto;
    height: calc(100% - 150px);
}

.users__actions {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    margin-bottom: 1rem;
}

@media screen and (max-width: 991px) {
    .users__name {
        font-size: 2.8rem;
    }

    .users__section, .users__section--active {
        width: 100%;
        height: 100%;
        margin: 0;
        box-shadow: none;
        transition: all 200ms linear;
    }

    .users__section {
        position: absolute;
        right: -100%;
    }

    .users__section--active {
        position: absolute;
        right: 0;
    }

    .users__sectionHeader {
        height: 50px;
        line-height: 50px;
    }


    /*.users__section:nth-child(2) {*/
    /*    position: absolute;*/
    /*    right: -100%;*/
    /*    transition: all 200ms linear;*/
    /*    text-align: center;*/
    /*}*/
    /*.users__section--active:nth-child(2) {*/
    /*    position: absolute;*/
    /*    right: 0;*/
    /*}*/
    .users__section--active {
        right: 0;
        position: absolute;
    }

    .users__backButton {
        position: absolute;
        line-height: 50px;
        font-size: 2.5rem;
        left: 18px;
    }

    .users__section--active .users__editor {
        height: calc(100% - 100px);
    }
}