.disabledcolorfullbutton:disabled {
  color: white;
}

.appFullScreen {
  display: flex;
  background-color: transparent;
}

.lightBackground {
  background: url('/images/bg-03.webp');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-blend-mode: overlay;
  display: grid;
  margin: 0;
  height: 100vh;  
  min-height: 600px;
  width: 100vw;
  background-color: rgba(245, 248, 248, .6);
}

.lightBackgroundLanding {
  background: url('/images/bg-03.webp');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-blend-mode: overlay;
  margin: 0;
  min-height: 600px;
  width: 100vw;
  background-color: rgba(245, 248, 248, .6);
}

.lightBackgroundNoOverflow {
  background: url('/images/bg-03.webp');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-blend-mode: overlay;
  display: grid;
  /* height: 100vh; */
  width: 100vw;
  background-color: rgba(245, 248, 248, .6);
}

.darkBackground {
  background: url('/images/bg-03.webp');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-blend-mode: color-burn;
  display: grid;
  margin: 0;
  /* height: 100vh;
  width: 100vw; */
  background-color: rgba(46, 101, 99, 1)
}

.working-hours-label {
  font-family: Raleway, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #000000;
  text-align: center;
  padding-top: 10px;
}

.working-hours-value {
  font-family: Raleway, sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: #000000;
  text-align: center;
}


.appFullView {
  display: flex;
  width: 100vw;
  background-color: transparent;
}

.fullScreenUnderAppbar {
  flex: 1;
  flex-direction: column;
  /* width: 100vw; */
  height: calc(100vh - 64px);
}

.conferenceGrid {
  display: flex;
  flex-direction: column;
  top: 64px;
}

.videoSelf {
  justify-content: center;
  width: 20vw;
  /* padding: 2px; */
  top: 0;
  right: 0;
  position: absolute;
}

.videoOtherParty {
  justify-content: center;
  width: 100vw;
  height: fit-content;

}



.connectedUsers {
  width: 100vw;
  max-height: 100px;
  background-color: white;
  opacity: 0.7;
  padding: 2px;
}

.myselfInfo {
  width: 400px;
  height: 100px;
  background-color: darkgray;
  padding: 2px;
}

