
.pre-loader{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	align-items: center;
	background: rgba(255,255,255,0.3);
	z-index: 99999;
}
.step2{
    display: block;
}
.footer{
    width: 100%;
    color: #FFF;
    background-color: transparent;
    padding: 5px;
    text-align: center;
    height: 25px;
    margin-top: 0;
    bottom: 0;
    /*position: fixed;*/
    position: fixed;
    z-index: 98;
    font-size: 12px;
    left: 0;
    background-color: #242235;
}
.footer a{
    /*text-decoration: none;*/
    
}

.clickBtn1, .clickBtn2 {
    /*display: none !important;*/
    box-shadow: 0 0 0 0 rgba(92, 184, 92, 1);
    /*transform: scale(1);
    animation: pulse 2s infinite;*/
}
.pulse-button:hover 
{
  -webkit-animation: none;-moz-animation: none;-ms-animation: none;animation: none;
}
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(92, 184, 92, 0.7);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(92, 184, 92, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(92, 184, 92, 0);
    }
}