﻿.bloc-module {
    -moz-box-shadow: 0 0 20px rgb(204, 204, 204);
    -webkit-box-shadow: 0 0 20px rgb(204, 204, 204);
    box-shadow: 0 0 20px rgb(204, 204, 204);
    max-width: 410px;
    min-height: 550px;
    position: relative;
    padding: 1.5rem 3rem;
    margin-left: auto;
    margin-right: auto;
    border-radius: 0.75rem;
}

    .bloc-module .bloc-module-titre {
        background-color: var(--color-orange-light);
        color: var(--color-orange-dark);
        border-radius: 0.75rem;
        position: absolute;
        top: -2px;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 0.5rem 1rem;
        font-weight: var(--font-weight-bold);
    }

    .bloc-module .bloc-module-header {
        display: flex;
        flex-direction: column;
        text-align: center
    }

        .bloc-module .bloc-module-header .bloc-module-header-titre {
            font-size: 1.5rem;
            font-weight: var(--font-weight-bold);
            margin-top: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .bloc-module .bloc-module-header .bloc-module-header-body {
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
            font-weight: var(--font-weight-medium);
        }

    .bloc-module .bloc-module-separator {
        border: 1px solid #424242;
        margin-top: 1.5rem;
        margin-bottom: 1.75rem;
    }
