.panel.vertical_ > .toolbar_ {
  width: 100%;
}
/* #region COLORS */
/* #endregion */
.draggable {
  user-select: none;
}
.draggable img {
  -webkit-user-drag: none;
}
img.draggable {
  -webkit-user-drag: initial !important;
}
.swipeable.animate {
  transition: all 0.4s ease 0s;
}
.button {
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  margin: 0;
  padding: 20px;
  cursor: pointer;
  user-select: none;
}
.button.horizontal {
  min-width: 120px;
  height: 60px;
}
.button.vertical {
  width: 60px;
  min-height: 120px;
}
.button.square {
  width: 60px;
  height: 60px;
}
.side-menu {
  position: fixed;
  overflow: auto;
  z-index: 2;
  overflow: visible;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
.side-menu.animate {
  transition: all 0.4s ease 0s;
}
.side-menu.vertical {
  max-height: 90%;
  min-height: 0%;
}
.side-menu.vertical.open {
  height: 200px;
}
.side-menu.vertical.close {
  height: 0;
}
.side-menu.horizontal {
  max-width: 90%;
  min-width: 0%;
}
.side-menu.horizontal.open {
  width: 200px;
}
.side-menu.horizontal.close {
  width: 0;
}
.side-menu.top {
  bottom: unset !important;
}
.side-menu.bottom {
  top: unset !important;
}
.side-menu.left {
  right: unset !important;
}
.side-menu.right {
  left: unset !important;
}
.side-menu-header {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
}
.vertical > .side-menu-header {
  width: 100%;
  height: 80px;
  flex-direction: row;
}
.horizontal > .side-menu-header {
  width: 80px;
  height: 100%;
  flex-direction: column;
}
.bottom > .side-menu-header {
  bottom: 80px;
}
.right > .side-menu-header {
  right: 80px;
}
.top > .side-menu-header {
  top: 100%;
}
.left > .side-menu-header {
  left: 100%;
}
.side-menu-header {
  font-size: 1.3em;
}
.side-menu-main-button {
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  margin: 0;
  padding: 20px;
  cursor: pointer;
  user-select: none;
  width: 80px;
  height: 80px;
  position: relative;
}
.top > .side-menu-main-button {
  bottom: -80px;
}
.bottom > .side-menu-main-button {
  top: -80px;
}
.right > .side-menu-main-button {
  left: -80px;
}
.side-menu-main-button {
  background-color: #00c0aa;
}
.side-menu-main-button:hover {
  background-color: #6dd1c5;
}
.side-menu-content {
  height: 100%;
  width: 100%;
  overflow: auto;
  margin: 0;
}
.vertical > .side-menu-content {
  position: relative;
  bottom: 80px;
}
.horizontal > .side-menu-content {
  position: absolute;
  top: 0;
}
.side-menu-content.hidden,
.side-menu-content.hidden * {
  overflow: hidden;
}
.side-menu-content {
  /*background-color: white;*/
  background-color: #00c0aa;
}
.side-menu .toolbar {
  background-color: #ffffff;
  opacity: 0.5;
  transition: opacity 0.4s;
}
.side-menu.open .toolbar {
  opacity: 1;
}
.side-menu.top .toolbar {
  border-bottom-color: #bdbdbd;
  border-bottom-width: 1px;
  border-bottom-style: dotted;
}
.side-menu.bottom .toolbar {
  border-top-color: #bdbdbd;
  border-top-width: 1px;
  border-top-style: dotted;
}
.side-menu.left .toolbar {
  border-right-color: #bdbdbd;
  border-right-width: 1px;
  border-right-style: dotted;
}
.side-menu.right .toolbar {
  border-left-color: #bdbdbd;
  border-left-width: 1px;
  border-left-style: dotted;
}
.slideshow {
  user-select: none;
}
.slideshow * {
  user-select: none;
  -webkit-user-drag: none;
}
.toolbar-background {
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  margin: 0;
  padding: 20px;
  cursor: pointer;
  user-select: none;
  position: absolute;
  height: 100%;
  width: 100%;
}
/* STYLE */
.toolbar.roll-up {
  border-top: 3px solid #009688 !important;
}
.toolbar.roll-down {
  border-bottom: 3px solid #009688 !important;
}
.toolbar.roll-left {
  border-left: 3px solid #009688 !important;
}
.toolbar.roll-right {
  border-right: 3px solid #009688 !important;
}
.toolbar .button {
  background-color: #00c0aa !important;
}
.toolbar .button:hover {
  background-color: #6dd1c5 !important;
}
/* LIST */
.list-view {
  position: relative;
  width: 100%;
  display: flex;
  overflow: hidden;
}
.list-view.vertical {
  width: auto;
  height: 100%;
}
.list-view-slide {
  display: flex;
  position: relative;
  flex-direction: row;
  height: 100%;
  width: fit-content;
}
.vertical > .list-view-slide {
  writing-mode: vertical-rl;
  height: fit-content;
  width: 100%;
}
.list-view-slide > * {
  height: 100%;
}
.vertical > .list-view-slide > * {
  height: auto;
  width: 100%;
}
.radial-menu {
  position: absolute;
  transition: all 0.3s;
  transform-origin: center;
  filter: drop-shadow(0 0 10px rgba(98, 148, 131, 0.7));
  display: inline-block;
  fill: transparent;
}
.radial-menu.close {
  transform: scale(0) rotate(45deg);
  opacity: 0;
}
.radial-menu .button > circle {
  cursor: pointer;
  fill: white;
  stroke: aquamarine;
  stroke-width: 5px;
  pointer-events: visible;
}
.radial-menu > .button:hover > circle {
  stroke: #5db195;
}
.skill-viewer .people {
  display: flex;
  justify-content: space-evenly;
  flex-flow: wrap;
  align-items: start;
}
.person-card {
  background-color: white;
  position: relative;
}
.person-card label {
  position: absolute;
  top: 0;
  right: 0;
  padding: 2px;
  background-color: white;
  opacity: 0.75;
}
.person-card label b {
  opacity: 1;
}
.person-card img {
  width: 150px;
  height: 150px;
}
/*# sourceMappingURL=ui.css.map */