﻿:root {
    --gold-primary-color: #CDA244;
    --gold-dark-primary-color: #8E6F2E;
    --gold-secondary-color: #707072;
    --gold-disabled-color: #707072;
    --gold-primary-bg-color: #E0E1E4;
    --gold-dark-primary-bg-color: #707072;
    --gold-disabled-bg-color: #f7f7f7;
    --gold-positif-color: green;
    --gold-negatif-color: red;
    --gold-lighter-yellow: #f0edd1;
    --gold-white-background: #fff;
    --gold-light-gray-background: #f7f7f7;
    --gold-pink-active: #B4224B;
    --gold-pink-dark: #D13162;
    --gold-pink-light: #E35185;
    --gold-pink-lighter: #F8D2E2;
    --gold-sideblock-title-color: #B4224B;
    --gold-background-color: #F9F9F9;
    --gold-sideblock-content-background-color: #FFFFFF;
    --gold-grey-background-color: #FBFBFB;
    --gold-grey-darker-background-color: #EFEFEF;
    --gold-tab-header-background-color: #B3983F;
    --gold-tab-header-background-color-selected: #e35185;
    --gold-tab-header-color: #FFFFFF;
    --gold-white-color: #FFFFFF;
}

#app{
    height:100vh;
}

body {
    background-color: var(--gold-background-color) !important;
}

.sidebar-navmenu {
    font-family: 'Poppins', sans-serif;
}

.background-color-primary {
    background-color: #F9F9F9 !important;
}

.background-color-secondary {
    background-color: var(--gold-dark-primary-bg-color) !important;
}

.background-color-disabled {
    background-color: var(--gold-disabled-bg-color) !important;
}

.font-color-primary {
    color: var(--gold-primary-color) !important;
}

.font-color-dark-primary {
    color: var(--gold-dark-primary-color) !important;
}

.font-color-secondary {
    color: var(--gold-secondary-color) !important;
}

.font-color-pink-active {
    color: var(--gold-pink-active) !important;
}

.cursor-pointer {
    cursor: pointer;
}

.font-color-info {
    color: #0078D4 !important;
}

.font-color-danger {
    color: #BF0000 !important;
}

.field-title {
    font-size: 1.1rem;
    color: var(--gold-pink-active);
}

.field-title-disabled {
    font-size: 1.1rem;
    color: var(--gold-disabled-color);
}

.montant-positif {
    color: var(--gold-positif-color)
}

.montant-negatif {
    color: var(--gold-negatif-color)
}

.w-20 {
    width: 20%;
}

.w-15 {
    width: 15%;
}

.w-60 {
    width: 60%;
}

.w-40 {
    width: 40%;
}

.w-30 {
    width: 30%;
}

.w-35 {
    width: 35%;
}

.w-80 {
    width: 80%;
}

.w-700 {
    width: 700px;
}

.h-90 {
    height: 90%;
}

.h-95 {
    height: 95%;
}

.fs-7{
    font-size:0.8rem;
}

.fs-8{
    font-size:0.6rem;
}
.fs-9{
    font-size:0.4rem;
}

/* Chargement de l'application */
.app-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
}

.lds-default {
    /* change color here */
    color: var(--gold-dark-primary-color)
}

.lds-default,
.lds-default div {
    box-sizing: border-box;
}

.lds-default {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-default div {
    position: absolute;
    width: 6.4px;
    height: 6.4px;
    background: currentColor;
    border-radius: 50%;
    animation: lds-default 1.2s linear infinite;
}

.lds-default div:nth-child(1) {
    animation-delay: 0s;
    top: 36.8px;
    left: 66.24px;
}

.lds-default div:nth-child(2) {
    animation-delay: -0.1s;
    top: 22.08px;
    left: 62.29579px;
}

.lds-default div:nth-child(3) {
    animation-delay: -0.2s;
    top: 11.30421px;
    left: 51.52px;
}

.lds-default div:nth-child(4) {
    animation-delay: -0.3s;
    top: 7.36px;
    left: 36.8px;
}

.lds-default div:nth-child(5) {
    animation-delay: -0.4s;
    top: 11.30421px;
    left: 22.08px;
}

.lds-default div:nth-child(6) {
    animation-delay: -0.5s;
    top: 22.08px;
    left: 11.30421px;
}

.lds-default div:nth-child(7) {
    animation-delay: -0.6s;
    top: 36.8px;
    left: 7.36px;
}

.lds-default div:nth-child(8) {
    animation-delay: -0.7s;
    top: 51.52px;
    left: 11.30421px;
}

.lds-default div:nth-child(9) {
    animation-delay: -0.8s;
    top: 62.29579px;
    left: 22.08px;
}

.lds-default div:nth-child(10) {
    animation-delay: -0.9s;
    top: 66.24px;
    left: 36.8px;
}

.lds-default div:nth-child(11) {
    animation-delay: -1s;
    top: 62.29579px;
    left: 51.52px;
}

.lds-default div:nth-child(12) {
    animation-delay: -1.1s;
    top: 51.52px;
    left: 62.29579px;
}

@keyframes lds-default {
    0%, 20%, 80%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
}

.dialog-grey-block {
    background-color: var(--gold-grey-darker-background-color);
    color: var(--gold-secondary-color);
}