html, body, videocall {
    height: 100%
}

#videocanvas {
    
}

video {
    width: 100%;
    height: auto;
}

.video-size-slider {
    width: 100%;
    position: fixed;
    z-index: 1;
    height: 10px;
    bottom: 0;
}
.video-size-slider::-webkit-slider-thumb, .video-size-slider::-moz-range-thumb {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 0;
    -webkit-appearance: none;
    appearance: none;
    background-color: #62B16E;
    cursor: pointer;
    box-shadow: 0px 0px 5px black;
  }
  
.video-control {
    position: fixed;
    bottom: 40px;
    left: 30px;
}

.action-button {
    color: white;
    background-color: #62B16E;
    border: none;
    padding: 10px;
}

.action-button:hover {
    cursor: pointer;
    color: #62B16E;
    background-color: white;
}

button.address {
    border: none;
    margin: 5px;
    padding: 5px;
    word-break: break-all;
}

button.go-home {
    border: none;
    padding: 20px;
    border-radius: 50px;
    margin: 30px
}

.donation-container {
    text-align: center;
    position: fixed;
    top: 50%;
    left: 50%;
    min-height: fit-content;
    min-height: fit-content;
    transform: translate(-50%, -50%);
    color: white;
    width: 90%;
}

.profile-container {
    text-align: center;
    position: fixed;
    top: 50%;
    left: 50%;
    max-height: 100%;
    min-width: 80%;
    transform: translate(-50%, -50%);
    color: white;
    -ms-overflow-style: none;
    overflow: hidden;
    overflow-y: visible;
    scrollbar-width: none;
}

.profile-image {
    filter: drop-shadow(0 0 10px black)
}

.profile-image:hover {
    cursor: pointer;
}

#profile-image-input {
    width: 0;
    height: 0;
    opacity: 0;
}

.help-container {
    position: fixed;
    top: 50%;
    left: 50%;
    max-height: 100%;
    min-width: 80%;
    transform: translate(-50%, -50%);
    color: white;
    -ms-overflow-style: none;
    overflow: hidden;
    overflow-y: visible;
    scrollbar-width: none;
}

.profile-container::-webkit-scrollbar {
    display: none;
}

.call-container {
    text-align: center;
    position: fixed;
    top: 50%;
    left: 50%;
    min-height: fit-content;
    min-height: fit-content;
    transform: translate(-50%, -50%);
    color: black;
}

.call-receive-container {
    text-align: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: black;
}

.videocall-receive-container {
    text-align: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: black;
}

.videocall-container {
    display: flex;
    text-align: center;
    position: fixed;
    top: 50%;
    left: 50%;
    height: 100%;
    width: 100%;
    transform: translate(-50%, -50%);
    color: black;
}

.form-container {
    text-align: center;
    height: 400px;
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 80%;
    transform: translate(-50%, -50%);
    color: black;
}

.online-menu {
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* FIXME: Cannot click online contact */
.online-container {
    position: fixed;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.3); */
}

.online-content {
    text-align: center;
    height: 400px;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    color: black;
    -ms-overflow-style: none;
    overflow: hidden;
    overflow-y: scroll;
    scrollbar-width: none;
    /* background-color: white */
}

.online-content::-webkit-scrollbar {
    display: none;
}

.online-dot {
    min-width: 30px;
    position: absolute;
    margin-bottom: -30px;
    z-index: 2;
}

.online-add {
    min-width: 30px;
    position: absolute;
    margin-left: 65px;
    z-index: 2;
    border-radius: 20px;
    padding: 4px;
    color: #62B16E;
}

.online-entry {
    display: inline-block;
    text-align: center;
    margin: 5px;
    opacity: 1;
    transition-property: box-shadow;
    transition-duration: 0.4s;
}

.online-entry:hover, .online-entry:focus {
    cursor: pointer;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}

.online-picture {
    width: 80px;
    border-radius: 50px;
    margin: 5px;
}

.online-name {
    font-size: 14px;
    background-color: white;
    padding: 4px;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}

.nortc-version {
    position: fixed;
    bottom: 0;
    background-color: white;
}