/* * {
  overflow: hidden;
  scroll-behavior: smooth;
} */
html {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

#container {
  overflow: hidden;
  scroll-behavior: smooth;
}

@font-face {
  font-family: 'MDL2';
  src: url("../fonts/mdl2.eot?v=1.0.0");
  src: url("../fonts/mdl2.eot?#iefix&v=1.0.0") format("embedded-opentype"), url("../fonts/mdl2.woff?v=1.0.0") format("woff"), url("../fonts/mdl2.ttf?v=1.0.0") format("truetype"), url("../fonts/mdl2.svg?v=1.0.0#mdl2regular") format("svg");
  font-weight: normal;
  font-style: normal
}

#container {
  position: relative;
  display: flex;
  height: 100%;
  width: 100%;
}

#callButton {
  top: 0;
  left: 0;
}

.buttonImage {
  outline: none;
  font-family: 'MDL2';
  font-size: x-large;
  color: black;
  background-color: white;
  cursor: pointer;
  border-radius: 50%;
  border: none;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  transition: all 0.3s;
}

.buttonImage.darkMode {
  color: white;
  background-color: black;
}

.buttonImage:hover {
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.25), 0 7px 7px rgba(0, 0, 0, 0.22);
  transition: all 0.3s;
}

.blackDiv {
  background-color: black;
  width: 5%;
  z-index: 6;
}

#changeCameraBlackDiv {
  background-color: black;
  width: 100%;
  height: 100%;
  display: block;
}

.relativeButton {
  position: relative;
}

#locationBox {
  display: none;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 5px;
  top: 0px;
  background-image: url(../images/gps_tracker.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  animation: up-down 750ms infinite;
}

@keyframes up-down {
  0% {
    top: -10px;
  }

  100% {
    top: 0px;
  }
}

@-webkit-keyframes up-down {
  0% {
    top: -10px;
  }

  100% {
    top: 0px;
  }
}

@-moz-keyframes up-down {
  0% {
    top: -10px;
  }

  100% {
    top: 0px;
  }
}

@-o-keyframes up-down {
  0% {
    top: -10px;
  }

  100% {
    top: 0px;
  }
}

#locationBoxText {
  display: none;
  width: 150px;
  height: 15px;
  color: white;
  position: absolute;
  right: 5px;
  top: 0px;
  text-align: end;
  z-index: 1;
  font-size: xx-small;
  animation: up-down-text 750ms infinite;
}

@keyframes up-down-text {
  0% {
    top: -5px;
  }

  100% {
    top: 5px;
  }
}

@-webkit-keyframes up-down-text {
  0% {
    top: -5px;
  }

  100% {
    top: 5px;
  }
}

@-moz-keyframes up-down-text {
  0% {
    top: -5px;
  }

  100% {
    top: 5px;
  }
}

@-o-keyframes up-down-text {
  0% {
    top: -5px;
  }

  100% {
    top: 5px;
  }
}

#confirmLocationBox {
  display: none;
  z-index: 103;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 350px;
  height: auto;
  padding: 20px;
  text-align: center;
  border-radius: 15px;
  background-color: black;
  border: solid 2px white;
  outline: none;
  color: white;
  transform: translateX(-50%) translateY(-50%);
  font-size: 15px;
}

#confirmLocationMessage {
  margin: 0px;
}

.locationButton {
  padding: 5px 20px 5px 20px;
  margin: 5px;
  outline: none;
  border: none;
  border-radius: 10%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  color: white;
  cursor: pointer;
}

#startRecordingBox, #noCameraAlertBox {
  display: none;
  z-index: 103;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 350px;
  height: auto;
  padding: 20px;
  text-align: center;
  border-radius: 15px;
  background-color: black;
  border: solid 2px white;
  outline: none;
  color: white;
  transform: translateX(-50%) translateY(-50%);
  font-size: 15px;
}

#startRecordTitleMessage,
#noCameraAlertMsg {
  margin: 0px;
}

.startRecordButton,
.noCameraAlertButton {
  padding: 5px 20px 5px 20px;
  margin: 5px;
  outline: none;
  border: none;
  border-radius: 10%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  color: white;
  cursor: pointer;
}

/* Right Function Button Css */
.rightButtonBg {
  width: 75px;
  height: 100%;
  position: absolute;
  right: 0;
}

#rightButton {
  position: absolute;
  right: 0;
  height: 100%;
  width: min-content;
  display: flex;
  flex-direction: column;
  z-index: 6;
  /* justify-content: end; */
}

.rightButtons {
  width: 40px;
  height: 40px;
  margin: 10px 20px;
  z-index: 2;
  color: white;
  background-color: transparent;
  box-shadow: none;
}

.rightButtons.darkMode {
  color: black;
  background-color: transparent;
}

#changeCameraButton::before {
  content: '\E89E';
}

#flashButtonDiv {
  position: relative;
}

.muteflashButton::before {
  content: '\E945';
}

#mutedFlashButton {
  width: 30px;
  height: 3px;
  bottom: 50%;
  left: 30%;
  /* margin: 25px 25px; */
  background-color: white;
  position: absolute;
  border: 1px;
  transform: rotateZ(45deg);
  display: block;
  outline: none;
}

#gpsTrackerButton {
  top: 0;
  position: absolute;
}

#takePhotoButton::before {
  content: '\E722';
}

#menuBarButton {
  display: none;
}

#menuBarButton::before {
  content: '';
}

#menuBar {
  display: none;
  width: 250px;
  height: auto;
  position: absolute;
  top: 20px;
  right: 80px;
  background-color: black;
}

.menuBarButtonRow {
  display: none;
  font-size: medium;
  color: white;
  justify-content: start;
  align-items: center;
  border: solid 1px white;
  width: 100%;
  box-shadow: 0 3px 6px rgb(255 255 255 / 16%), 0 3px 6px rgb(255 255 255 / 23%);
  cursor: pointer;
}

.menuBarButtonIcon {
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  outline: none;
  font-family: 'MDL2';
  font-size: x-large;
  border: none;
  cursor: pointer;
}

.menuButtonText {
  position: absolute;
  left: 50px;
}

#recordMenuButton {
  display: block;
  width: 15px;
  height: 15px;
  min-width: 15px;
  min-height: 15px;
  background-color: #FF0000;
  box-shadow: 0px 0px 0px 5px white;
  cursor: pointer;
  margin: 15px 13px;
  border-radius: 50%;
}

#offerAmountButton {
  display: none;
  position: absolute;
  top: 0;
}

#offerAmountRelativeButton {
  display: none;
}

.offerAmountButton {
  color: rgb(33, 177, 20);
  animation: offer 1000ms infinite;
}

@keyframes offer {
  0% {
    top: -10px;
  }

  100% {
    top: 0px;
  }
}

@-webkit-keyframes offer {
  0% {
    top: -10px;
  }

  100% {
    top: 0px;
  }
}

@-moz-keyframes offer {
  0% {
    top: -10px;
  }

  100% {
    top: 0px;
  }
}

@-o-keyframes offer {
  0% {
    top: -10px;
  }

  100% {
    top: 0px;
  }
}

#offerAmountText {
  display: none;
  width: auto;
  color: white;
  position: absolute;
  top: 0px;
  z-index: 1;
  font-size: xx-small;
  margin-left: 10px;
  animation: offer-text 1000ms infinite;
}

@keyframes offer-text {
  0% {
    top: -5px;
  }

  100% {
    top: 5px;
  }
}

@-webkit-keyframes offer-text {
  0% {
    top: -5px;
  }

  100% {
    top: 5px;
  }
}

@-moz-keyframes offer-text {
  0% {
    top: -5px;
  }

  100% {
    top: 5px;
  }
}

@-o-keyframes offer-text {
  0% {
    top: -5px;
  }

  100% {
    top: 5px;
  }
}

#offerAmountBox {
  display: none;
  position: absolute;
  background-color: black;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 102;
  padding: 15px 20px;
  border: solid 2px white;
  border-radius: 10px;
  width: 400px;
  text-align: center;
}

#offerAmountLabel {
  color: white;
  margin: 10px 10px 0px 10px;
  cursor: context-menu;
  word-break: break-word;
}

#offerAmountCurrency {
  color: white;
  cursor: context-menu;
  margin-right: 15px;
}

#offerAmountFigure {
  display: none;
  background-color: transparent;
  border: none;
  color: white;
  outline: none;
  text-align: left;
  font: 400 13.3333px Arial;
  word-break: break-all;
}

