/**
 * @file
 * Visual styles for event+'s go back button.
 */
.go-back {
  position: fixed;
  left: 10px;
  top: 10px;
  width: 45px;
  height: 45px;
  color: #ffffff;
  border-width: 0px;
  border-style: solid;
  border-color: transparent;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  cursor: pointer;
  text-align: center;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -ms-transition: all 0.4s;
  transition: all 0.4s;
  z-index: 100;
}
.go-back:hover {
  background-color: #ffffff;
  color: #cc0069;
}
.page-container-border-enabled .go-back {
  left: 10px;
  top: 20px;
}
.toolbar-horizontal .go-back {
  top: 95px;
}
.go-back.show {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  filter: alpha(opacity=100);
}
.go-back .svg-inline--fa {
  height: 100%;
  font-size: 16px;
}
@media (min-width: 992px) {
  .go-back {
    width: 55px;
    height: 55px;
    left: 10px;
    top: 30px;
  }
  .page-container-border-enabled .go-back {
    left: 45px;
    top: 30px;
  }
  .go-back .svg-inline--fa {
    font-size: 24px;
  }
}
