:root {
    --color1: #ff6d00;
    --color2: #35406e;
    --color3: #2d3460;
}

.row.rounded {
    border-radius: 20px;
    overflow: hidden;
}

.btn-primary {
    background: var(--color2);
    border: 1px solid var(--color2);
}

.btn-primary:hover,
.btn-primary.focus, .btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
    background: var(--color3);
    border: 1px solid var(--color3);
}

.bg-gradient-primary {
    background-color: var(--color2);
    background-image: linear-gradient(180deg,var(--color2) 10%,var(--color3) 100%);
    background-size: cover;
}

.page-accueil .menu:hover {
    text-decoration: none;
}

.page-accueil .menu:hover {
    text-decoration: none;
    opacity: 0.7;
}

#subject  {
    height: 100px;
}

.flex-1 {
    flex: 1;
}

.wrap-add-contact {
    display: flex;
    align-items: center;
    margin-left: 8px;
    font-size: 1.4rem;
    color: var(--color2);
    cursor: pointer;
}

#amount {
    width: 150px;
}

.no-filter::before, .no-filter::after {
    content: "" !important;
}

.mask-spinner {
    position: absolute;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner-grow {
    background-color: var(--color1);
}

.tooltip {
    top: 10px;
}

.notifyjs-bootstrap-base {
    font-weight: normal !important;
    padding: 8px 14px 8px 15px !important;
    text-shadow: none !important;
}

.notifyjs-bootstrap-success {
    color: #fff !important;
    background-color: #1cc88a !important;
    border-color: #1cc88a !important;
    background-image: none !important;
}

.notifyjs-bootstrap-success::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f00c";
    padding-right: 5px;
}

.notifyjs-bootstrap-error {
    color: #fff !important;
    background-color: #e74a3b !important;
    border-color: #e74a3b !important;
    background-image: none !important;
}

.notifyjs-bootstrap-error::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f071";
    padding-right: 5px;
}

.menu {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-evenly;
    height: 150px;
    transition: 0.3s;
}

.menu * {
    color: #fff !important;
}

.menu:hover {
    text-decoration: none;
    opacity: 0.9;
}

.wrap-date {
    display: flex;
    align-items: center;
}

.notice {
    color: #d2d2d2;
    font-style: italic;
    font-size: 14px;
}

#dataTable tbody tr:nth-child(even) {
    background-color: rgba(53, 64, 110, 0.06);
}

#accordionSidebar {
    z-index: 10;
    position: fixed;
    left: -6.5rem;
    transition: left ease-in-out 0.3s;
}

#accordionSidebar.display {
    left: 0;
}

.close-menu {
    position: absolute;
    top: 10px;
    left: 100px;
    display: none;
    right: -18px;
    font-size: 22px;
    color: var(--color2);
}

#accordionSidebar.display .close-menu {
    display: block;
    padding: 20px;
}


table.dataTable>thead .sorting:before, table.dataTable>thead .sorting:after, table.dataTable>thead .sorting_asc:before, table.dataTable>thead .sorting_asc:after, table.dataTable>thead .sorting_desc:before, table.dataTable>thead .sorting_desc:after, table.dataTable>thead .sorting_asc_disabled:before, table.dataTable>thead .sorting_asc_disabled:after, table.dataTable>thead .sorting_desc_disabled:before, table.dataTable>thead .sorting_desc_disabled:after {
    bottom: 50%;
    transform: translateY(50%);
}

@media (min-width: 768px) {
    #accordionSidebar {
        position: relative;
        left: 0;
    }
}

@media (max-width: 576px) {

    .menu {
        height: 100px;
    }

    .menu .h4 {
        font-size: 1.2rem;
    }

    .menu i {
        font-size: 1.2rem;
    }

    .wrap-date {
        flex: 0 0 100%;
    }

    .wrap-date > div:last-child {
        flex: 1;
    }

}