﻿:root {
    --BleuMarine: 12, 32, 51;
    --FieldBg: 17, 47, 74;
    --Orange: 204, 105, 51;
    --ContrastText: 204, 200, 198;
    --InputTransparence: 204, 124, 82;
}

body {
    background: transparent;
}

    body::before {
        content: "";
        background-image: linear-gradient(0deg, rgba(var(--BleuMarine),0) 0%, rgba(var(--BleuMarine),1) 55%), url(/Images/logofond.png);
        background-color: rgb(var(--BleuMarine));
        position: absolute;
        left: -50%;
        top: -50%;
        transform: rotate(350deg);
        /*rotate: 350deg;*/
        height: 250%;
        width: 200%;
        z-index: -1;
        background-size: 200px;
    }

.btn-white {
    border-color: transparent;
    color: rgb(var(--Orange));
    border-radius: 50px;
    background-color: rgb(var(--FieldBg));
    font-size: 0.75em;
}

    .btn-white:hover {
        background-color: rgba(var(--FieldBg), .7);
        cursor: pointer;
    }

::-webkit-scrollbar {
    width: 15px;
}

/*::-webkit-scrollbar-track {
    background: white;
}*/

::-webkit-scrollbar-thumb {
    border-radius: 15px;
    border: solid 6px;
    background-color: rgb(var(--Orange));
    border-color: rgb(var(--BleuMarine));
}


.btn-red {
    border-color: transparent;
    color: white;
    border-radius: 50px;
    background-color: rgb(var(--Orange));
    font-size: 0.75em;
}

    .btn-red:not(:disabled):hover {
        background-color: rgba(var(--Orange), .7);
        cursor: pointer;
    }

.textBox {
    border-radius: 50px;
    background-color: #dedede;
    border: 2px solid transparent;
    font-size: 0.75em;
    outline-color: transparent;
    line-height: 2;
    padding: 0.375rem 0.75rem;
    margin: 0;
}

.right-navBar {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: flex-end;
}

.navBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.s22 {
    width: 22px;
    height: 22px;
}

.s34 {
    width: 34px;
    height: 34px;
}
.s64 {
    width: 64px;
    height: 64px;
}

.textOrange {
    color: rgb(var(--Orange));
}

.icon-mdButton {
    margin: 0;
    padding: 0;
    min-width: 0;
    min-height: 0;
    line-height: initial;
}