html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

main {
    margin-top: 100px;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.group:hover .group-hover-target {
    color: #3b71ca;
}

.group:hover .group-hover-display {
    color: #3b71ca;
    display: inline-flex;
}

.group-hover-display {
    display: none;
}

.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    padding: 58px 0 0; /* Height of navbar */
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 5%), 0 2px 10px 0 rgb(0 0 0 / 5%);
    width: 240px;
    z-index: 600;
}

    .sidebar .active {
        border-radius: 5px;
        box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
    }

.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. */
}

@media (max-width: 991.98px) {
    .sidebar {
        width: 100%;
    }
}

.userbox {
    margin-left: 20px;
    padding: 8px;
    width: 450px;
    /* height:366px; */
    border: 1px solid transparent;
    color: var(--fc-medium);
    border-color: var(--powder-400);
    background-color: burlywood;
    float: left;
}

    .userbox video {
        display: inline-block;
        border: 1px solid red;
        margin: 0;
        padding: 0;
        width: 450px;
        height: 300px;
    }

textarea.auto {
    field-sizing: content;
}

input.ticked[type="radio"]:checked + label::before {
    font-family: "Font Awesome 6 Pro";
    content: "\f00c";
    display: inline-block;
    padding-right: 6px;
    vertical-align: middle;
    font-weight: 900;
}

input.ticked[type="radio"]:checked + label {
    color: #fff;
    background-color: #14a44d;
}

.ignoreDrag {
    pointer-events: none;
}


.video-streams{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    height: 90vh;
}

.chat {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .chat li {
        
    }

        .chat li.left .chat-body {
            margin-left: 60px;
        }

        .chat li.right .chat-body {
            margin-right: 60px;
        }

.sr-only {
    position: absolute;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(0px, 0px, 0px, 0px);
    clip-path: inset(50%);
}

button.hover-edit {
    display: none;
}

button.hover-edit :hover{
    display: block;
}