@import url('source/keyframes.css');

:root {
    --coloredButtons: #f9fafb;
    --how120: 120px;
    --colorBG: #f4f6f9;
    /* --colorBG: #ebebeb; */
    --colorNV: rgb(3, 14, 44);
    --colorFTR: #284B63; /* #0954b8 */
    --lightBLUE: #006eff;
    --FOOTERheight: 600px;
    --thisPADDINGA: 20px;
    --greatGREY: #e9e9ed;
    --boxshadowOFFICIAL: 0 15px 40px rgba(0,0,0,0.06);
    /* --boxshadowOFFICIAL: 0 0 5px rgba(0, 0, 0, 0.336); */
    --textshadowOFFICIAL: -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black, 1px 1px 0 black;
}

body {
    height: 100vh;
    background: var(--colorBG);
    background-color: var(--colorBG);
    padding: 0; margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

#numINFO { opacity: 35%; }
#numINFO:hover { cursor: pointer; opacity: 80%; }
#numHoveredINFO { display: none;
    position: absolute;
    z-index: 99;
    bottom: 10px;
    background: rgb(77, 77, 77);
    border-radius: 3px;
    padding: 7px 13px;
} #numHoveredINFO * {
    padding: 0; margin: 0;
}

main:not(#deleteAcount main) {
    width: 100%;
    height: calc(100% - var(--how120));
    position: relative;
    top: var(--how120);
    left: 0;
}

#section_loading {
    display: block;
}

#section_loaded {
    display: none;
}

.FlexCenter, .FlexCenter2 {
    display: flex;
    align-items: center;
    justify-content: center;
} .FlexCenter { flex-direction: column; }

.classCommune {
    width: 70%; height: auto;
    box-shadow: var(--boxshadowOFFICIAL);
    background: white;
    padding: 20px; margin: 0;
    border-radius: 14px;
}

@media screen and (max-width:1520px) { .classCommune { width: 90%; } }
@media screen and (max-width:865px) {
    .classCommune {
        width: 82%;
        box-shadow: none;
        background: transparent;
    } 
}


.ButtonCLS {
    padding: 12px 20px; margin: 20px;
    background: var(--greatGREY);
    border: 2px solid white;
    border-radius: 20px;
    text-decoration: none;
    color: black;
}

.ButtonCLS:hover, .ButtonCLS:focus {
    cursor: pointer;
    border: 2px solid var(--lightBLUE);
}


form {
    top: 0 !important;
    position: relative;
}

form input {
    background: white;
    border: none;
    border-bottom: 2px solid rgb(212, 212, 212);
    margin: 5px;
    width: 100%; height: 30px;
    outline: none;
    position: relative;
}

form input::placeholder {
    color: rgba(0, 0, 0, 0.24);
}

form input:focus {
    border-bottom: 2px solid #006eff;
}

form button {
    background: #006eff;
    width: 100%; height: 40px;
    border-radius: 20px;
    color: white;
    border: 2px solid transparent;
    margin-top: 10px;
}

form button:hover {
    cursor: pointer;
    border: 2px solid #006eff;
}