.uppy-ScreenCapture-container {
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-direction: column;
      flex-direction: column;
}

.uppy-ScreenCapture-videoContainer {
  width: 100%;
  -ms-flex: 1;
      flex: 1;
  -ms-flex-positive: 1;
      flex-grow: 1;
  overflow: hidden;
  background-color: #333;
  text-align: center;
  position: relative;
}
.uppy-size--md .uppy-ScreenCapture-videoContainer {
  max-width: 100%;
}

.uppy-ScreenCapture-video {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  outline: 0;
}

.uppy-ScreenCapture-buttonContainer {
  width: 100%;
  height: 75px;
  border-top: 1px solid #eaeaea;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 0 20px;
  background-color: #fff;
}
[data-uppy-theme=dark] .uppy-ScreenCapture-buttonContainer {
  background-color: #1f1f1f;
  border-top: 1px solid #333;
}

.uppy-ScreenCapture-button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s;
}
.uppy-ScreenCapture-button:focus {
  outline: none;
}
.uppy-ScreenCapture-button::-moz-focus-inner {
  border: 0;
}
.uppy-ScreenCapture-button:focus {
  box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.5);
}
[data-uppy-theme=dark] .uppy-ScreenCapture-button:focus {
  outline: none;
}
[data-uppy-theme=dark] .uppy-ScreenCapture-button::-moz-focus-inner {
  border: 0;
}
[data-uppy-theme=dark] .uppy-ScreenCapture-button:focus {
  box-shadow: 0 0 0 2px rgba(170, 225, 255, 0.85);
}
.uppy-size--md .uppy-ScreenCapture-button {
  width: 60px;
  height: 60px;
}
.uppy-ScreenCapture-button:hover {
  background-color: #d31b2d;
}

.uppy-ScreenCapture-button svg {
  width: 30px;
  height: 30px;
  max-width: 100%;
  max-height: 100%;
  display: inline-block;
  vertical-align: text-top;
  overflow: hidden;
  fill: currentColor;
}

.uppy-ScreenCapture-button--submit {
  background-color: #2275d7;
  margin-left: 12px;
}
.uppy-ScreenCapture-button--submit:hover {
  background-color: #1f69c1;
}
.uppy-ScreenCapture-button--submit:disabled {
  background-color: #939393;
  cursor: default;
}
.uppy-ScreenCapture-button--submit:disabled:hover {
  background-color: #eaeaea;
}

.uppy-ScreenCapture-title {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 400;
  margin: 0;
  margin-bottom: 5px;
  padding: 0 15px;
  max-width: 500px;
  text-align: center;
  color: #333;
}

.uppy-ScreenCapture-icon--stream {
  position: absolute;
  right: 0;
  top: 0;
  margin: 1rem;
  z-index: 1;
}
.uppy-ScreenCapture-icon--stream svg {
  fill: #939393;
}

.uppy-ScreenCapture-icon--streamActive svg {
  animation: uppy-ScreenCapture-icon--blink 1s cubic-bezier(0.47, 0, 0.75, 0.72) infinite;
}

@keyframes uppy-ScreenCapture-icon--blink {
  0% {
    fill: #2275d7;
  }
  50% {
    fill: #939393;
  }
  100% {
    fill: #2275d7;
  }
}
.uppy-ScreenCapture-button--video {
  color: #fff;
  background: #e32437;
}
.uppy-ScreenCapture-button--video:hover {
  background-color: #bc1828;
}