/* #517CFF new footer color */
footer {
    width: 100%;
    background-color: #517CFF;
    color: black;
    font-family: 'alte-haas-grotesk-bold';
    margin: 0;
}

#footer-container {
    display: flex;
    flex-direction: column;
}

#footer-info-socials-download-links {
    display: flex;
    padding-top: 50px;
    padding-bottom: 50px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section:nth-of-type(2n) {
    margin-left: auto;
    margin-right: auto;
}

.footer-header {
    font-size: 24px;
    margin-bottom: 50px;
}

.footer-link {
    font-size: 17px;
    margin-bottom: 10px;
}

#desktopcopyright {
    display: block;
    margin-top: 10px;
    font-size: 15px;
    color: black;
    text-align: left;
}

#footer-menu {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
}

#footer-menu li {
    margin-bottom: 10px;
}

#footer-menu .first {
    margin-left: 0px;
}

#footer-menu a:visited {
    color: white;
}

#footer-menu a {
    color: black;
    font-size: 17px;
}

#footer-copyright-idobi-logo {
    display: flex;
    flex-direction: column;
}

#footer-idobi-logo {
    margin-top: 50px;
    padding-bottom: 50px;
    align-self: center;
    width: 400px;
}

@media(max-width: 768px) {
    #desktopcopyright {
        display: block;
        margin-top: 10px;
        font-size: 13px;
        color: black;
        text-align: left;
    }

    #footer-app-download {
        display: none;
    }

    .footer-section:nth-of-type(2n) {
        margin-left: auto;
        margin-right: 0;
        text-align: right;
    }
}

	#page-loader {
	position: fixed;
	inset: 0;
	background: rgba(255,255,255,0.8);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.loader-spinner {
	width: 40px;
	height: 40px;
	border: 4px solid #ddd;
	border-top: 4px solid #000;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

#ajax-progress {
	position: fixed;
	top: 0;
	left: 0;
	height: 3px;
	width: 0%;
	background: #0073aa; /* change color */
	z-index: 99999;
	transition: width 0.3s ease;
}