#offerAmountManualFigure {
  display: none;
  background-color: transparent;
  border: none;
  border-bottom: solid 1px white;
  color: white;
  outline: none;
  text-align: left;
  font: 400 13.3333px Arial;
  word-break: break-all;
}

#offerAmountReasonLabel {
  display: none;
  color: white;
  margin: 15px;
  cursor: context-menu;
  word-break: break-word;
  text-align: left;
}

#offerAmountReason {
  display: none;
  border: 1px white solid;
  border-radius: 10px;
  background-color: transparent;
  resize: none;
  width: 90%;
  height: 100px;
  color: white;
  margin: 10px 0px 0px 10px;
  outline: none;
}

#offerAmountCloseButton {
  font-family: 'MDL2';
  font-size: small;
  color: white;
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 10px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}

#offerAmountCloseButton::before {
  content: '';
}

#offerAmountSendButton {
  background-color: rgb(42, 102, 255);
  border: 0;
  border-radius: 4px;
  margin-top: 15px;
  color: white;
  padding: 5px 20px;
  outline: none;
  cursor: pointer;
}

#rcAgentAllBox {
  display: none;
  position: absolute;
  z-index: 999;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.rcBox {
  display: none;
  position: absolute;
  background-color: transparent;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  text-align: center;
  padding: 15px;
}

.rcLabel {
  color: white;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.rcButton {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  padding: 5px 30px;
  margin: 0px 5px;
  border: 1.5px solid white;
  border-radius: 5px;
}

.rcConfirmButton {
  color: white;
  background-color: rgb(63, 107, 218);
}

.rcCancelButton {
  color: white;
  background-color: rgb(57, 57, 57);
}

#rcingAgentBox {
  left: calc(50% - 38px);
  top: calc(50% - 22px);
}

#rcingAgentLabel {
  display: initial;
}

.rcSpinner {
  color: official;
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: 7px 25px;
}

.rcSpinner div {
  transform-origin: 40px 40px;
  animation: rcSpinner 1.2s linear infinite;
}

.rcSpinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 22px;
  left: 38px;
  width: 3px;
  height: 10px;
  border-radius: 20%;
  background: #fff;
}

.rcSpinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}

.rcSpinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}

.rcSpinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}

.rcSpinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}

.rcSpinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}

.rcSpinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}

.rcSpinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}

.rcSpinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}

.rcSpinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}

.rcSpinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}

.rcSpinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}

.rcSpinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}

@keyframes rcSpinner {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

#rcAgentEndCallLabel {
  display: none;
  color: white;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  position: absolute;
  background-color: transparent;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  text-align: center;
  padding: 15px;
  width: 100%;
}

#recordButton {
  display: none;
  width: 15px;
  height: 15px;
  min-width: 15px;
  min-height: 15px;
  margin: 20px 0px 20px 33px;
  background-color: #FF0000;
  box-shadow: 0px 0px 0px 5px white;
  cursor: pointer;
}

#recordButton.darkMode {
  box-shadow: 0px 0px 0px 5px black;
}

.recordButton {
  -webkit-animation: recording 1500ms infinite;
  -moz-animation: recording 1500ms infinite;
  -o-animation: recording 1500ms infinite;
  animation: recording 1500ms infinite;
}

#recordButton.darkMode.recordButton {
  -webkit-animation: recording-darkMode 1500ms infinite;
  -moz-animation: recording-darkMode 1500ms infinite;
  -o-animation: recording-darkMode 1500ms infinite;
  animation: recording-darkMode 1500ms infinite;
}

@-webkit-keyframes recording {
  0% {
    background-color: #FF0000;
    box-shadow: 0px 0px 8px 5px #FF0000, 0px 0px 0px 5px white;
  }

  50% {
    background-color: #FF0000;
    box-shadow: 0px 0px 3px 1px #FF0000, 0px 0px 0px 5px white;
  }

  100% {
    background-color: #FF0000;
    box-shadow: 0px 0px 8px 5px #FF0000, 0px 0px 0px 5px white;
  }
}

@-moz-keyframes recording {
  0% {
    background-color: #FF0000;
    box-shadow: 0px 0px 8px 5px #FF0000, 0px 0px 0px 5px white;
  }

  50% {
    background-color: #FF0000;
    box-shadow: 0px 0px 3px 1px #FF0000, 0px 0px 0px 5px white;
  }

  100% {
    background-color: #FF0000;
    box-shadow: 0px 0px 8px 5px #FF0000, 0px 0px 0px 5px white;
  }
}

@-o-keyframes recording {
  0% {
    background-color: #FF0000;
    box-shadow: 0px 0px 8px 5px #FF0000, 0px 0px 0px 5px white;
  }

  50% {
    background-color: #FF0000;
    box-shadow: 0px 0px 3px 1px #FF0000, 0px 0px 0px 5px white;
  }

  100% {
    background-color: #FF0000;
    box-shadow: 0px 0px 8px 5px #FF0000, 0px 0px 0px 5px white;
  }
}

@keyframes recording {
  0% {
    background-color: #FF0000;
    box-shadow: 0px 0px 8px 5px #FF0000, 0px 0px 0px 5px white;
  }

  50% {
    background-color: #FF0000;
    box-shadow: 0px 0px 3px 1px #FF0000, 0px 0px 0px 5px white;
  }

  100% {
    background-color: #FF0000;
    box-shadow: 0px 0px 8px 5px #FF0000, 0px 0px 0px 5px white;
  }
}


@-webkit-keyframes recording-darkMode {
  0% {
    background-color: #FF0000;
    box-shadow: 0px 0px 8px 5px #FF0000, 0px 0px 0px 5px black;
  }

  50% {
    background-color: #FF0000;
    box-shadow: 0px 0px 3px 1px #FF0000, 0px 0px 0px 5px black;
  }

  100% {
    background-color: #FF0000;
    box-shadow: 0px 0px 8px 5px #FF0000, 0px 0px 0px 5px black;
  }
}

@-moz-keyframes recording-darkMode {
  0% {
    background-color: #FF0000;
    box-shadow: 0px 0px 8px 5px #FF0000, 0px 0px 0px 5px black;
  }

  50% {
    background-color: #FF0000;
    box-shadow: 0px 0px 3px 1px #FF0000, 0px 0px 0px 5px black;
  }

  100% {
    background-color: #FF0000;
    box-shadow: 0px 0px 8px 5px #FF0000, 0px 0px 0px 5px black;
  }
}

@-o-keyframes recording-darkMode {
  0% {
    background-color: #FF0000;
    box-shadow: 0px 0px 8px 5px #FF0000, 0px 0px 0px 5px black;
  }

  50% {
    background-color: #FF0000;
    box-shadow: 0px 0px 3px 1px #FF0000, 0px 0px 0px 5px black;
  }

  100% {
    background-color: #FF0000;
    box-shadow: 0px 0px 8px 5px #FF0000, 0px 0px 0px 5px black;
  }
}

@keyframes recording-darkMode {
  0% {
    background-color: #FF0000;
    box-shadow: 0px 0px 8px 5px #FF0000, 0px 0px 0px 5px black;
  }

  50% {
    background-color: #FF0000;
    box-shadow: 0px 0px 3px 1px #FF0000, 0px 0px 0px 5px black;
  }

  100% {
    background-color: #FF0000;
    box-shadow: 0px 0px 8px 5px #FF0000, 0px 0px 0px 5px black;
  }
}

#chatBoxSend::before {
  content: '\E724';
}

.chatBoxButton {
  position: absolute;
  height: 75px;
  width: 35px;
  text-align: right;
  padding-right: 5px;
  outline: none;
  font-size: x-large;
  color: black;
  background-color: white;
  cursor: pointer;
  border: none;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 1;
}

#chatNotificationSection {
  position: absolute;
  left: 2%;
  bottom: 2%;
  max-height: 50%;
  overflow-y: auto;
  z-index: 6;
}

#chatNotificationSection::-webkit-scrollbar {
  width: 2px;
}

#chatNotificationSection::-webkit-scrollbar-track {
  background-color: #555;
}

.agentChatNotification {
  display: none;
  min-width: 300px;
  max-width: 400px;
  padding: 10px 15px;
  margin-bottom: 5px;
  margin-right: 5px;
  background-color: rgba(144, 144, 144, 0.9);
  border-radius: 1em;
  z-index: 6;
}

.chatNotificationMetadata {
  font-size: 90%;
  font-weight: bold;
}

.chatNotificationTimestamp {
  float: right;
}

.chatNotificationText {
  padding-top: 10px;
}

#zoomInButton {
  margin-bottom: 10px;
  font-size: 1em;
}

#zoomInButton:before {
  content: '\E710';
}

