@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap');

* {
    margin: 0;
    padding: 0rem;
    box-sizing: border-box;
    list-style: none;
    font-family: 'Montserrat', sans-serif
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
    border: none
}

::placeholder {
    font-size: 10px
}

.container .table-responsive {
    margin: 20px auto;
    overflow-x: auto
}

.container .table-responsive::-webkit-scrollbar {
    height: 5px
}

.container .table-responsive::-webkit-scrollbar-thumb {
    border-radius: 5px;
}

.table thead tr th {
    font-size: 15px;
    color: var(--bs-dark);
    padding: 10px 10px
}

#navbar {
    width: 20%;
    border: none
}

#navbar a {
    color: var(--bs-dark);
}

#navbar-items {
    background: var(--bs-gray);
}

ul#navbar-items li {
    color: var(--bs-white);
    padding: 15px 25px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 15px;
    display: flex;
    align-items: center;
}

ul li .fa {
    font-size: 16px
}

ul#navbar-items li:hover {
    background-color: var(--bs-orange);
    color: var(--bs-white);
}

ul li:hover .fa {
    color: var(--bs-gray);
}

#topnavbar {
    width: 100%
}

@media(max-width:430px) {

    #navbar-items,
    #topnavbar {
        width: 100%;
        height: 100%
    }

    #navbar-items {
        padding: 20px;
        margin-bottom: 30px
    }

    #navbar {
        width: 100%;
    }
}

@media (max-width: 1200px) {
    #navbar-items {
        background: var(--bs-orange);
    }

    ul#navbar-items li:hover {
        background-color: var(--bs-gray);
    }

    ul li:hover .fa {
        color: var(--bs-orange);
    }

    #navbar {
        width: 20%
    }

    .table-responsive table,
    .table-responsive thead,
    .table-responsive tbody,
    .table-responsive th,
    .table-responsive td,
    .table-responsive tr {
        display: block;
    }

    .table-responsive thead tr {
        display: none;
    }

    .table-responsive tr {
        border: 2px solid var(--bs-white);
    }

    .table-responsive td,
    .table-responsive th {
        border: none;
        position: relative;
        white-space: normal;
        text-align: left;
    }

    .table-responsive td[data-title],
    .table-responsive th[data-title] {
        padding-left: 50% !important;
    }

    .table-responsive td:before,
    .table-responsive th:before {
        position: absolute;
        top: 6px;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
    }

    .table-responsive td[data-title]:before,
    .table-responsive th[data-title]:before {
        content: attr(data-title);
    }
}

body {
    min-height: 100vh;
}

.red-text {
    color: red !important;
}

.red-text th {
    color: red !important;
}

/* .assigneeTableStyle {
    background-color: rgb(253, 201, 141);
} */