/*-------------------------------------------
SALE BANNER TEMPLATE
----------------------------------------------*/
.background{ 
		z-index: 0;
		position: absolute; 
		width: 100%; 
		height: 100%; 
		max-height: auto;
		max-width: auto;
		background-color: #000000; 
		background-repeat: no-repeat; 
		background-size: cover; 
		background-position: center; } 

/*-------------------------------------------
BANNER
----------------------------------------------*/
.banner {
		z-index: 1;
		position: relative; 
		width: 100%; 
		height: 100%; 
		max-height: auto;
		max-width: auto;
		background-color: #000000; 
		background-repeat: no-repeat; 
		background-size: cover; 
		background-position: center;
}

/*-------------------------------------------
SALES TEMPLATE
----------------------------------------------*/
* {
  box-sizing: border-box;
}

.columns {
  float: left;
  width: 20%;
  max-height: auto;
  max-width: auto;
  padding: 0px;
}

.price {
  list-style-type: none;
  border: 1px solid #eee;
  margin: 0;
  padding: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.price:hover {
  box-shadow: 25px 50px 50px 25px rgba(0,0,0,0.5)
}

.price .header {
  background-color: #111;
  color: white;
  font-size: 25px;
}

.price li {
  border-bottom: 1px solid #eee;
  padding: 10px;
  text-align: center;
}

.price .grey {
  background-color: #eee;
  font-size: 20px;
}

.button {
  background-color: #ff0000;
  border: outset;
  color: white;
  padding: 5px 20px;
  text-align: center;
  text-decoration: inherit;
  font-size: 18px;
}

.logo {
	max-height: 50%;
	max-width: 50%;
}

@media only screen and (max-width: 600px) {
  .columns {
    width: 100%;
  }
}

.button {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}