#zoomOutButton {
  margin-top: 30px;
  font-size: 1em;
}

#zoomOutButton:before {
  content: '\E738';
}

.zoomRangeSlider {
  width: 100%;
  text-align: center;
  /* height: 50%; */
}

/* .zoomSlider {
  -webkit-appearance: none;
  background: white;
  width: 70px;
  height: 5px;
  opacity: 2;
  writing-mode: bt-lr;
  margin: 30px 0 0 5px;
  z-index: 2;
  transform: rotate(270deg);
}

.zoomSlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  background: white;
  width: 5px;
  height: 20px;
} */

.zoomSlider {
  -webkit-appearance: slider-vertical;
  /* -webkit-appearance: none; */
  background: #d3d3d3;
  width: 10%;
  height: 150px;
  opacity: 2;
  margin: 15px 20px;
  z-index: 2;
  border-radius: 5px;
  -webkit-transition: .2s;
  transition: opacity .2s;
  writing-mode: bt-lr;
  outline: none;
}

.zoomSlider:hover {
  opacity: 1;
}

.zoomSlider::-webkit-slider-thumb {
  /* -webkit-appearance: slider-vertical; */
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  background: rgb(145, 145, 145);
  width: 15px;
  height: 15px;
  border-radius: 50%;
}

.zoomSlider::-moz-range-thumb {
  cursor: pointer;
  background: rgb(145, 145, 145);
  width: 15px;
  height: 15px;
  border-radius: 50%;
}

.zoomSlider::-webkit-slider-runnable-track {
  height: 10px;
  -webkit-appearance: none;
  color: #4CAF50;
  margin-top: -1px;
}

/* Bottom Button Css */

#bottomButton {
  z-index: 2;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: auto;
  padding: 15px 0px;
  margin: 15px 0px;
  display: none;
  text-align: center;
}

#bottomButton.withBackground {
  margin-left: calc(100vw * (5/100));
}

.bottomButtons {
  padding: 15px;
  margin: 5px 20px 0px 20px;
  z-index: 2;
}

/* #pauseVideoButton {
  background-color: white;
  width: 58px;
  height: 58px;
  border: white 2px solid;
}  */

.pauseVideoButton::before {
  content: '\E769';
}

.playVideoButton::before {
  content: '\E768';
}

.hangupButton {
  background-color: red;
  width: 58px;
  height: 58px;
  border: red 2px solid;
  color: white;
}

.hangupButton.darkMode {
  background-color: darkred;
  border: darkred 2px solid;
}

.hangupButton::before {
  content: '\E778';
}

.voiceButton::before {
  content: '\E720';
}

.videoButton::before {
  content: '\E714';
}

.mutedBottomButton {
  width: 30px;
  height: 3px;
  margin: 32.5px 32px;
  background-color: black;
  position: absolute;
  border: 1px;
  transform: rotateZ(45deg);
  z-index: 2;
  display: none;
  outline: none;
  cursor: pointer;
}

#bottomButton.darkMode .mutedBottomButton {
  background-color: white;
}

/* Video Css */

.videoClass {
  clear: both;
  height: 100%;
  width: 90%;
  max-height: 100%;
  max-width: 100%;
  position: relative;
  z-index: 1;
  background-color: black;
}

#videoTag {
  width: 100%;
  height: 20%;
  background: linear-gradient(to bottom, black, transparent);
  top: 0%;
  position: absolute;
  z-index: 5;
  opacity: 0;
  color: white;
  padding: 10px;
  font-family: sans-serif;
  font-size: larger;
}

#videoTag:hover {
  opacity: 1;
  transition: all .5s linear;
  z-index: 5;
}

#selfVideo {
  display: none;
  object-fit: contain;
}

.selfVideo {
  height: 100%;
  width: 100%;
  transition: opacity 1s;
  background-color: black;
  border: none;
}

.selfVideo-mini {
  border: 1px solid gray;
  bottom: 20px;
  right: 100px;
  max-height: 30%;
  max-width: 30%;
  object-fit: contain;
  position: absolute;
  transition: opacity 1s;
  z-index: 1;
  background-color: black;
}

.logo {
  bottom: 10px;
  left: 80px;
  max-height: 10%;
  max-width: 10%;
  object-fit: contain;
  position: absolute;
  transition: opacity 1s;
  z-index: 1;
}

.shareVideo-mini {
  display: none;
  border: 1px solid gray;
  top: 20px;
  right: 100px;
  max-height: 30%;
  max-width: 30%;
  object-fit: contain;
  position: absolute;
  transition: opacity 1s;
  z-index: 1;
  background-color: black;
}

.callerVideo {
  display: none;
}

/* Preview Bar Css */
.preview {
  background-color: white;
  top: calc(100% - 15px);
  overflow: auto;
  white-space: nowrap;
  width: 100%;
  position: absolute;
  z-index: 98;
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  display: none;
}

.previewHover {
  background-color: rgba(255, 255, 255, 0.8);
  top: calc(100% - 235px);
}

.previewHover .previewNavigationButton {
  top: calc(100% - 130px);
}

.previewHover .viewAllDiv {
  margin-top: 5px;
  position: fixed;
}

.previewHover #viewHalfDivButton {
  margin: 2px;
  left: 49%;
}

.previewHover #viewAllDivButton {
  display: block;
  transform: translateX(-50%) rotateX(0deg) rotateZ(270deg);
  -moz-transform: translateX(-50%) rotateX(0deg) rotateZ(270deg);
  -o-transform: translateX(-50%) rotateX(0deg) rotateZ(270deg);
  -ms-transform: translateX(-50%) rotateX(0deg) rotateZ(270deg);
}

.viewAllDiv {
  width: 100%;
  height: 20px;
  top: calc(100% - 241px);
  position: relative;
  z-index: 5;
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

#viewHalfDivButton {
  display: block;
  cursor: pointer;
  width: 25px;
  color: black;
  font-family: 'MDL2';
  font-size: larger;
  font-weight: bold;
  position: absolute;
  left: 50%;
  margin: -5px 2px 2px;
  cursor: pointer;
  text-align: center;
  transform: translateX(-50%) rotateX(0deg) rotateZ(270deg);
  -moz-transform: translateX(-50%) rotateX(0deg) rotateZ(270deg);
  -o-transform: translateX(-50%) rotateX(0deg) rotateZ(270deg);
  -ms-transform: translateX(-50%) rotateX(0deg) rotateZ(270deg);
}

#viewHalfDivButton::before {
  content: '\E76C';
}

.viewZeroDivPreviewButton {
  bottom: 1px;
  animation-name: shake;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in;
}

@keyframes shake {
  0% {
    bottom: 1px
  }

  4% {
    bottom: 2px
  }

  8% {
    bottom: 3px
  }

  12% {
    bottom: 4px
  }

  16% {
    bottom: 4px
  }

  20% {
    bottom: 3px
  }

  24% {
    bottom: 2px
  }

  28% {
    bottom: 1px
  }
}

.viewHalfDivPreviewButton {
  margin: 0px;
  transform: translateX(-50%) rotateX(180deg) rotateZ(270deg) !important;
  -moz-transform: translateX(-50%) rotateX(180deg) rotateZ(270deg) !important;
  -o-transform: translateX(-50%) rotateX(180deg) rotateZ(270deg) !important;
  -ms-transform: translateX(-50%) rotateX(180deg) rotateZ(270deg) !important;
}

.viewHalfDivPreviewButton::before {
  content: '\E76C' !important;
}

#viewAllDivButton {
  display: none;
  cursor: pointer;
  width: 25px;
  color: black;
  font-family: 'MDL2';
  font-size: larger;
  font-weight: bold;
  position: absolute;
  left: 51%;
  margin: 2px;
  text-align: center;
}

#viewAllDivButton::before {
  content: '\E76C';
}

.viewAllDivPreviewButton {
  margin: 0px;
  transform: translateX(-50%) rotateX(180deg) rotateZ(270deg) !important;
  -moz-transform: translateX(-50%) rotateX(180deg) rotateZ(270deg) !important;
  -o-transform: translateX(-50%) rotateX(180deg) rotateZ(270deg) !important;
  -ms-transform: translateX(-50%) rotateX(180deg) rotateZ(270deg) !important;
}

.viewAllDivPreviewButton::before {
  content: '\E76C' !important;
}

.viewAllPreview {
  top: 0;
  overflow: auto;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 6;
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  display: block;
  background-color: rgba(255, 255, 255, 0.9);
}

.viewAllPreviewDiv {
  width: 100%;
  height: 10px;
  top: 0px;
  position: relative;
  z-index: 5;
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

#viewAllPreviewDiv::before {
  content: '\E76C';
}

