body {
    font-size: 0.875rem;
}

.feather {
    width: 16px;
    height: 16px;
    vertical-align: text-bottom;
}

.mr-1 {
    margin-right: 1em;
}
.btn {
    opacity: 0.8;
    transition: all 0.1s ease-in;
}
.btn:hover {
    opacity: 1;
    color: #fff;
}
.btn-fuchsia {
    background: #ff5da2;
    color: #fff;
}
.btn-maroon {
    background-color: #8a0a09;
    color: #fff;
}
.btn-salmon {
    background-color: #fa8072;
    color: rgb(29, 29, 29);
}
.btn-default {
    background-color: #646464;
    color: rgb(255, 255, 255);
}
.btn-dark-red {
    background-color: #c00000;
    color: #fff;
}
.btn-chocolate {
    background-color: #9b480d;
    color: #fff;
}
.btn-orange {
    background-color: #e45200;
    color: #fff;
}
.btn-teal {
    background-color: #009788;
    color: #fff;
}
.btn-blue-violet {
    background-color: #703fbb;
    color: #fff;
}
.nav-tabs {
    border-bottom: 1px solid #ccc;
}
.nav-tabs .nav-link {
    border-top: 1px solid #ccc;
    border-radius: 0;
}
.nav-tabs .nav-item {
    border-radius: 0;
}
.nav-tabs .nav-item:first-child .nav-link {
    border-left: 1px solid #ccc;
    border-top-left-radius: 10px;
}
.nav-tabs .nav-item:last-child .nav-link {
    border-right: 1px solid #ccc;
    border-top-right-radius: 10px;
}
.nav-tabs .nav-link {
    background: #ccc;
    color: #fff;
}
.nav-tabs .nav-link.active {
    background: #fff;
    color: #000;
    border-top: 1px solid #ccc;
}
.tab-content {
    background: #fff;
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
}
.tab-content .tab-pane {
    padding: 15px;
}
.tab-content .tab-pane.active {
}
/*
 * Sidebar
 */

.sidebar {
    position: fixed;
    top: 0;
    /* rtl:raw:
    right: 0;
    */
    bottom: 0;
    /* rtl:remove */
    left: 0;
    z-index: 100; /* Behind the navbar */
    padding: 48px 0 0; /* Height of navbar */
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, 0.1);
}

@media (max-width: 767.98px) {
    .sidebar {
        top: 5rem;
    }
}

.sidebar-sticky {
    position: relative;
    top: 0;
    height: calc(100vh - 48px);
    padding-top: 0.5rem;
    overflow-x: hidden;
    overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
}

.sidebar .nav-link {
    font-weight: 500;
    color: #333;
}

.sidebar .nav-link .feather {
    margin-right: 4px;
    color: #727272;
}

.sidebar .nav-link.active {
    color: #007bff;
}

.sidebar .nav-link:hover .feather,
.sidebar .nav-link.active .feather {
    color: inherit;
}

.sidebar-heading {
    font-size: 0.75rem;
    text-transform: uppercase;
}

/*
 * Navbar
 */

.navbar-brand {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    font-size: 1rem;
    background-color: rgba(0, 0, 0, 0.25);
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, 0.25);
}

.navbar .navbar-toggler {
    top: 0.25rem;
    right: 1rem;
}

.navbar .form-control {
    padding: 0.75rem 1rem;
    border-width: 0;
    border-radius: 0;
}

.form-control-dark {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.1);
}

.form-control-dark:focus {
    border-color: transparent;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}

.chat {
    list-style: none;
    margin: 0;
    padding: 0;
}

.chat li {
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px dotted #b3a9a9;
    background: #fff;
    padding: 10px;
    width: 100%;
}

.chat .chat-img img {
    margin: 0 10px;
}

.chat li.left .chat-body {
    margin-left: 60px;
}

.chat li.right .chat-body {
    margin-right: 60px;
}

.chat li .chat-body p {
    margin: 0;
    color: #777777;
}

.panel .slidedown .glyphicon,
.chat .glyphicon {
    margin-right: 5px;
}

.panel-body {
    overflow-y: scroll;
    height: 350px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5;
}

::-webkit-scrollbar {
    width: 12px;
    background-color: #f5f5f5;
}

::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #555;
}

.chat__sender {
    background: #d2ffdc !important;
}

.chat__not-sender {
}

.chat__unread {
    background: #a2fffa !important;
}
.white-box {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ccc;
}

.form-material {
    width: 400px;
    margin-top: -100px;
    padding: 20px;
    background: #fff;
    border: 10px solid #ebebeb;
}
.form-material .form-group {
    margin-bottom: 10px;
}
.form-material .box-title {
    margin-bottom: 20px;
}
