.backoritybase{
	
	 margin:  20px 20px 0px 20px ;
    background-color: #fff;
    border: 5px solid #ededed;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
    box-shadow: 0 1px 1px rgba(0,0,0,.05);
}

@keyframes glow {
  0% {
    box-shadow: 0 0 0 0 #dc143c;
  }
  
  50% {
    box-shadow: 0 0 2px 0 #dc143c;
  }
}

.backoritybase .btn {
  background: none;
  color: inherit;
  font: inherit;
  border: none;
  outline: none;
  cursor: pointer;
 
  
	
}
.backoritybase a {
	text-decoration:none;
}
.backoritybase a:hover {
	text-decoration:none;
}
.backoritybase .btn-glow {
  background: #dc143c;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 7px 14px;
  box-shadow: 0 0 0 0 #dc143c;
  animation: glow 1.4s linear infinite;
}