.previewFuncDiv {
  position: relative;
  height: 200px;
  width: 50px;
  padding: 0px 15px 0px 5px;
  display: none;
  float: left;
}

.previewWrapFuncDiv {
  position: absolute;
  display: flex;
  height: 200px;
  width: 50px;
  padding: 0px 10px 0px 15px;
  flex-direction: column;
  float: left;
  justify-content: space-evenly;
}

.previewFunctionButton {
  width: 40px;
  height: 40px;
}

.previewFunctionButton:hover {
  width: 41px;
  height: 41px;
}

#sendImagesButton::before {
  content: '\E72D';
}

.previewNavigationButton {
  position: fixed;
  z-index: 5;
  display: none;
  bottom: 0;
  width: 40px;
  height: 40px;
  top: calc(100% - 0px);
  margin: 10px;
}

#leftNavigationButton {
  left: 0;
}

#leftNavigationButton::before {
  content: '\E76B';
}

#rightNavigationButton {
  right: 0;
}

#rightNavigationButton::before {
  content: '\E76C';
}

.previewSubDiv {
  position: relative;
  height: 200px;
  width: auto;
  display: inline-block;
  margin: 20px 0px 10px 10px;
  border-radius: 3px;
  border: 3px solid #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  transition: all 0.3s;
}

.previewSubDiv:hover {
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.4), 0 7px 7px rgba(0, 0, 0, 0.37);
  transition: all 0.3s;
}

.previewSubDiv:hover .removeImageButton,
.previewSubDiv:hover .photoTaggingButton {
  display: block;
}

.pdfIconDiv {
  background-image: url(../images/pdf-icon.png);
  background-size: cover;
  height: 30px;
  width: 30px;
  position: absolute;
  border-radius: 5px;
  background-color: rgba(125, 125, 125, 0.2);
  opacity: 0.7;
}

.removeImageButton {
  position: absolute;
  color: white;
  background-color: red;
  top: 0;
  right: 0;
  margin: 5px 3px;
  padding: 5px 5px;
  font-size: small;
  display: none;
  z-index: 1;
}

.removeImageButton::before {
  content: '\E711';
}

.removeImageButton:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25), 0 5px 5px rgba(0, 0, 0, 0.22);
}

.imageCheckBox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 25px;
  width: 25px;
  right: 0;
  bottom: 0
}

.imageCheckMark {
  position: absolute;
  bottom: 2.5%;
  right: 2%;
  height: 23px;
  width: 23px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.imageCheckIcon {
  position: absolute;
  top: 0;
  right: 0;
  padding: 4px;
  color: rgba(0, 0, 0, 0.5)
}

/* Image Box Css */

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

#imageBox {
  display: none;
  z-index: 100;
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  border: white solid 5px;
  text-align: center;
  border-radius: 15px;
  background-color: black;
}

#takePhotoCanvas {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0;
  margin: auto;
}

.imageBoxBehind {
  position: absolute;
  top: 0;
  left: 0;
  background: #000000;
  z-index: 50;
  width: 100%;
  height: 100%;
  filter: blur(10px);
  -webkit-filter: blur(50px);
}

#palette {
  position: absolute;
  bottom: 0;
  width: auto;
  height: auto;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 5px 5px 0 0;
}

.paletteButton {
  border: white solid 2px;
  z-index: 100;
  cursor: pointer;
  outline: none;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  transition: all 0.3s;
  width: 37px;
  height: 37px;
  margin: 8px;
}

#paletteLive {
  /* position: absolute; */
  width: auto;
  height: auto;
  /* bottom: 15px; */
  border-radius: 5px;
}

.paletteButtonLive {
  border: white solid 2px;
  z-index: 100;
  cursor: pointer;
  outline: none;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  transition: all 0.3s;
  width: 37px;
  height: 37px;
  margin: 10px 7px;
}

.paletteButton:hover {
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.4), 0 7px 7px rgba(0, 0, 0, 0.37);
  transition: all 0.3s;
}

.paletteButtonLiveActive {
  width: 42px;
  height: 42px;
  box-shadow: 0px 0px 8px 2px rgba(255, 255, 255, 1);
}

.pagingText {
  color: #737373;
  font-family: arial;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: auto;
  font-size: larger;
  margin: 10px;
  z-index: 99;
}


.functionButtons {
  z-index: 100;
  width: 40px;
  height: 40px;
  margin: 20px;
  position: absolute;
  transition: all 0.3s;
}

.functionButtons:hover {
  width: 42px;
  height: 42px;
  transition: all 0.3s;
}

#closeButton {
  top: 0;
  right: 10px;
  background-color: red;
  color: white;
  border-color: white;
}

#closeButton::before {
  content: '\E711';
}

#undoButton {
  bottom: 0;
  left: 0;
}

#undoButton::before {
  content: '\E7A7';
}

#undoIframeButton {
  margin: 15px;
  z-index: 2;
}

#undoIframeButton::before {
  content: '\E7A7';
}


#drawIframeButton {
  margin: 25px;
}

#drawIframeButton::before {
  content: '\EF15';
  /**content: '\E771';**/
  /**content: '\ED63';**/
  /**content: '\EDC6';**/
  /**content: '\EE56';**/
  /**content: '\EF15';**/
}

#saveButton {
  bottom: 10px;
  right: 10px;
}

#saveButton::before {
  content: '\E73E';
}

.annotateLiveDiv {
  /* position: absolute; */
  width: auto;
  height: auto;
  border-radius: 5px 5px 0 0;
}

.annotateText {
  outline: none;
  border: none;
  resize: none;
  border-radius: 5px;
  background: rgba(102, 153, 204, 0.2);
  font-size: larger;
}

.annotateText::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.annotateText::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.annotateText::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
.annotateText::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.annotateText:active {
  cursor: grabbing;
}

.annoteButton {
  width: 25px;
  height: 25px;
  z-index: 100;
  margin: 0px 5px 10px 0px;
  position: absolute;
  transition: all 0.3s;
  font-size: x-small;
  background: rgba(255, 255, 255, 0.8);
}

.annoteButton:hover {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.annotateClose {
  right: 0;
  /* bottom: 0; */
}

.annotateClose::before {
  content: '\E711';
}

.annotateWrite {
  right: 0;
  /* bottom: 0; */
  margin-right: 40px;
}

.annotateWrite::before {
  content: '\E73E';
}

.navigationButtons {
  z-index: 100;
  width: 40px;
  height: 40px;
  margin: 0px 30px;
  position: absolute;
}

#nextButton {
  bottom: 50%;
  right: 0;
  display: block;
}

#nextButton::before {
  content: '\E76C';
}

#previousButton {
  bottom: 50%;
  left: 0;
  display: block;
}

#previousButton::before {
  content: '\E76B';
}

#nextLiveImageButton {
  bottom: 50%;
  right: 0;
  display: block;
}

#nextLiveImageButton::before {
  content: '\E76C';
}

#previousLiveImageButton {
  bottom: 50%;
  left: 0;
  display: block;
}

#previousLiveImageButton::before {
  content: '\E76B';
}

#mapBox {
  display: none;
  z-index: 100;
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  border: white solid 5px;
  text-align: center;
  border-radius: 15px;
  background-color: white;
  outline: none;
}

.mapBoxBehind {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 50;
  width: 100%;
  height: 100%;
  filter: blur(50px);
  -webkit-filter: blur(50px);
}

#mapFuncDiv {
  width: 100%;
  height: 60px;
  position: absolute;
  top: 0;
}

.mapButtons {
  outline: none;
  font-family: 'MDL2';
  font-size: x-large;
  color: black;
  background-color: white;
  cursor: pointer;
  border: none;
  width: 40px;
  height: 40px;
  margin: 10px 9px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  position: absolute;
  right: 55px;
}

#closeMapButton::before {
  content: '\E711';
}

#addressInput {
  box-sizing: border-box;
  font-size: 16px;
  font-family: 'MDL2';
  padding: 12px 15px 12px 15px;
  border: none;
  border-bottom: 1px solid #ddd;
  outline: none;
  width: 100%;
}

.addressDropDownDiv {
  display: block;
  position: absolute;
  top: 0;
  left: 15%;
  background-color: #f6f6f6;
  min-width: 230px;
  max-width: 400px;
  overflow: auto;
  border: 1px solid #ddd;
  z-index: 1;
  margin: 10px 9px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.addressDropDownDiv a {
  color: black;
  padding: 12px 15px;
  text-decoration: none;
  display: block;
  font-family: 'MDL2';
  text-align: left;
}

.addressDropDownDiv a:hover {
  background-color: #ddd;
}

.chatButton {
  width: 25px;
  height: 80px;
  background-color: ghostwhite;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border: none;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

#openChatButton {
  width: 30px;
  position: absolute;
  left: -20px;
  top: 40%;
  font-size: 1.3em;
}

#openChatButton:hover {
  left: 0;
}

