.import-container {
    margin: 1rem;
}

.import-container td {
    border: 1px solid #fff;
    font-weight: bold;
}

.import-container label {
    font-size: 1rem;
    font-weight: bold;
}

.list-col-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.list-col-wrapper ul li {
    cursor: pointer;
    list-style: none;
    font-size: 16px;
    padding: 4px;
}

.list-col-wrapper ul li:nth-child(even) {
    background: rgba(170, 170, 170, 0.31);
}

.export-top-bar {
    display: flex;
    justify-content: flex-end;
    padding: .75rem;
}

.export-top-bar a {
    background: white;
}

.list-col-wrapper ul {
    height: 400px;
    /*width: 350px;*/
    background: white;
    overflow-x: scroll;
    padding: 35px;
    position: relative;
}

.center-flex-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-flex-col button {
    margin: 15px;
    box-shadow: none;
}

.floatabove-chart {
    position: absolute;
    bottom: 0;
    right: 0;
}

.finalize-button {
    margin-left: 73%;
    color: white;
    background: #2bbe69;
    text-decoration: none !important;
    cursor: pointer;
    width: 9.06rem;
    height: 3.6rem;
    font-weight: 900;
    line-height: 3.6rem;
    font-size: 0.9rem;
    padding: 0 0.5rem;
    text-align: center;
    position: relative;
    border-radius: 4px;
    border: none;
    display: inline-block;
}

.finalize-button i {
    margin-right: 8px;
}

.reorderlist__section, .reorderlist__section--active {
    width: calc(100% - 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;
}

.reorderlist__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;
}

@media screen and (max-width: 991px) {
    .center-flex-col, .list-col-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .reorderlist__section, .reorderlist__section--active {
        width: 100%;
        height: 100%;
        margin: 0;
        box-shadow: none;
        transition: all 200ms linear;
    }

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

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

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

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

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

