.simply-countdown {
  /* The countdown */
  margin-bottom: 2em;
}

.simply-countdown > .simply-section {
  /* coutndown blocks */
  display: inline-block;
  width: 100px;
  height: 100px;
  /*background: rgba(241, 78, 149, 0.8);*/
  margin: 0 4px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  position: relative;
  animation: pulse 1s ease infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.simply-countdown > .simply-section > div {
  /* countdown block inner div */
  display: table-cell;
  vertical-align: middle;
  height: 100px;
  width: 100px;
}

.simply-countdown > .simply-section .simply-amount,
.simply-countdown > .simply-section .simply-word {
  display: block;
  /*color: white;*/
  text-align:center
  /* amounts and words */
}

.simply-countdown > .simply-section .simply-amount {
  font-size: 30px;
  /* amounts */
}

.simply-countdown > .simply-section .simply-word {
  /*color: rgba(255, 255, 255, 0.7);*/
  text-transform: uppercase;
  font-size: 12px;
  /* words */
}

.simply-days-section {
	background: rgba(237, 109, 105, 1);
	color: #E0FEDA;
	
}

.simply-hours-section {
	background: rgba(251, 236, 198, 1);
	color: #6DC4B4;
	
}

.simply-minutes-section {
	background: rgba(248, 223, 157, 1);
	color: #6DC4B4;
	
}

.simply-seconds-section {
	background: rgba(252, 239, 135, 1);
	color: #6DC4B4;
	
}

.hotspot-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom:20px;
}
 
.hotspot-wrapper:hover .hotspot-text {
  bottom: 0;
}

.hotspot-wrapper img {

  -webkit-transition: all 0.7s ease;
transition: all 0.7s ease;
}

.hotspot-wrapper:hover img {
  -webkit-transform:scale(1.3);
transform:scale(1.3);
}

@keyframes float {
	0% {
		box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
		transform: translatey(0px);
	}
	50% {
		box-shadow: 0 25px 15px 0px rgba(0,0,0,0.2);
		transform: translatey(-20px);
	}
	100% {
		box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
		transform: translatey(0px);
	}
}

.avatar {
	width: 100px;
	height: 100px;
	box-sizing: border-box;
		border-radius: 50%;
		
	overflow: hidden;
	transform: translatey(0px);
	animation: float 6s ease-in-out infinite;
	img { width: 100%; height: 100% }
}