.loader-before-payment {
	position: fixed;
    z-index: 99;
    height: 100%;
    width: 100%;
	backdrop-filter: blur(5px)
}

.main-loader{
    display: flex;
    width: 65vw;
    height: 35vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    justify-content: center;
    background-color: whitesmoke;
    border: 3px solid;
    border-radius: .5rem;
}

.main-loader-text {
    background-color: whitesmoke;
    width: 55vw;
    position: absolute;
    z-index: 100;
    font-size: .9rem;
    text-align: center;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.loader {
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    margin: 50px 50px;
    position: absolute;
    top: 60%;
    transform: translate(-50%, -50%);
    margin: 0 auto;
}

#timesLoader{
    display: flex;
    justify-content: center;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media only screen and (min-width: 768px) {

	.main-loader-text {

		font-size: 2rem;
	}

	.loader {
		
		width: 75px;
		height: 75px;
		
	}
}
