#webcam_overlay {
    display:none;
    position: fixed;
    background-color: white;
    top: 0px;
    left: 0px;
    width: 100vw;
    z-index: 99;
    height: 100%;
}

.d-none {
  display: none !important;
}

  .md-modal {
    margin: auto;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      width: 100vw;
      height: 100vh;
      z-index: 2000;
      visibility: hidden;
      -webkit-backface-visibility: hidden;
      -moz-backface-visibility: hidden;
      backface-visibility: hidden;
      text-align: center;
  }
  
  .md-show {
      visibility: visible;
  }
  
  .md-overlay {
      position: fixed;
      width: 100%;
      height: 100%;
      visibility: hidden;
      top: 0;
      left: 0;
      z-index: 1000;
      opacity: 0;
/*background-color: #613105;
    opacity: .95;*/
      background: rgba(#f17c0d, 0.8);
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      transition: all 0.3s;
  }
  
  .md-show ~ .md-overlay {
      opacity: 1;
      visibility: visible;
  }
  
  .md-effect-12 .md-content {
      -webkit-transform: scale(0.8);
      -moz-transform: scale(0.8);
      -ms-transform: scale(0.8);
      transform: scale(0.8);
      opacity: 0;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      transition: all 0.3s;
  }
  
  .md-show.md-effect-12 ~ .md-overlay {
      background-color: #f17c0d;
  } 
  
  .md-effect-12 .md-content h3,
  .md-effect-12 .md-content {
      background: transparent;
  }
  
  .md-show.md-effect-12 .md-content {
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1);
      opacity: 1;
  }

.controlbutton {
  flex: auto;
  white-space: pre-line;
}

.form-control.webcam-start{
    position: relative;
    background: black;
    opacity: 0.8;
    padding: 10px 20px;
    border: none;
    color: white;
    text-shadow: 1px 1px #000;
    font-size: 1.2rem;
    width: 350px;
    height: 55px;
    z-index: 9999;
    top: 45%;
    left: 0;
    right: 0;
    margin: auto;
}


.form-switch {
  display: inline-block;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.form-switch i {
  position: relative;
  display: inline-block;
  margin-right: .5rem;
  width: 60px;
  height: 30px;
  background-color: #e6e6e6;
  border-radius: 25px;
  vertical-align: text-bottom;
  transition: all 0.3s linear;
}

.form-switch i::before {
  content: "";
  position: absolute;
  left: 0;
  width: 56px;
  height: 25px;
  background-color: #fff;
  border-radius: 15px;
  transform: translate3d(2px, 2px, 0) scale3d(1, 1, 1);
  transition: all 0.25s linear;
}

.form-switch i::after {
  content: "";
  position: absolute;
  left: 0;
  width: 26px;
  height: 26px;
  background-color: #fff;
  border: 1px solid grey;
  border-radius: 15px;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
  transform: translate3d(2px, 2px, 0);
  transition: all 0.2s ease-in-out;
}

.form-switch:active i::after {
  width: 60px;
  transform: translate3d(2px, 2px, 0);
}

.form-switch:active input:checked + i::after { transform: translate3d(16px, 2px, 0); }

.form-switch input { display: none; }

.form-switch input:checked + i { background-color: #4BD763; }

.form-switch input:checked + i::before { transform: translate3d(18px, 2px, 0) scale3d(0, 0, 0); }

.form-switch input:checked + i::after { transform: translate3d(30px, 2px, 0); }

.form-switch input:disabled + i { background-color: #eeeeee; cursor: not-allowed; }

.form-switch input:disabled + i::after {
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.10);
}

#cameraFlip {
  width: 70px;
  height: 55px;
  margin-left: 40px;
  margin-top: -10px;
  position: absolute;
  cursor: pointer;
  background-color: black;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../media/camera_flip_white.png);
  background-size: cover;
}

.cameraControls {
  position: absolute;
  bottom: 10vh;
  width: 100%;
  z-index: 99999;
  background: transparent;
  opacity: 0.7;
  padding: 10px;
  display: flex;
}

.material-icons{
  font-size: 50px !important;
  color: white;
  width: 80px;
  height: 80px;
  background-color: black;
  border-radius: 50%;
  padding-top: 15px;
  margin: 0 10px;
}
.material-icons.small{
  font-size: 30px !important;
  width: 60px;
  height: 60px;
}

#canvas{
  background-color: transparent;
/*  position: absolute;
  width: auto;*/
  /*height: 100vh;*/
/*  z-index: 9999;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;*/
  max-width: 100%;
  display: block;
}
#canvascontainer {
  position: absolute;
  width: auto;
  height: 360px;
  z-index: 9999;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  text-align: -moz-center;
  text-align: -webkit-center;
}
