/* Contains the styles for the note control. */

/* Contains the common CSS constants for the whole application. */
/*#region Common colors*/
/*#endregion Common colors*/
/*#region Shadow colors*/
/*#endregion Shadow colors*/
/*#region Text*/
/* Dark color for text in the application */
/*#endregion Text*/
/*#region Content constants*/
/*#endregion*/
/*#region Z-indexes*/
/* Has to be higher than map canvas. */
/* Has to be higher than expanded map place holder. */
/* Has to be higher than expand map button. */
/* The layouts z indexes are for internal purposes only.
                                They are not for styling. */
/*#endregion Z-indexes*/
/*#region Global time picker constants*/
/*#endregion Global time picker constants*/
/* Contains mixins for the application. Mixins are methods that simplify the reuse of a block of CSS
   code with parameters. */
/* The cursor is shown as a pointer over the element */
/*#region Note constants*/
/*#endregion*/

.NoteArrow {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  color: transparent;
  /*The height and the width is equal to 0 to display a triangle made by css*/
  height: 0;
  position: absolute;
  width: 0;
}
.PointingUp .NoteArrow {
  border-bottom: 7px solid white;
  margin-top: 5px;
  top: -4px;
}
.PointingDown .NoteArrow {
  border-top: 7px solid white;
  bottom: -4px;
}
.NoteBorderArrow {
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  color: transparent;
  /*The height and the width is equal to 0 to display a triangle made by css*/
  height: 0;
  position: absolute;
  width: 0;
}
.PointingUp .NoteBorderArrow {
  border-bottom: 9px solid #f0c103;
  margin-top: 5px;
  top: -7px;
}
.PointingDown .NoteBorderArrow {
  border-top: 9px solid #f0c103;
  bottom: -7px;
}
.NoteBorderArrow.AlignRight {
  left: 5px;
}
.NoteArrow.AlignRight {
  left: 7px;
}
.NoteBorderArrow.AlignLeft {
  right: 5px;
}
.NoteArrow.AlignLeft {
  right: 7px;
}
.NoteBubble {
  background-color: white;
  border: solid 2px #f0c103;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-bottom: 22px;
  padding-left: 25px;
  padding-right: 9px;
  padding-top: 6px;
  width: 225px;
}
.NoteBubble.PointingUp {
  margin-top: 5px;
}
.NoteButton {
  cursor: pointer;
  cursor: hand;
  height: 28px;
  position: relative;
  -o-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  width: 28px;
}
.NoteClose {
  cursor: pointer;
  cursor: hand;
  background-image: url("Images/CloseNotePopup.png");
  height: 16px;
  margin-left: auto;
  margin-right: 0;
  width: 16px;
}
#NotePopup {
  position: absolute;
  z-index: 10600;
}
.NoteDescription {
  font-size: 12px;
  padding-right: 16px;
}
.NoteIcon {
  height: 24px;
  left: 0;
  position: absolute;
  top: 0;
  width: 28px;
}
.NoteCode {
  color: #5b5a5a;
  left: 6px;
  position: absolute;
  text-align: center;
  top: 8px;
  width: 15px;
}
.NoteTitle {
  font-weight: bold;
  padding-right: 12px;
}
#OverlayUnderNotePopup {
  background-color: rgba(200, 200, 200, 0);
  /* Prevents note popup freeze IE9 and IE10 bug. */

  cursor: pointer;
  cursor: hand;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10500;
}
#OverlayUnderNotePopup.OverlayUnderNotePopupOverAPopup {
  position: fixed;
}