.photoNotification {
  bottom: 10px;
  height: 30px;
  overflow: auto;
  white-space: nowrap;
  width: 100%;
  position: absolute;
  z-index: 99;
}

#photo-count {
  z-index: 3;
  position: absolute;
  border: .5px solid white;
  background-color: black;
  margin-left: 51%;
  margin-top: 7px;
  text-align: center;
  padding: 3px;
  min-width: 15px;
  min-height: 15px;
  border-radius: 50%;
  font-size: .7em;
  font-weight: bold;
  display: table;
  vertical-align: baseline;
  text-align: center;
  line-height: 15px;
}

#unread-chat {
  position: absolute;
  top: -10px;
  left: 15px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  border: .5px solid white;
  background-color: #000000eb;
  z-index: 3;
  line-height: 90%;
  animation-name: bounceY;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

#unread-chat-count {
  padding: 10%;
  color: white;
  font-size: .5em;
  font-weight: bold;
  vertical-align: middle;
}

.mdl2-circle {
  position: absolute;
  top: 50%;
  font-size: .2em;
}

.mdl2-circle::before {
  content: '\EA3B';
}

#chat-dot-1 {
  left: 10%;
}

#chat-dot-2 {
  left: 38%;
}

#chat-dot-3 {
  left: 65%;
}

#closeChatButton {
  position: absolute;
  left: 100%;
  top: 25%;
}

#closeChatButton::before {
  content: '\E76B';
}

#chatSection {
  position: absolute;
  left: -50%;
  bottom: 0;
  height: 75%;
  width: 22%;
  padding-bottom: 1%;
  border-radius: 8px 8px 0 0;
  transition: all .3s ease-in-out;
  z-index: 98;
  background-color: rgba(255, 255, 255, 0.2);
}

#chatBox {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

#chatBoxBody {
  padding: 0 5px;
  margin-top: 5px;
  overflow: auto;
  flex-grow: 20;
}

#chatBoxBody::-webkit-scrollbar {
  background: none;
}

.chatAgent {
  color: rgb(66, 161, 240);
}

.chatClaimant {
  color: rgb(255, 178, 0);
}

.chatLabel {
  display: inline-block;
  width: fit-content;
  padding: 2px 5px;
  font-size: .8em;
  border: 1px solid grey;
  border-radius: 10px;
  vertical-align: top;
}

.chatContent {
  width: 100%;
  padding-left: 5px;
  padding-top: 2px;
  padding-bottom: 7px;
  font-size: .9em;
  font-weight: bold;
  word-break: break-word;
}

.chatContentTimestamp {
  display: inline-block;
  width: fit-content;
  margin-left: 2%;
  font-size: .6em;
  color: darkgrey;
}

#chatBoxAction {
  display: flex;
  width: 100%;
  padding-top: 1%;
  flex-grow: 1;
  flex-basis: 0;
}

#chatBoxInput {
  padding: 2% 1% 2% 2%;
  border: 1px solid #ffffff50;
  border-radius: 5px;
  color: ghostwhite;
  background-color: #69696970;
  resize: none;
  flex-grow: 20;
}

#chatBoxInput::-webkit-scrollbar {
  background: none;
}

#chatBoxInput::placeholder {
  padding-top: 1%;
  font-size: .7em;
}

#chatBoxInput:focus {
  outline: none;
}

#chatBoxSend {
  margin: 0 1%;
  padding: 0;
  border: none;
  background-color: transparent;
  color: whitesmoke;
  font-size: 25px;
  flex-grow: 3;
  text-align: right;
}

#chatBoxSend:focus {
  outline: none;
}

.mdl2icon {
  font-family: 'MDL2';
}

.hide {
  display: none;
}

.active {
  display: block !important;
}

.cameraBox {
  display: none;
  z-index: 100;
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  padding: 0;
  outline: none;
  font-family: sans-serif;
  border: none;
  text-align: center;
  color: rgb(255, 255, 255);
  background-color: rgba(0, 0, 0, 1);
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.25);
}

.techError {
  display: none;
  z-index: 100;
  width: 100%;
  height: auto;
  position: absolute;
  transform: translateY(-50%);
  left: 0;
  padding: 0;
  outline: none;
  font-family: sans-serif;
  border: none;
  text-align: center;
  color: rgb(177, 173, 173);
  background-color: rgba(0, 0, 0, 1);
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.25);
  font-size: small;
  bottom: 0%;
}

.callBox {
  display: none;
  z-index: 100;
  width: 100%;
  height: 100%;
  position: absolute;
  outline: none;
  font-family: sans-serif;
  border: none;
  text-align: center;
  color: rgb(255, 255, 255);
  background-color: rgba(0, 0, 0, 1);
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.25);
}

.callBoxText {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.downloadRawFile {
  cursor: pointer;
  text-decoration: underline;
}

.cameraBoxButton {
  outline: none;
  color: black;
  background-color: white;
  cursor: pointer;
  border: none;
  width: auto;
  height: auto;
  font-size: inherit;
  font-family: inherit;
  padding: 10px 5px;
  margin-top: 20px;
  width: 80px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.85);
}

.cameraBoxButton:hover {
  background-color: rgba(255, 255, 255, 1);
}

.cameraBoxButton:active {
  background-color: rgba(255, 255, 255, 0.9);
}

#videoSrcList {
  height: 30px;
  width: 30%;
}

#cameraBoxBehind {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 1);
  z-index: 100;
  width: 100%;
  height: 100%;
}

@-webkit-keyframes bounceY {
  0% {
    transform: translateY(0);
  }

  10% {
    transform: translateY(-5px);
  }

  20% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-3px);
  }

  40% {
    transform: translateY(0);
  }
}

@keyframes bounceY {
  0% {
    transform: translateY(0);
  }

  10% {
    transform: translateY(-5px);
  }

  20% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-3px);
  }

  40% {
    transform: translateY(0);
  }
}

.lowBandwidthMsg {
  display: none;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.3);
}

#lowBandwidthMsgDiv {
  margin: auto;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  color: white;
  font-size: medium;
  width: 90%;
  padding: 15px;
}

#lowBandwidthBottomButton {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: auto;
  padding: 15px 0px;
  margin: 15px 0px;
  text-align: center;
}

#closeLoaderButton {
  top: 0;
  right: 10px;
  background-color: red;
  color: white;
  border-color: white;
  padding: 0px;
}

#closeLoaderButton::before {
  content: '\E711';
}

.loadingScreen {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  width: 100%;
  height: 100%;
}

#videoLoader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
}

#loaderText {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  margin: 0;
  color: white;
}

.loader {
  border-radius: 50%;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

.smallLoader {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid rgba(255, 255, 255, 0.1);
  border-bottom: 5px solid rgba(255, 255, 255, 0.1);
}

.largeLoader {
  width: 90px;
  height: 90px;
  border: 8px solid #f3f3f3;
  border-top: 8px solid #00000000;
  border-bottom: 8px solid #00000000;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*added for cobrowse */

html body {
  background-color: rgba(0, 0, 0, 1.00);
}

#liveAnnotationButton {
  top: 0;
  left: 0;
}

#liveAnnotationButton::before {
  content: '\E7C5';
}

#cobrowseButton {
  bottom: 25%;
  right: 1%;
  border: 2px solid white;
  transition: all .5s linear;
}

#cobrowseFrameDiv {
  height: 100%;
  width: 100%;
  position: absolute;
  bottom: -100vh;
  z-index: 99;
  transition: all .3s linear;
}

#cobrowseFrameTabbar {
  width: 100%;
}

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

#center-layout {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 550px;
  height: 100%;
}

.upper-button {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.bottom-button {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.black-pick:hover {
  background-color: #000;
  border-color: #000;
}

.black-pick {
  background-color: #202020;
  border-color: #202020;
}

#sketchapp {
  background-color: black;
}

.sketchapp-agent {
  height: 100%;
}

/* .sketchapp-claimant {
  width: 500px;
} */

#sketchContainer {
  position: relative;
  width: auto;
  top: 0;
  height: 100% !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container-fluid {
  padding-right: 0px !important;
  padding-left: 0px !important;
  margin-right: auto;
  margin-left: auto;
}

@media only screen and (min-width: 768px) {

  /* For desktop: */
  #palette {
    left: 40%;
  }

  .paletteButton {
    width: 40px;
    height: 40px;
    margin: 20px;
  }
}

