#loading-wrapper {
    position: fixed;
    display: none;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #3d3d3d77;
    z-index: 1000;
    transition: opacity 0.5s ease-out;
    animation: fadeIn-background 0.3s ease-in;
}

#loading {
    height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

#loading-image {
    display: block;
    z-index: 1001;
    height: 10%;
}

#loading-text {
    background-color: #3d3d3daa;
    padding: 1em;
    border-radius: 3px;
    animation: fadeIn-text 0.5s ease;
}

    #loading-text h5 {
        color: whitesmoke;
        font-size: 1.05rem !important;
        margin-bottom: 0;
    }

#loading-wrapper.fadeOut {
    opacity: 0;
}

@keyframes fadeIn-background {
    0% {
        background-color: #3d3d3d00;
    }

    100% {
        background-color: #3d3d3d77;
    }
}

@keyframes fadeIn-text {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

#btn-scrollToTop {
    display: none;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 900;
    height: 3rem;
    width: 3rem;
    padding: 0;
    border: 1px solid #fff;
}
.socials-nav {
    position: fixed;
    top: 50%;
    right: 0;
}

.socials-nav .btn[aria-expanded="true"] .fas,
.socials-nav .btn[aria-expanded="true"] .far,
.socials-nav .btn[aria-expanded="true"] .fab {
    transform: rotate(180deg);
}

.socials-nav .btn {
    min-height: 5rem;
    border-width: 1px;
    border-style: solid;
    border-color: var(--apr-accent-fg);
}

.socials-nav #socials-container {
    background-color: var(--apr-surface-bg);
    color: var(--apr-surface-fg);
}

.socials-nav .socials-item {
    width: 48px !important;
    height: 48px !important;
    margin: 2px;
    
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}
