/* +++++++++++++++++++++++++++++++ *\
            LEFT-SECTION
\* +++++++++++++++++++++++++++++++ */
.left_panel {
    display: inline-grid;
    align-content: space-between;
    padding: 16px;

    --footer_height: 90px;
}

/* +++++++++++++++++++++++++++++++ *\
              header
\* +++++++++++++++++++++++++++++++ */
.left_panel_header {
    width: 100%;
    text-align: center;
}
.left_panel_header img {
    max-width: 200px;
}
.left_panel_header h1 {
    color: var(--color_secondary);
    font-size: 28px;
    line-height: 0.8;
}

@media (min-width: 438px) {
    .left_panel_header {
        width: 100%;

        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .left_panel_header img {
        width: 30%;
    }
    .left_panel_header h1 {
        width: 65%;
    }
}

@media (min-width: 640px) {
    .left_panel_header h1 {
        font-size: 36px;
    }
}

@media (min-width: 768px) {
    .left_panel_header {
        display: block;
    }
    .left_panel_header img {
        width: 100%;
    }
    .left_panel_header h1 {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .left_panel_header {
        display: flex;
    }
    .left_panel_header img {
        width: 30%;
    }
    .left_panel_header h1 {
        width: 65%;
    }
}

/* +++++++++++++++++++++++++++++++ *\
               body
\* +++++++++++++++++++++++++++++++ */
.panel-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    height: 100%;
}

.panel-content {
    width: 100%;
}


/* +++++++++++++++++++++++++++++++ *\
            pastille
\* +++++++++++++++++++++++++++++++ */
.panel-pill {
    --color_pill: var(--color_primary);
    border-radius:  50px;
    background-color: var(--color_pill);
    padding: 0.5rem;
    position: relative;

    width: calc(var(--footer_height) * 2 + 60);
    max-height: calc(var(--footer_height) - 20px);
}


.panel-pill-icon {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(0%, -50%);
    width: var(--footer_height);
    height: var(--footer_height);
    border-radius: 50%;
    border: 5px solid #ffc5b2;
    background-color: var(--color_white);
    padding: 18px;
}
.panel-pill-icon img {
    width: 100%;
    object-fit: contain;
}
.panel-pill-content {
    width: 60%;
    margin-left: auto;
}
.panel-pill-content img {
    width: 60%;
    height: auto;
    margin: 0 auto 5px;
    display: block;
}
.panel-pill-content > p {
    margin: 0;
    color: var(--color_white);
    font-weight: bold;
    font-size: 12px;
    text-align: center;
}

/* +++++++++++++++++++++++++++++++ *\
               list
\* +++++++++++++++++++++++++++++++ */
.panel-list {
    max-width: 225px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 1rem;
    padding: 1rem;
    margin: 1rem auto;
}
.panel-list h3 {
    text-align: center;
    line-height: 1;
    margin-bottom: 0.75rem;
}
.panel-list-group {
    width: 100%;
}
.panel-list-item {
    display: inline-block;
    width: 100%;
    max-width: 175px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin: 0.75rem auto;
}
.panel-list-item img {
    width: 32px;
    height: 32px;
}
.panel-list-item p {
    /* width: 115px; */
    width: calc(100% - 45px);
    font-size: 12px;
    font-weight: 700;
    color: var(--color_primary);
    text-align: left;
}
@media (min-width: 640px) {
    .panel-list {
        max-width: 600px;
    }
    .panel-list-group {
        display: flex;
        justify-content: center;
        align-items: center;
        column-gap: 0rem;
        row-gap: 1rem;
        flex-wrap: wrap;
    }
    .panel-list-item {
        margin: 0;
    }
}
@media (min-width: 768px) {
    .panel-list {
        max-width: 225px;
    }
}
@media (min-width: 992px) {
    .panel-list {
        max-width: 600px;
    }
    .panel-list-group {
        column-gap: 1rem;
    }
}

/* +++++++++++++++++++++++++++++++ *\
               footer
\* +++++++++++++++++++++++++++++++ */
.panel-footer {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.panel-footer > div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.panel-footer > div > img {
    height: var(--footer_height);
}

.panel-footer > p {
    font-size: 14px;
    font-weight: 600;
    color: var(--color_white);

    margin-bottom: 0rem;
    padding: 1rem 2rem 1rem 3rem;
    clip-path: polygon(90% 0%, 100% 50%, 90% 100%, 0% 100%, 10% 50%, 0% 0%);
    background-color: var(--color_primary);

    min-width: 230px;
    width: auto;
}

@media (min-width: 640px) {
    .panel-footer {
        width: 100%;
    }
    .panel-footer > div {
        min-width: 320px;
    }
    .panel-footer > p {
        text-align: left;
        max-width: 250px;
    }
}
@media (min-width: 768px) {
    .panel-footer {
        display: block;
    }
    .panel-footer > div {
        min-width: auto;
    }
    .panel-footer > p, .panel-footer > span {
        text-align: center;
    }
    
}
@media (min-width: 992px) {
    
    .panel-footer {
        display: flex;
    }
    .panel-footer > p {
        text-align: left;
    }
    .panel-footer > span {
        text-align: left;
    }
}