.content-divider {
    width: 100%;
    height: 3rem;
    background-color: rgba(0, 0, 0, .1);
    border: solid rgba(0, 0, 0, .15);
    border-width: 1px 0;
    box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}

@font-face {
    font-family: 'Biome';
    src: url('/images/ttf/biome-light.ttf') format('truetype');
}

body {
    background-color: #564B8F;
    font-family: 'Biome', sans-serif !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;    
}

main {
    flex: 1;
}

hr {
    opacity: 1.0;
}

.btn-primary { 
    background-color: #0EE997; 
    border-color: #0EE997; 
    color: #495057
} 

#cb-cookie-banner { 
    position: fixed; bottom: 0; left: 0; width: 100%; z-index: 999; border-radius: 0; display: none; 
}

#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
}

#btn-back-to-top {
    border-radius: 50%;
    padding: 1rem;
    line-height: 1;
    background-color: #0FA4E6;
}

#btn-back-to-top > svg {
    display: flex;
}

#animatedlogo {
    animation: pulse 3.6s ease infinite alternate;
    perspective: 400px;
    perspective-origin: top right;
    transform-style: preserve-3d;
}

@keyframes pulse {
    from {
        transform: rotate3d(0, 1, 1, -2deg);
    }

    to {
        transform: rotate3d(0, 1, 1, 2deg);
    }
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
}

.imageApropos {
    max-width: 460px;
    width: 100%;
    aspect-ratio: 640 / 175;
    height: auto;
}   

.imageCircles {
    max-width: 700px;
    width: 100%;
    aspect-ratio: 700 / 443;
    height: auto;
}    

.form-control::placeholder {
    opacity: 0.25;
}

.toast-container {
    top: 60px;
}

#sendButton {
    position: relative;
}

#sendButton > .spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

#sendButton:disabled > .spinner {
    display: block;
}

#sendButton:disabled > .sendText {
    visibility: hidden;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
}

.accordion-button {
    background-color: #433B70 !important;
}

.accordion-item {
    background-color: #322C54 !important;
}

ul.noindent {
    padding-left: 1rem;
}