﻿/* Copyright 2018-2020 Epic Systems Corporation */
#mainContainer {
  width: 100%;
  position: absolute;
  background-color: #000000;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
}

#statusBar {
  height: 0px;
  background-color: #363636;
  flex-grow: 0;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}
#statusBar #statusText {
  padding: 5px;
  color: #ffffff;
  font-size: 22px;
}

#embedContainer {
  flex: 1;
}

.embeddedContent {
  width: 100%;
  height: 100%;
}

#providerConnectionContainer {
  width: 100%;
  height: 100%;
  position: fixed;
}

#providerConnectionFullOverlay {
  background-color: rgba(0, 0, 0, 0.6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#providerConnectionStripe {
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

#providerConnectionText {
  color: #ffffff;
  font-size: 30px;
  width: auto;
  padding: 10px;
}

.blueBtn.chrome, .blueBtn.notChrome {
  min-width: 175px;
  padding: 6px;
  margin-top: 10px;
  width: auto;
}

.blueBtn.chrome {
  min-width: 235px;
}

.blueBtn {
  background-color: #2f95ba;
}

#installPluginContainer, #alertContainer, #configurationContainer {
  top: 0;
  background-color: transparent;
  z-index: 50;
  height: 100%;
}

#alertContainer {
  margin: auto;
  right: 0;
  text-align: center;
  left: 0;
  position: absolute;
  width: 100%;
  display: table;
}

#alertTitleLabel, .installPluginTitle {
  background-color: #4d4d4d;
  font-size: 30px;
}

#alertButtonsContainer {
  bottom: 0;
  left: 0;
  margin-top: 17px;
  right: 0;
}

#alertBodyContainer, .installPluginTextDiv {
  margin-left: 15px;
  margin-right: 15px;
  margin-top: 20px;
}

#alertBodyLabel, .installPluginText {
  font-size: 21px;
}

.overlay {
  background-image: linear-gradient(0deg, #000000, #4d4d4d);
  box-shadow: 0 -20px 100px 25px rgba(0, 0, 0, 0.75) inset;
  display: none;
  height: 100%;
  left: 0;
  opacity: 1;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}

#alertBtn, #confirmSettingsBtn, #cancelSettingsBtn {
  font: 18px Segoe UI;
  padding: 6px;
}

#alertBodyContainer, #alertTitleContainer {
  margin-bottom: 10px;
}

#alertContentContainer {
  margin-top: 0;
  text-align: center;
  top: 0;
  width: 500px;
  border: 1px solid #ffffff;
  display: inline-block;
  vertical-align: middle;
  background-color: #000000;
}

#alertContentWrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

button {
  font: 18px Segoe UI;
  color: #ffffff;
  border: none;
  width: 120px;
  padding: 6px;
  margin-right: 3px;
  margin-left: 3px;
  margin-bottom: 10px;
  border: none;
  box-shadow: none;
  cursor: pointer;
}

p, span {
  font: 18px Segoe UI;
  color: #ffffff;
  margin: 0;
}

.showContainer {
  visibility: visible;
}

.hideContainer {
  visibility: hidden;
}

.displayNone {
  display: none;
}

.main {
  background-color: #000000;
  height: 100%;
  margin: auto;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  min-width: 600px;
  min-height: 338px;
}

body {
  margin: 0;
  background-color: #000000;
}
