:host {
  display: block;
  --background:white;
  --text:black;
}

/* Toolbar */

.toolbar {
  min-height: 20px;
  background: var(--background);
  width: 45px;
  left: 60px;
  position: fixed;
  -webkit-box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  margin-top: 3px;
  z-index: 10;
}

.toolbar-button {
  font-size: 15px;
  border: 0px;
  width: 44px;
  padding: 12px 15px 12px 15px;
  margin: 3px 0 0 0;
  cursor: pointer;
  color: var(--text);
  background: var(--background);
}

.toolbar-button:hover {
  outline: none;
  color: #fcaf12;
}

.toolbar-button.active {
  color: #fcaf12
}

.first {
  padding-top: 17px;
}

.last {
  font-size: 15px;
  border: 0px;
  width: 44px;
  padding-bottom: 17px;
  margin: 1px 0 3px 0;
  cursor: pointer;
  background: var(--background);
}

.tools {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-right: 1px solid lightgray
}

/* Popup */

.popup {
  display: inline-block;
  position: relative
}

.popup:hover .popup-window {
  color: #fcaf12
}

.popup:hover .popup-window {
  display: block
}

.popup-window {
  z-index: 1;
  font-family: 'Buenard', sans-serif;
  display: none;
  position: absolute;
  background-color: var(--background);
  border-radius: 4px;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  margin: -30px 40px;
  padding: 3px 15px 10px 15px;
}

.popup .popup-window.hover-popup {
  display: block
}

.popup-item {
  cursor: pointer;
  color: var(--text);
  cursor: pointer;
  font-family: 'Buenard', sans-serif;
  background: var(--background);
  border: 0;
  width: 100%;
  padding: 6px 3px 6px 3px;
}

.Heading {
  font-size: 28px;
  font-weight: bold;
}

.Subheading {
  font-size: 24px;
  font-weight: bold;
}

.Body {
  font-size: 21px;
}

.Caption {
  font-size: 18px;
}

.popup-item i {
  min-width: 100px;
  padding: auto 40px
}

.popup-item:hover {
  color: #fcaf12;
}

.popup-item.active {
  color: #fcaf12;
}