.start-in-seconds-banner {
   background: linear-gradient(to right, #8900ff 0%,#2f72c0 29%,#2f72c0 63%,#b4ec51 100%);
   text-align: center;
   overflow: visible !important;
   padding: 15px 30px;
   border-radius: 100px;
   margin: 0 0 5px;
   /* height: 160px; */
   width: 100%;
   color: #fff;
   
   -webkit-font-smoothing: antialiased;
   
   	-webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    
    opacity: 1;
    transform: scale(1,1);
    
    box-shadow: 0 0 0 0 #fff, 0 0 0 1px rgba(255,255,255,0);
} 
 
.start-in-seconds-banner:hover {
	transform: scale(1.01,1.01); 
	 
	-webkit-transition: all 100ms ease;
	-moz-transition: all 100ms ease;
	-o-transition: all 100ms ease;
	transition: all 100ms ease;
}

.start-in-seconds-banner img.text {
	max-width: 66%
}

.start-in-seconds-banner img.icons {
	max-width: 33%
}

.start-in-seconds-banner:active {

	transform: scale(0.95,0.95);
	 
	-webkit-transition: all 100ms ease;
	-moz-transition: all 100ms ease;
	-o-transition: all 100ms ease;
	transition: all 100ms ease;
}

@media (max-width: 700px) {
	.start-in-seconds-banner {
		padding: 15px 30px;
	}
	
	/* .start-in-seconds-banner img {
		max-width: 97% !important;
		margin-top: 5px;
	} */
	
	.start-in-seconds-banner .icons {
		display: none;
	}
}


/* @media (max-width: 350px) {
	.start-in-seconds-banner {
		padding: 20px 15px 10px;
		border-radius: 30px;
		margin: 10px 0 0;
	}
	
	.start-in-seconds-banner img {
		max-width: 100% !important;
	}
} */

