/* === OZ MAIN === */
/* --- DARK SIDE --- */
:root {
    --max-width: 1200px;
    --max-width-inside: 640px;
    --media-max-width: 640px;
    --modal-max-width: 640px;
    --main-padding: 4rem 0 0 0;
    --logo-width: 2.5rem;

    --transition-all: all 0.3s ease;

    --radius: 0.3rem;
    --radius-left: 0 0 0.3rem 0.3rem;
    --radius-right: 0.3rem 0.3rem 0 0;

    /* --- SIZES --- */
    --weight-300: 300;
    --weight-400: 400;
    --weight-500: 500;
    --weight-600: 600;
    --weight-700: 700;
    --weight-800: 800;

    /* === COMPONENTS === */
    --logo-fill: hsl(0, 0%, 0%);

    /* --- BUTTONS --- */
    --btn-svg-size: 1.9rem;
    --btn-svg-fill: hsl(0, 0%, 0%);
    --btn-svg-bkg: hsl(40, 80%, 55%);
    --btn-svg-bkg-hover: hsl(40, 78%, 45%);
    --btn-svg-fill-hover: hsl(0, 0%, 90%);

    --btn-txt-svg-size: 1.5rem;
    --btn-txt-svg-fill: hsl(0, 0%, 0%);
    --btn-txt-color: hsl(0, 0%, 0%);
    --btn-txt-color-hover: hsl(0, 0%, 90%);
    --btn-txt-bkg: hsl(40, 80%, 55%);
    --btn-txt-bkg-hover: hsl(40, 80%, 45%);
    --btn-txt-svg-fill-hover: hsl(0, 0%, 90%);

    /* --- BACKGROUND --- */
    --bkg-body: hsl(0, 0%, 94%);
    --bkg-header: transparent;
    --bkg-main: hsl(0, 0%, 94%);
    --bkg-footer: hsl(0, 0%, 27%);

    --bkg-modal: hsl(0, 0%, 94%);
    --bkg-modal-grey: hsl(0, 0%, 30%);

    --bkg-card-grey: hsl(0, 0%, 30%);
    --bkg-card-dark-grey: hsl(0, 0%, 15%);
    --bkg-card-dark: hsl(0, 0%, 10%);
    --bkg-card-yellow: hsl(40, 80%, 55%);

    --bkg-mdc-yellow: hsl(40, 80%, 55%);
    --bkg-mdc-green: hsl(112, 66%, 39%);

    --bkg-logo-yellow: hsl(40, 80%, 55%);
    --bkg-logo-green: hsl(112, 66%, 39%);


    --bkg-linear-yellow-45: linear-gradient(45deg, hsl(0, 0%, 15%) 40%, hsl(40, 80%, 55%) 100%);
    --bkg-linear-yellow-180: linear-gradient(180deg, hsl(0, 0%, 15%) 0%, hsl(40, 80%, 55%) 100%);
    --bkg-linear-green-45: linear-gradient(45deg, hsl(0, 0%, 15%) 40%, hsl(112, 66%, 39%) 100%);

    /* --- FILL --- */
    --fill-logo-light: hsl(0 0% 100%);

    /* --- TXT --- */
    --txt-light: hsl(0, 0%, 94%);
    --txt-dark: hsl(0, 0%, 5%);
    --txt-grey: hsl(0, 0%, 50%);
    --txt-yellow: hsl(40, 80%, 55%);
    --txt-green: hsl(112, 66%, 49%);
    --txt-red: hsl(0, 60%, 53%);

    --txt-my: hsl(0, 0%, 100%);
    --txt-daily-care: hsl(0, 0%, 5%);
    --txt-votre-assistant-sante: hsl(0, 0%, 50%);

    /* --- SHADOWS --- */
    --shadow: 0 0 0.15rem hsla(0, 0%, 27%,1);
    --shadow-modal: 0 0 0.6rem hsla(0, 0%, 0%, 0.2);

    /* --- BORDER --- */
    --border-light: 1px solid hsl(0, 0%, 94%);
    --border-dark: 1px solid hsl(0, 0%, 10%);
    --border-card-grey: 1px solid hsl(0, 0%, 50%);
    --border-yellow: 1px solid hsl(40, 80%, 55%);
    --border-green: 1px solid hsl(112, 66%, 49%);
    --border-red: 1px solid hsl(0, 60%, 53%);

    --border-right-green: 15px solid hsl(112, 66%, 39%);

}

/* --- Root Light Side --- */
/*:root.dark-theme {
    --cl-grey-1: hsl(0, 0%, 95%);
    --cl-grey-2: hsl(0, 0%, 80%);
    --cl-grey-3: hsl(0, 0%, 60%);
    --cl-grey-4: hsl(0, 0%, 40%);
    --cl-grey-5: hsl(0, 0%, 5%);
}*/

/* === RESETS && TAGS === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 18px;
}

body {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    grid-template-areas: "main" "footer";
    width: 100vw;
    height: 100vh;
    font-family: 'Roboto', 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
    font-optical-sizing: auto;
    font-weight: normal;
    line-height: normal;
    letter-spacing: 0.08rem;
    -webkit-text-size-adjust: 100%;
    background: var(--bkg-body);
}

body.no-scroll {
    overflow: hidden;
}

header {
    position: fixed;
    width: 100%;
    height: auto;
    background: var(--bkg-header);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

main {
    display: grid;
    grid-area: main;
    align-content: start;
    padding: var(--main-padding);
    width: 100%;
    height: 100%;
    background: var(--bkg-main);
}

footer {
    display: grid;
    grid-area: footer;
    width: 100%;
    height: auto;
    padding: 0.5rem;
    background-color: var(--bkg-footer);
}

img {
    display: block;
    border-style: none;
    width: 100%;
    max-width: 300px;
    min-width: 280px
}

button {
    all: unset;
    cursor: pointer;
}

a {
    display: flex;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
    display: flex;
    width: 100%;
    font-size: 0.9rem;
    word-break: normal;
    white-space: none;
}

p {
    display: flex;
    width: 100%;
    word-break: normal;
    white-space: none;
}

span {
    display: flex;
    width: fit-content;
    font-size: 0.9rem;
    word-break: break-word;
    white-space: normal;
}

input,
textarea,
select {
    display: flex;
    padding: 0.2rem;
    outline: none;
    border: none;
    box-shadow: none;
    background-color: green;
    transition: var(--transition-all);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    background-color: #1a252f;
}

input:hover,
textarea:hover,
select:hover {
    outline: none;
    background-color: #d32f2f;
}

/*input[data-type="cel"] {
    display: flex;
    align-self: center;
    justify-self: center;
    text-align: center;
    font-weight: 500;
    font-size: 1.2rem;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.3rem 0.5rem;
    color: black;
}*/

/* ------------------------------------------------------------------- */


/* --- RADIUS --- */
.oz-radius-05 {
    border-radius: var(--radius);
}

/* --- EMPTY --- */
.oz-empty {
    display: none;
}

/* --- SPACERS --- */
.oz-spacer-05 {
    height: 0.5rem;
}

.oz-spacer-1 {
    height: 1rem;
}


/* === MEDIA QUERIES === */
@media (max-width: 768px) {
    html::-webkit-scrollbar {
        display: none;
    }

    html, body {
        font-size: 16px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}