.deviceauthentication__wrapper {
    width: 100%;
    position: relative;
    font-weight: 100;
    margin-bottom: 1rem;
}
/* .deviceauthentication__wrapper div{
    display: inline-block;
} */

.deviceauthenticationlist_grid {
    display: grid;
    grid-template-columns: 65px repeat(2, 1fr);
    grid-template-rows: 2fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

.deviceauthenticationlist_grid:nth-child(odd) {
    background: white;
}

.deviceauthenticationlist_grid > div {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
}

.deviceauthenticationlist_headers {
    font-weight: bolder;
    font-size: x-large;
    border-bottom: 1px solid black;
    padding: 8px 8px 8px 8px;
}

.deviceauthenticationlist_borders {
    border-right: 1px solid black;
    border-bottom: 1px solid black;
    backgroundColor: transparent;
}

.deviceauthenticationlist-table {
    max-height: 500px;
    overflow-y: scroll;
}
.deviceauthenticationspace, .deviceauthenticationlist-container {
    min-height: 50px;
}

.deviceauthentication__header {
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: white;
    font-size: 1.7rem;
    font-weight: 600;
}

.deviceauthentication__backButton {
    left: 12px;
    line-height: 50px;
    font-weight: 200;
    font-size: 2.1rem;
    color: white;
    float: left;
  }
.deviceauthenticationspace i.fa-minus-square {
    color: red;
    cursor: pointer;
    font-size: 1rem;

}

@media screen and (max-width: 991px) {
    .deviceauthenticationlist_grid {
        display: grid;
        grid-template-columns: 75px repeat(2, 1fr);
        grid-template-rows: 2fr;
        grid-column-gap: 0px;
        grid-row-gap: 0px;
    }

    .deviceauthenticationlist_grid > div {
        font-size: 1.2rem;
        font-weight: bold;
    }

    .deviceauthenticationlist_borders {
        border: none;
    }
}