#alertDiv {
  position: absolute;
  height: 100%;
  width: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99;
  /* background-color: black; */
  color: white;
  font-family: Arial;
}

#successfulUploadDiv {
  position: absolute;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99;
  color: white;
  font-family: Arial;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}

#successfulSaveDiv {
  position: absolute;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99;
  color: white;
  font-family: Arial;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.buttonRow {
  display: flex;
  justify-content: space-evenly;
}

.customButton {
  margin: 20px 0 0 0;
  border-radius: 3px;
  border: none;
  font-size: 16px;
  color: white;
  padding: 10px 15px;
  text-decoration: none;
}

.acceptButton {
  background-color: #32CD32;
}

.blurWhiteBackground {
  padding: 23px 26px;
  background-color: black;
  border-radius: 20px;
  opacity: 0.5;
}

#sendImagesButton:disabled {
  color: rgba(0, 0, 0, 0.5);
}

#sendImagesButton.darkMode:disabled {
  color: rgba(255, 255, 255, 0.5);
}

.help-container {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100 !important;
  display: none;
}

.help-slide {
  height: 100%;
  width: 100%;
  display: none;
}

.pointer-container {
  width: 80px;
  height: 1px;
  background-color: white;
  position: absolute;
  left: -190%;
  top: 50%;
}

@keyframes animate {
  from {
    width: 0px;
  }

  to {
    width: "auto";
  }
}

@-webkit-keyframes animate {
  from {
    width: 0px;
  }

  to {
    width: "auto";
  }
}

@-moz-keyframes animate {
  from {
    width: 0px;
  }

  to {
    width: "auto";
  }
}

@-o-keyframes animate {
  from {
    width: 0px;
  }

  to {
    width: "auto";
  }
}

@keyframes animate-ver {
  from {
    height: 0px;
  }

  to {
    height: "auto";
  }
}

@-webkit-keyframes animate-ver {
  from {
    height: 0px;
  }

  to {
    height: "auto";
  }
}

@-moz-keyframes animate-ver {
  from {
    height: 0px;
  }

  to {
    height: "auto";
  }
}

@-o-keyframes animate-ver {
  from {
    height: 0px;
  }

  to {
    height: "auto";
  }
}

.circle {
  width: 4px;
  height: 4px;
  background-color: white;
  border: solid 1px white;
  border-radius: 50%;
  position: absolute;
  top: -3px;
  right: 0;
}

.help-bottom {
  z-index: 101;
  position: relative;
  width: 100%;
  height: auto;
  padding: 15px 0px;
  margin: 15px 0px;
  text-align: center;
}

.help-bottom-container {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 10%;
  text-align: center;
  display: inline-block;
}

.no-cursor {
  cursor: default !important;
}

.help-photo-container {
  position: absolute;
  bottom: 0;
}

#claimant-photo {
  position: relative;
  width: 90%;
}

.bg {
  height: 100%;
  width: 100%;
  position: absolute;
}

#secondSlide p {
  color: white;
  width: 400px;
  text-align: right;
  position: absolute;
  right: 0%;
  bottom: 43%;
  padding-right: 5px;
}

#secondSlide .title {
  color: #DBD9FD;
  font-weight: bold;
}

.pointer-container-bottom {
  position: absolute;
  height: 100%;
  width: 100%;
  display: inline-block;
}

.line {
  background-color: white;
  height: 85px;
  width: 1px;
  position: relative;
  animation: animate-ver 1s;
}

@media only screen and (min-width: 2000px) {
  #pointer-container-capture {
    left: calc(100% - 210px) !important;
  }

  #pointer-container-switch {
    left: calc(100% - 250px) !important;
  }

  #pointer-container-flash {
    left: calc(100% - 290px) !important;
  }

  #pointer-container-gps {
    left: calc(100% - 330px) !important;
  }

  #pointer-container-record {
    left: calc(100% - 370px) !important;
  }

  #pointer-container-offer {
    left: calc(80% - 180px) !important;
    width: 100px !important;
  }

  #pointer-container-document {
    left: calc(80% - 220px) !important;
    width: 140px !important;
  }

  #pointer-container-zoom {
    left: calc(100% - 660px) !important;
    width: 550px !important;
  }

  #pointer-container-zoom p {
    right: 105% !important;
  }
}

@media only screen and (min-height: 1000px) {
  #help-pause {
    top: calc(90% - 135px) !important;
  }

  #help-hangup {
    top: calc(90% - 190px) !important;
  }

  #help-mute {
    top: calc(90% - 270px) !important;
  }

  #help-switch {
    top: calc(90% - 350px) !important;
  }
}

@media only screen and (min-height: 740px) and (max-height: 1000px) {
  #help-pause {
    top: calc(95% - 165px) !important;
  }

  #help-hangup {
    top: calc(95% - 220px) !important;
  }

  #help-mute {
    top: calc(95% - 300px) !important;
  }

  #help-switch {
    top: calc(95% - 380px) !important;
  }
}

#help-pause {
  position: absolute;
  left: 40.7%;
  top: calc(95% - 155px);
}

#help-hangup {
  position: absolute;
  left: 47%;
  top: calc(95% - 210px);
}

#help-hangup .line {
  height: 140px;
}

#help-hangup p {
  bottom: 95.5%;
}

#help-mute {
  position: absolute;
  left: 53.3%;
  top: calc(95% - 290px);
}

#help-mute .line {
  height: 220px;
}

#help-mute p {
  bottom: 93%;
}

#help-switch {
  position: absolute;
  left: 59.3%;
  top: calc(95% - 370px);
}

#help-switch .line {
  height: 300px;
}

#help-switch p {
  bottom: 98%;
}

#secondSlide .circle {
  top: 100%;
  right: -2.4px;
}

#pointer-container-capture {
  position: absolute;
  left: calc(95% - 110px);
  top: 4%;
  width: 100px;
}

#pointer-container-switch {
  position: absolute;
  top: 12%;
  left: calc(95% - 150px);
  width: 140px
}

#pointer-container-flash {
  position: absolute;
  left: calc(95% - 190px);
  top: 19.5%;
  width: 180px;
}

#pointer-container-gps {
  position: absolute;
  left: calc(95% - 230px);
  top: 27.5%;
  width: 220px;
}

#pointer-container-record {
  position: absolute;
  left: calc(95% - 270px);
  top: 35%;
  width: 260px;
}

#pointer-container-offer {
  position: absolute;
  left: calc(75% - 110px);
  top: 44%;
  width: 120px;
}

#pointer-container-document {
  position: absolute;
  left: calc(75% - 170px);
  top: 50%;
  width: 180px;
}

#pointer-container-zoom {
  position: absolute;
  left: calc(95% - 510px);
  top: 58%;
  width: 500px;
}

