#clientBackground {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 98vw;

    cursor: pointer;
}

#vis2MainText {
    position: absolute;
    top: 40vh;
    width: 80vw;
    margin: 0;
    margin-left: 9vw;
    margin-right: 9vw;

    font-size: 3vw;
    line-height: 3.5vw;

    background-color: #00000000;

    transition: 0.5s;
}

#loadingIcon {
    position: absolute;
    top: 60vh;
    left: calc(49vw - 40px);
    width: 80px;
    height: 80px;
    background-color: #CCC;

    animation-name: flashing;
    animation-duration: 1s;
    animation-iteration-count: infinite;

    cursor: pointer;
}

@keyframes flashing {
    0%   {opacity: 1;}
    50%  {opacity: 0;}
    100% {opacity: 1;}
}

#clientMeeting {
    display: none;
    position: absolute;
    width: 98vw;
    height: 100vh;

    background-color: #00000000;
}

#roomTour {
    width: 80vw;
    height: calc(80vh - (80vw - 30px) / 4 / 16 * 9 - 10px);
    margin-left: 9vw;
    margin-top: 10vh;
}

#clientVideos {
    width: 80vw;
    height: calc((80vw - 30px) / 4 / 16 * 9);
    margin-left: 9vw;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;

    background-color: #00000000;
}
.clientVideo {
    position: relative;
    width: calc((80vw - 100px) / 4);
    height: calc((80vw - 30px) / 4 / 16 * 9);
    background-color: #CCC;
}

.clientPhoto {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}


.clientName {
    position: absolute;
    bottom: 0;
    width: calc((80vw - 100px) / 4);
    text-align: center;
    z-index: 100;

    background-color: #242424;
}

.clientEmoji {
    position: absolute;
    
    top: 10px;
    left: 10px;
    width: 50px;
    height: 50px;

    font-size: 2.5vh;
    text-align: center;
    z-index: 100;

    background-color: #00000000;
}

#nextTourButton {
    position: absolute;

    left: 78vw;
    top: 11vh;
    width: 10vw;
    height: 4vh;

    text-align: center;
    font-size: 2vh;
    line-height: 4vh;

    z-index: 1000;

    cursor: pointer;
}

#nextTourButton:hover {
    opacity: 0.75;
}