.btn_cliente a{
	background-color: #ea7430;
	color: #fff;
	padding: 8px 25px;
	border-radius: 5px;
	margin-right:25px;
	&:hover{
		opacity: 0.9;
	}
}




.loading-gif {
    max-width: 500px;
}

.pre-loader {
    position: fixed;
    z-index: 1000; /** make sure this is the highest value compared to all other divs **/
    top: 0;
    left: 0;
    background: #ea7430;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.pre-loader.hidden {
    animation: fadeOut 2s; /** change to 1s */
    animation-fill-mode: forwards;
}

@keyframes fadeOut {
    100% {
        opacity: 0;
        visibility: hidden;
    }
}