@media only screen and (orientation: portrait) {
  #firstSlide.help-slide {
    background-image: url("../images/agent_screen_vertical.png") !important;
  }

  .help-slide {
    background-image: url("../images/agent_screen_vertical_next.png") !important;
  }

  #pointer-container-capture {
    top: 2% !important;
    left: calc(100% - 120px);
    width: 30px;
  }

  #pointer-container-switch {
    top: 6.5% !important;
    left: calc(100% - 150px);
    width: 60px;
  }

  #pointer-container-flash {
    top: 11% !important;
    left: calc(100% - 180px);
    width: 90px;
  }

  #pointer-container-gps {
    top: 15.6% !important;
    left: calc(100% - 210px);
    width: 120px;
  }

  #pointer-container-record {
    top: 19.7% !important;
    left: calc(100% - 240px);
    width: 150px;
  }

  #pointer-container-offer {
    top: 24.6% !important;
    left: calc(70% - 150px);
    width: 80px;
  }

  #pointer-container-document {
    top: 28% !important;
    left: calc(70% - 180px);
    width: 110px;
  }

  #pointer-container-zoom {
    top: 32.5% !important;
    left: calc(100% - 500px);
    width: 410px;
  }

  #pointer-container-zoom p {
    right: 103% !important;
  }

  #agentNoteText {
    padding-left: calc(100% - 343px) !important;
  }

  #firstSlide p {
    width: 550px !important;
  }

  #help-pause {
    left: 35.3% !important;
  }

  #help-pause .line {
    height: 145px !important;
  }

  #help-hangup {
    left: 45.1% !important;
  }

  #help-hangup .line {
    height: 200px !important;
  }

  #help-mute {
    left: 55% !important;
  }

  #help-mute .line {
    height: 280px !important;
  }

  #help-mute p {
    bottom: 79% !important;
  }

  #help-switch {
    left: 64.5% !important;
  }

  #help-switch .line {
    height: 360px !important;
  }

  #secondSlide p {
    width: 300px !important;
  }

  #pointer-container-chat {
    bottom: calc(50% + 85px) !important;
  }

  #pointer-container-select {
    bottom: 8% !important;
    left: 137% !important;
  }

  #pointer-container-select .horizontal-line {
    width: 80px !important;
  }

  #pointer-container-tag-multiple {
    bottom: 45% !important;
    left: 88% !important;
  }

  #pointer-container-tag-multiple .horizontal-line {
    width: 290px !important;
  }

  #pointer-container-delete {
    bottom: 100% !important;
    left: 127% !important;
  }

  #pointer-container-delete .horizontal-line {
    width: 40px !important;
  }

  #pointer-container-tag {
    bottom: 115% !important;
    left: 81% !important;
  }

  #pointer-container-tag .horizontal-line {
    width: 180px !important;
  }

  #pointer-container-tag .vertical-line-2 {
    height: 60px !important;
  }

  #pointer-container-share {
    bottom: 105% !important;
    left: 55% !important;
  }

  #pointer-container-share .horizontal-line {
    width: 195px !important;
  }

  #pointer-container-share .vertical-line {
    height: 230px !important;
  }

  #pointer-container-share .vertical-line-2 {
    height: 160px !important;
  }

  #claimant-photo {
    transform: scale(1.3) !important;
    width: 100% !important;
    top: -23px !important;
    left: 31px !important;
  }

  #help-hangup p {
    bottom: 79.5% !important;
  }

  #help-mute p {
    bottom: 79% !important;
  }

  #help-switch p {
    bottom: 85% !important;
  }
}

#firstSlide.help-slide {
  background-image: url("../images/agent_screen_horizontal.png");
}

.help-slide {
  background-image: url("../images/agent_screen_horizontal_next.png");
  background-size: 100% 100%;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
}

#firstSlide .title {
  color: #FE7676;
  font-weight: bold;
}

#firstSlide p {
  width: 550px;
  text-align: right;
  color: white;
  position: absolute;
  right: 110%;
  top: -32px;
}

#help-bottom {
  text-align: center;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: auto;
}

.pointer-container-left {
  max-width: 80px;
  width: 80px;
  height: 1px;
  background-color: white;
  position: absolute;
  right: -35%;
  bottom: 10%;
  animation: animate 1s;
  -moz-animation: animate 1s;
  -webkit-animation: animate 1s;
  -o-animation: animate 1s;
}

.circle-left {
  width: 4px;
  height: 4px;
  background-color: white;
  border: solid 1px white;
  border-radius: 50%;
  position: relative;
  left: -51.5%;
  top: -4px;
}

.horizontal-line {
  width: 120px;
  height: 1px;
  background-color: white;
  position: relative;
  right: 50%;
  top: -100%;
  z-index: 999;
  animation: animate 1s;
}

@keyframes translate {
  from {
    transform: translate(0, -100%);
    opacity: 0;
  }

  to {
    transform: translate(0, 0);
  }
}

.vertical-line {
  width: 1px;
  height: 200px;
  background-color: white;
  position: relative;
  left: 50%;
  z-index: 999;
}

.help-desc {
  position: absolute;
  bottom: 77%;
  left: 52%;
  color: white;
  width: 200px;
}

.desc-bottom {
  position: relative;
  color: white;
  width: 200px;
  left: 0%;
}

#lastSlide .title {
  color: rgb(135, 182, 137);
  font-weight: bold;
}

#pointer-container-select {
  position: absolute;
  bottom: 9%;
  left: 126%;
}

#pointer-container-select .horizontal-line {
  width: 200px;
}

#pointer-container-select .vertical-line {
  height: 160px;
}

#pointer-container-tag-multiple {
  position: absolute;
  bottom: 37%;
  left: 84%;
}

#pointer-container-tag-multiple .horizontal-line {
  width: 300px;
}

#pointer-container-tag-multiple .vertical-line {
  height: 190px;
}

#pointer-container-delete {
  position: absolute;
  bottom: 80%;
  left: 103%;
}

#pointer-container-delete .horizontal-line {
  width: 90px;
}

#pointer-container-delete .vertical-line {
  height: 170px;
}

#pointer-container-tag {
  position: absolute;
  bottom: 91%;
  left: 66.5%;
}

#pointer-container-tag .help-desc {
  bottom: 88%;
}

#pointer-container-tag .horizontal-line {
  width: 165px;
}

#pointer-container-tag .vertical-line {
  height: 160px;
}

#pointer-container-tag .vertical-line-2 {
  left: -50%;
  height: 50px;
}

#pointer-container-share {
  position: absolute;
  bottom: 83%;
  left: 38.5%;
}

#pointer-container-share .help-desc {
  bottom: 86%;
}

#pointer-container-share .horizontal-line {
  width: 125px;
}

#pointer-container-share .vertical-line {
  height: 150px;
}

#pointer-container-share .vertical-line-2 {
  left: -50%;
  height: 140px;
}

.animate-opacity {
  opacity: 0;
  animation: animate-opacity 3s forwards;
}

#pointer-container-chat {
  position: absolute;
  left: 75px;
  bottom: calc(50% + 30px);
}

#pointer-container-chat .horizontal-line {
  width: 120px;
}

#pointer-container-chat .vertical-line {
  height: 220px;
}

@media only screen and (min-width: 2000px) {
  #pointer-container-chat {
    left: 95px !important;
    bottom: calc(50% + 45px) !important;
  }
}

#help-chatButton {
  width: 30px;
  position: relative;
  font-size: 1.3em;
  width: 25px;
  height: 80px;
  background-color: ghostwhite;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border: none;
}

#help-pause-container {
  position: absolute;
}

.pointer-bottom-container {
  position: relative;
  display: inline-block;
}

#pointer-container-hangup {
  position: relative;
}

#pointer-container-mute {
  position: relative;
}


#helpButton {
  z-index: 98;
  position: absolute;
  left: 1%;
  top: 2.1%;
  height: 25px;
  width: 25px;
  border: 2px solid white;
  border-radius: 50%;
  background: transparent;
  color: white;
}

#helpButton::before {
  content: "\003F";
  font-size: 12px;
  font-weight: 1000;
  color: white;
  margin: -6px;
}

#helpButton.darkMode {
  border: 2px solid black;
  color: black;
}

#helpButton.darkMode::before {
  color: black;
}

.note {
  font-size: 12px;
}

.popupBox {
  display: none;
  position: absolute;
  background-color: black;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 102;
  padding: 15px 20px;
  border: solid 2px white;
  border-radius: 10px;
  width: 400px;
  text-align: center;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  color: white;
}

/* Photo Tagging */
.photoTaggingBox {
  display: none;
  position: absolute;
  background-color: black;
  top: calc(100% - 425px);
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 102;
  border: solid 2px white;
  border-radius: 5px;
  text-align: center;
}

.photoTaggingBoxLive {
  display: none;
  position: absolute;
  background-color: black;
  top: 20px;
  left: 80px;
  z-index: 102;
  border: solid 2px white;
  border-radius: 5px;
  text-align: center;
}

.photoTaggingBehind {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 101;
  width: 100%;
  height: 100%;
  display: none;
}

#photoTaggingBoxInput {
  box-sizing: border-box;
  font-size: 16px;
  font-family: 'MDL2';
  padding: 12px 15px 12px 15px;
  border: 15px solid black;
  outline: none;
  width: 100%;
  background-color: rgb(78 78 78);
  ;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-style: italic;
}

.photoTaggingDropDownDiv {
  display: block;
  background-color: transparent;
  min-width: 350px;
  max-width: 350px;
  max-height: 260px;
  overflow: auto;
  z-index: 1;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  border-top: 1px solid #ddd;
  border-bottom: solid 2px white;
}

.photoTaggingDropDownDiv::-webkit-scrollbar {
  width: 5px;
}

.photoTaggingDropDownDiv::-webkit-scrollbar-thumb {
  background: gainsboro;
  border-radius: 20px;
}

.photoTaggingDropDownDiv a {
  padding: 12px 15px;
  text-decoration: none;
  display: block;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: white;
  border-bottom: 1px solid #ddd;
}

.photoTaggingDropDownDiv a:hover {
  background-color: rgb(111 111 111) !important;
}

.photoTaggingUnset {
  display: block !important;
}

