.session-modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    z-index: 2; 
}

.session-modal-content {
    position: fixed;
    padding: 1rem 0;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    background-color: black;
    width: 90%;
    max-width: 40rem;
    border-radius: 0.5rem;
    color: whitesmoke;
    z-index: 3;
}

.show-session-modal {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.session-identification-container {
    display: block;
    margin: 1rem 0;
}

.session-identification {
    display: inline-block;
    padding: .1rem 1rem;
    font-size: 3rem;
    font-weight: bolder;
    border-style: solid;
    border-color: coral;
    border-radius: 15px;
}

@media screen and (max-width: 992px) {
    .session-identification {
        font-size: 2.5rem;
        padding: .1rem .8rem;
    }
  }

@media screen and (max-width: 768px) {
    .session-identification {
        font-size: 2rem;
        padding: .1rem .7rem;
    }
  }

/* The animation code */
@keyframes loading-animation {
0% {
    left: 0;
  }
100% {
    left: calc(100% - 3vw);
  }
}

.loading-bar-container {
    display: block;
    position: relative;
    flex-direction: row;
    margin: .5rem 0;
}

.loading-bar {
    position: absolute;
    left: 0;
    height: .3rem;
    background-color: gray;
    width: 3vw;
    animation-name: loading-animation;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate-reverse;
    animation-timing-function: ease-in-out;
}

.session-properties {
    margin-top: 35px;
    padding-top: 10px;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    border-top-style: solid;
    border-top-width: thin;
    border-color: orange;
}

@media screen and (max-width: 992px) {
    .session-properties {
        width: 60%;
    }
  }

@media screen and (max-width: 768px) {
    .session-properties {
        width: 80%;
    }
  }

.session-property-startpoints {
    font-weight: bold;
}

.session-users {
    display: inline-block;
    color: whitesmoke;
}

.session-user {
    font-family: monospace;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.session-user::before { 
    display: inline-block;
    content: "";
    background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' d='M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6z' clip-rule='evenodd'/></svg>");
    background-repeat: no-repeat;
    background-size: 28px 28px;
    height: 28px;
    width: 28px;
    margin-right: 1rem;
}

/*
.session-user::before { 
    display: inline-block;
    content: "";
    background-image: url("../img/bootstrap-icons/person-fill.svg");
    background-repeat: no-repeat;
    background-size: 32px 32px;
    height: 32px;
    width: 32px;
    margin-right: 1rem;
}
*/

.session-buttons {
    margin: 1rem 0 0 0;
}

.btn-close-session {
    background-color: transparent;
    color: white;
    border-color: coral;
    border-style: solid;
    border-width: medium;
    border-radius: 20px;
    margin: 0 0 0 .2rem;
}

.btn-close-session:hover {
    background-color: coral;
    border-color: coral;
    border-style: solid;
    border-width: medium;
    border-radius: 20px;
}

.btn-start-session {
    background-color: transparent;
    color: white;
    border-color: darkseagreen;
    border-style: solid;
    border-width: medium;
    border-radius: 20px;
    margin: 0 .2rem 0 0;
}

.btn-start-session:hover {
    background-color: darkseagreen;
    border-color: darkseagreen;
    border-style: solid;
    border-width: medium;
    border-radius: 20px;
}

@media screen and (max-width: 768px) {
    .btn-start-session, .btn-close-session {
        font-size: 1rem;
        padding: .3rem .8rem;
    }
  }