body {
    display: flex;
    isolation: isolate;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

#sidebar-disconnected {
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    align-items:center;
    gap: var(--spacing-xxl);
    overflow-y: scroll;
    box-shadow: 0 0 16px 0 rgba(0,0,0,.2);
    width: 400px;
}

.sidebar-disconnected-content {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0 40px;
}
  
.picture-bg {
    position: relative;
    flex-grow: 1;
    height: 100vh;
}
.picture-bg > img {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}
  
.bg-copyright {
    background-color: white;
    position: absolute;
    left: var(--spacing-l);
    bottom: var(--spacing-l);
    height: 50px;
    padding-right: 0;
    padding-bottom: 0;
    margin-right: 0;
    margin-bottom: 0;
    cursor: pointer;
    color: var(--primary-100);
    z-index: 2051;
    border: 1px var(--primary-100) solid;
    overflow-y: hidden;
}

#app-logo {
    padding:15px;
    text-align:center;
    align-self: center;
}
#app-logo > img {
    height:90px;
}
#app-logo > #app-name {
    font-family: "Gilroy";
    color:var(--accent-100);
    font-size: var(--font-700);
    font-weight:400;
    margin-top:1.3rem;
}
#app-logo > #app-name > b {
    font-weight: 700;
}
#app-logo.logo-sm {
    display:flex;
    align-items:center;
    justify-content:center;
}
#app-logo.logo-sm > img {
    height:40px;
    width:auto;
    margin-right:15px;
}
#app-logo.logo-sm > #app-name {
    margin:0;
}

#flags .flag-icon {
    font-size: 16px;
    line-height: 16px;
    height: 16px;
    margin-left: 5px;
    margin-right: 5px;
    border: 1px solid #CCC;
    float: left;
    padding: 0;
    width: 21px;
    overflow: hidden;
    box-sizing:inherit;
}

/* .input-lg {
    padding:.9rem 1.3rem;
    height:inherit;
    font-size:1.3rem;
    font-weight:400;
    border:2px solid #DDD;
    border-radius:5px;
    color:#222;
}

.input-lg.active,
.input-lg:active,
.input-lg:focus {
} */

/* .btn-lg {
    padding:.9rem 1.3rem;
    border-width:2px;
    font-size:1.3rem;
} */

#eloge-info {
    position: absolute;
    bottom: 32px;
    left: 32px;
    display: flex;
    align-items: center;
    background-color: var(--neutral-20);
    font-size: var(--font-75);
    color: var(--neutral-100);
    padding: 4px 8px;
    border-radius: var(--radius-m);
    text-shadow: 0 0 3px rgba(255,255,255,.5);
    box-shadow: 0 0 4px 0 rgba(0,0,0,.2);
    transition: background-color 0.2s, color 0.2s;
}
#eloge-info > img {
    width: auto;
    height: 24px;
    margin-right: 10px;
}

.input-wrapper{
    position: relative;
}

.togglePassword {
    position: absolute;
    right: 8px;
    top: 4px;
}

form#formRegister .form-group,
form#formNewContributor .form-group,
form#formRecoveryPassword .form-group {
    margin: 8px 0;
}

form#formRegister .m-b,
form#formNewContributor .m-b,
form#formRecoveryPassword .m-b {
    margin: 0 auto;
}

.products {
    display: flex;
    justify-content: center;
    align-items: center;
}
.products > a {
    overflow:hidden;
    border-radius:2px;
    margin:0 5px;
    transition:filter 0.15s, opacity 0.15s;
    filter: grayscale(0.25);
    opacity:.8;
}
.products > a:hover,
.products > a:active,
.products > a:hover {
    filter: grayscale(0);
    opacity:1;
}