.photoTaggingNone {
  display: none !important;
}

.photoTaggingButton {
  position: absolute;
  color: black;
  background-color: rgba(255, 255, 255, 0.5);
  top: 0;
  left: 0;
  margin: 5px 3px;
  padding: 5px 5px;
  font-size: small;
  display: none;
  z-index: 1;
}

#photoTaggingLiveButton {
  height: 40px;
  width: 40px;
  position: absolute;
  background-color: rgba(255, 255, 255, 1);
  top: 0;
  left: 0;
  margin: 20px;
  font-size: x-large;
  display: block;
  z-index: 100;
}

.photoTaggingButton::before {
  content: '';
}

#photoTaggingLiveButton::before {
  content: '';
}

.photoTaggingButton:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25), 0 5px 5px rgba(0, 0, 0, 0.22);
}

#photoTaggingAllButton:disabled {
  color: rgba(0, 0, 0, 0.5);
}

#photoTaggingAllButton.darkMode:disabled {
  color: rgba(255, 255, 255, 0.5);
}

#photoTaggingAllButton::before {
  content: '';
}

.photoTaggingLabelDiv {
  width: 150px;
  position: absolute;
  top: 0;
}

.photoTaggingLabel {
  background-color: rgba(255, 255, 255, 0.5);
  font-size: small;
  display: block;
  padding: 10px 35px;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

#photoTaggingConfirmButton {
  background-color: rgb(116, 116, 116);
}

#photoTaggingCancelButton {
  background-color: rgb(221, 0, 0);
}

.photoTaggingBoxButton {
  color: white;
  border: none;
  margin: 10px;
  width: 100px;
}

#photoTaggingLiveDiv {
  position: absolute;
  right: 80px;
  top: 0;
  width: 450px;
}

#photoTaggingLiveLabel {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  background-color: rgba(255, 255, 255, 1);
  font-size: large;
  display: block;
  padding: 15px 15px 15px 50px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  z-index: 100;
  position: absolute;
  top: 15px;
  left: 15px;
  border-radius: 50px;
  width: 150px;
  display: none;
}

/* Photo Tagging */

.errorBox {
  position: absolute;
  background-color: black;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 102;
  padding: 15px 20px;
  border: solid 2px white;
  border-radius: 10px;
  width: 400px;
  text-align: center;

  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  color: white;
}

.popupBoxText {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  color: white;
  margin: 10px 10px 0px 10px;
  cursor: context-menu;
  word-break: break-word;
}

.popupBoxButton {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  background-color: rgb(42, 102, 255);
  width: 100px;
  border: 0;
  border-radius: 4px;
  margin: 15px;
  color: white;
  padding: 5px 20px;
  outline: none;
  cursor: pointer;
}

.popupBoxCloseButton {
  font-family: 'MDL2';
  font-size: small;
  color: white;
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 10px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}

.popupBoxCloseButton::before {
  content: '';
}

#docshareButton {
  display: none;
}

#docshareSelectContainer {
  width: 95%;
  margin: auto;
  border-radius: 10px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border: 2px solid gainsboro;
  overflow-y: scroll;
}

#docshareSelectContainer::-webkit-scrollbar {
  width: 5px;
}

#docshareSelectContainer::-webkit-scrollbar-thumb {
  background: gainsboro;
  border-radius: 20px;
}

.docshare-radio-container {
  height: 15vh;
  color: white;
}

.docshare-radio-child-container {
  height: 33%;
  display: flex;
  text-align: left;
  border-bottom: 0.1px solid rgba(125, 125, 125, 0.5);
}

.docshare-radio-child-container input[type="radio"]:checked+label {
  background-color: rgba(125, 125, 125, 0.3);
}

.docshare-radio-item {
  display: none;
}

.docshare-radio-label {
  height: 100%;
  width: 100%;
  padding-left: 5%;
  border-radius: 10px;
  line-height: calc(15vh * 0.33);
  white-space: nowrap;
  overflow-x: scroll;
}

.docshare-radio-label::-webkit-scrollbar {
  display: none;
}

#pdfPreviousPageButton {
  top: 50%;
  left: 0;
  color: black;
  background-color: white;
  border-color: white;
}

#pdfPreviousPageButton::before {
  content: '\E76B';
}


#pdfNextPageButton {
  top: 50%;
  right: 0;
  margin-left: 80px;
  color: black;
  background-color: white;
  border-color: white;
  outline: none;
}

#pdfNextPageButton::before {
  content: '\E76C';
}

#pdfContainer {
  display: none;
}

.cobrowse-div {
  width: 100% !important;
}

#annotationTools {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 5px;
  margin-left: 5px;
  margin-bottom: 30px;
  max-height: 50vh;
  width: 225px;
  bottom: 0;
}

.annotationToolsButton {
  border: none;
  border-radius: 20px;
  line-height: 35px;
  background-color: white;
  box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
  width: 225px;
}

.annotationToolsButton img {
  background-color: black;
  border-radius: 50%;
  height: 20px;
  padding: 5px;
  position: absolute;
  left: 0;
  margin: 3px 3px 3px 7px;
}

.textAnnotationWindow {
  transition: 1s;
  left: 0;
  position: relative;
}

@keyframes slideIn {
  100% {
    left: 0;
  }
}

.textAnnotationWindow.hidden {
  left: -100%;
}

#signContainer {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  /* background-color: rgba(0, 0, 0, 0.6); */
  z-index: 100;
  align-items: center;
  justify-content: center;
  display: none;
}

#signContainer.showSign {
  display: flex;
}

#signWindow {
  background-color: white;
  width: 400px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 5px;
  max-width: calc(100vw - 30px);
}

#signCanvas {
  background-color: lightgray;
  border-radius: 10px;
  width: 90%;
  height: auto;
  max-width: 350px
}

#signClose {
  align-self: flex-start;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  margin: 10px 10px 10px 10px;
  width: 25px;
  height: 25px;
  font-size: 10px;
  background-color: white;
  color: black;
  border-color: black;
  border: 2px black solid;
  box-shadow: none;
  font-weight: bolder;
  padding: 0px;
}

#signClose::before {
  content: '\E711';
}

#signColorPalette {
  align-self: flex-start;
  display: flex;
  flex-direction: row;
  position: absolute;
  top: 0;
  left: 0;
  gap: 10px;
  margin: 18px 10px 10px 30px;
}


.signColorPaletteOpt {
  border-radius: 50%;
  width: 15px;
  height: 15px;
  display: block;
  position: unset;
  margin: 0px;
  border: none;
}

.signColorPaletteOpt:hover {
  width: 25px;
  height: 25px;
}

#signText {
  align-self: flex-start;
  position: absolute;
  top: 0;
  left: 0;
  margin: 20px 10px 15px 30px;
  font-size: 12px;
}

#signButtons {
  display: flex;
  align-self: flex-end;
  position: absolute;
  right: 0;
  margin: 10px 25px 10px 10px;
  gap: 5px;
}

.blueButton {
  background-color: #1f84b6;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 11px
}

#signBox {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: rgba(102, 153, 204, 0.2);
  overflow: hidden;
  resize: both;
}

.buttonApply {
  margin-top: -30px;
  position: fixed;
  right: unset;
  margin-right: unset;
  margin-left: unset;
}

.buttonApply::before {
  content: '\E73E';
}

.buttonCancel {
  margin-top: -30px;
  position: fixed;
  right: unset;
  margin-right: unset;
  margin-left: 30px;
}

.buttonCancel::before {
  content: '\E711';
}

.buttonMove {
  margin-top: -30px;
  position: fixed;
  right: unset;
  margin-right: unset;
  margin-left: -25px;
}

.buttonMove::before {
  content: '\E759';
}

#signBoxResize {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 25px;
  height: 25px;
}

#signBoxResizeButton {
  transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  position: fixed;
  text-align: center;
  vertical-align: middle;
  line-height: 25px;
  cursor: nw-resize;
}

#signBoxResizeButton::before {
  content: '\E740';
}

#increaseFontSize {
  background: url(../images/annotationIncreaseFont.png) no-repeat scroll right center;
  background-size: contain;
  background-origin: content-box;
  background-color: white;
}

#decreaseFontSize {
  background: url(../images/annotationDecreaseFont.png) no-repeat scroll right center;
  background-size: contain;
  background-origin: content-box;
  background-color: white;
}

#addNewText {
  background: url(../images/annotationAddText.png) no-repeat scroll right center;
  background-size: contain;
  background-origin: content-box;
  background-color: white;
}

.signColorActive {
  width: 20px;
  height: 20px;
  margin-top: -3px;
}
