/**
This file provides you with a toolbar that shows up at the bottom left of the
page. It is generally for the purpose of the template demo, but may come
in hand in your own designs.
**/

.photogenic-toolbar {
  background-color: rgb(35, 35, 35);
  background-color: rgba(105, 105, 105, 0.2);
  border: 1px solid white;
  border: 1px solid rgba(235, 235, 235, 0.1);
  border-radius: 3px;
  bottom: 1.935vh;
  color: white;
  display: flex;
  left: 7.345vw;
  padding: 1.345vh 35px 1.345vh 35px;
  position: absolute;
  top: auto;
}

.photogenic-toolbar button {
  align-items: center;
  background-color: transparent;
  border: 1px solid rgb(235, 235, 235);
  border: 1px solid rgba(235, 235, 235, 0.1);
  border-bottom-style: none;
  border-left-style: solid;
  border-right-style: solid;
  border-top-style: none;
  color: white;
  display: flex;
  font-size: 18px;
  justify-content: center;
  margin: 0 1vw 0 1vw;
  padding: 0 1.5vw 0 1.5vw;
  transition-duration: var(--standard-transition-medium);
}

.photogenic-toolbar button:hover {
  padding: 0 2.5vw 0 2.5vw;
}

@keyframes toolbutton {
  0% {
    height: 0;
    opacity: 0;
    transform: scale(1);
  }
  100% {
    height: 0;
    opacity: 0;
    transform: scale(0)
  }
}

@keyframes toolbutton2 {
  0% {
    height: 0;
    opacity: 0;
    transform: scale(0);
  }
  100% {
    height: auto;
    opacity: 1;
    transform: scale(1);
  }
}

.photogenic-toolbar button:after {
  align-items: center;
  background-color: rgb(35, 35, 35);
  background-color: rgba(35, 35, 35, 0.3);
  border: 1px solid white;
  border: 1px solid rgba(235, 235, 235, 0.2);
  border-radius: 1px;
  content: attr(data-tooltip);
  display: flex;
  font-size: 0.735rem;
  justify-content: center;
  left: -1px;
  letter-spacing: 0.195rem;
  min-height: 5vh;
  min-width: 100%;
  opacity: 0;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  top: -107.35%;
  transform: scale(0.35);
  transform-origin: 50% 0;
  transition-duration: var(--standard-transition-fast);
  transition-timing-function: ease-in-out;
}

.photogenic-toolbar button:hover:after {
  opacity: 1;
  transform: scale(1);
  transition-duration: var(--standard-transition-fast);
}
