/* TODO: clean up this file and split into separate SASS files where appropriate */

body {
  margin: 0;
}

.splash {
  text-align: center;
  margin: 10% 0 0 0;
  box-sizing: border-box;
}

.splash .message {
  font-size: 72px;
  line-height: 72px;
  text-shadow: rgba(0, 0, 0, 0.5) 0 0 15px;
  text-transform: uppercase;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.splash .fa-spinner {
  text-align: center;
  display: inline-block;
  font-size: 72px;
  margin-top: 56px;
}

@media print {
  .page-host {
    position: absolute;
    left: 10px;
    right: 0;
    top: 56px;
    bottom: 0;
    overflow-y: inherit;
    overflow-x: inherit;
  }
}

#login-card {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  padding: 30px 65px 50px 65px;
  margin: 0;
  min-width: 300pt;
}

#not-found-card {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  padding: 30px 65px 50px 65px;
  margin: 0;
  min-width: 300pt;
}

#not-found-msg {
  text-align: justify;
  padding-top: 20px;
}

.navbar-nav li.loader {
  margin: 12px 24px 0 6px;
}

.pictureDetail {
  max-width: 425px;
}


/* animate page transitions */

section.au-enter-active {
  animation: fadeIn 1s;
}

div.au-stagger {
  /* 50ms will be applied between each successive enter operation */
  animation-delay: 50ms;
}

/* .animate-show.au-enter, */
/* .card-container.au-enter { */
/*   opacity: 0 !important; */
/* } */

.animate-show.au-enter-active,
.card-container.au-enter-active {
  animation: fadeIn .6s;
}

.card .content .name {
  color: white;
  text-shadow: 0 0 6px rgba(0, 0, 0, .5);
  font-size: 18px;
}

.card .header-bg {
  /* This stretches the canvas across the entire hero unit */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  border-bottom: 1px #FFF solid;
  border-radius: 6px 6px 0 0;
}

.card .avatar {
  position: relative;
  margin-top: 15px;
  z-index: 100;
}

.card .avatar img {
  width: 100px;
  height: 100px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 2px #FFF solid;
}

.inline-div {
  display: inline-block;
  float: left;
}

input[readonly] {
  background-color: white !important;
}

.widget-menu {
  margin-top: 20px;
  margin-right: 10px !important;
  display: inline-block;
  cursor: default;
}


/* animation definitions */

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}


/* Landscape phones and portrait tablets */

@media (max-width: 767px) {
  .btn-left {
    width: 75px;
  }
  .btn-right {
    width: 75px;
  }
}

section.section-margin {
  margin-top: 10px;
}

.no-padding {
  padding: 0 !important;
}

i.fa-repeat {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
}

.filters-button-group {
  margin-top: 5px;
  margin-bottom: 5px;
}


.no-data-msg {
  text-align: center;
}

/*# sourceMappingURL=../app~5a11b65b.8d2d633fb95c737e2f13.bundle.map*/