/* Content */

  /* Share Buttons */
  
  .share-btn-container {
	background: #fdfffd;
	display: flex;
	flex-direction: column;
	padding: 5px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
  }
  
  .share-btn-container a i {
	font-size: 32px;
  }
  
  .share-btn-container a {
	margin: 12px 0;
	transition: 500ms;
  }
  
  .share-btn-container a:hover {
	transform: scale(1.2);
  }
  
  .share-btn-container .fa-facebook {
	color: #3b5998;
  }
  
  .share-btn-container .fa-twitter {
	color: #1da1f2;
  }
  
  .share-btn-container .fa-linkedin {
	color: #0077b5;
  }
  
  .share-btn-container .fa-pinterest {
	color: #bd081c;
  }
  
  .share-btn-container .fa-whatsapp {
	color: #25d366;
  }
  
  /* Media Queries "max-width 1200px or 550px" */
  
  @media (max-width: 550px) {
	.content {
	  padding: 8px 32px;
	}
  
	.share-btn-container {
	  transform: unset;
	  top: unset;
	  left: 0;
	  bottom: 0;
	  width: 100%;
	  flex-direction: row;
	  box-shadow: 4px 0 8px rgba(0, 0, 0, 0.3);
	  padding: 16px 10px;
	  justify-content: left;
	}
  
	.share-btn-container a {
	  margin: 0 32px;
	}
  }

 