* {
    font-family: 'Proxima Nova', sans-serif;
    color: #1c1c1c;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 1rem 0 0 0;
    font-weight: bold;
    color: #008fbe;
}

h1 {
    color: #1c1c1c !important;
}

body {
    font-family: Arial, sans-serif;
    margin: 20px;
    font-size: 15px;
}

#loading-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
    transition: opacity 0.4s ease-in-out;
}

.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid rgb(244, 137, 155);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1.2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}