@-webkit-keyframes pulsingAnimation {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulsingAnimation {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulsingAnimation {
   -webkit-animation: pulsingAnimation 1.5s ease-in infinite;
	animation: pulsingAnimation 1.5s ease-in infinite;
}

/**
 * Setup keyframes for pulsing animation
 */
@-webkit-keyframes loadingPlaceholders {
	0% {
		background-color: #f0f0f0;
	}
	50% {
		background-color: #c3c3c3;
	}
	100% {
		background-color: #f0f0f0;
	}
}
@keyframes loadingPlaceholders {
	0% {
		background-color: #f0f0f0;
	}
	50% {
		background-color: #c3c3c3;
	}
	100% {
		background-color: #f0f0f0;
	}
}

/**
 * Style the placeholder
 */
.placeholder {
	-webkit-animation: loadingPlaceholders 1.5s ease-in infinite;
	animation: loadingPlaceholders 1.5s ease-in infinite;
	background-color: #f0f0f0;
}

#appPlaceholder header {
    background: #fff;
    height: 80px;
    padding-left: 70px;

}

#appPlaceholder aside {
    background: #fff;
    height: 100vh;
    width: 70px;
    position: fixed;
    top: 0;
}

#appPlaceholder .flex {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#appPlaceholder .placeholder__image {
	display: block;
    width: 50px;
    height: 50px;
    background: #f0f0f0;
    border-radius: 100%;
    text-align: center;
    margin: auto;
}

#appPlaceholder .group {
	margin: 5px;
}

#appPlaceholder .placeholder__text {
	margin: 5px 0;
    background: #f0f0f0;
    height: 16px;
    width: 150px;
    border-radius: 2em;
}

#appPlaceholder .placeholder__title {
	margin: 5px 0;
    background: #f0f0f0;
    height: 46px;
    width: 110px;
    border-radius: 2em;
}

#appPlaceholder .item + .item {
	margin: 0 10px;
}

@media only screen and (min-width: 768px) {
  .placeholder.is-mobile {
    display: none;
  }

  .placeholder.is-desktop {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .placeholder.is-mobile {
    display: block;
  }

  .placeholder.is-desktop {
    display: none;
  }
}
