

:root {
    /* --popupinfos-background: #e9af59; */
    --popupinfos-background: #e9e8e7;
    --popupinfos-background-hover: #b7b7b7;
    --popupinfos-font: "Bai Jamjuree", sans-serif;
}

.banner-info-what,
.banner-info-how,
.banner-info-who {
    position: fixed;
    left: 200px;
    top: -350px;
    width: 350px;
    background-color: var(--popupinfos-background);
    box-shadow: 10px 10px 15px 0px rgba(0,0,0,0.2);
    border-radius: 8px;
    padding: 20px;
    transition: top 0.7s ease;
    font-family: var(--popupinfos-font);
    z-index: 8;
}

.show-info {
    background-color: var(--popupinfos-background);
    top: 60px;
}

#header-banner-info-what,
#header-banner-info-how,
#header-banner-info-who {
    display: flex;
    line-height: 22px;
    background-color: var(--popupinfos-background);
    align-items: center;
    column-gap: 15px;
}

.what-icon:before {
    content: "\1F680";
    font-size: 30px;
    background-color: var(--popupinfos-background);
}
.how-icon:before {
    content: "\1F52E";
    font-size: 30px;
    background-color: var(--popupinfos-background);
}
.who-icon:before {
    content: "\1F916";
    font-size: 30px;
    background-color: var(--popupinfos-background);
}

#header-banner-info-what h2,
#header-banner-info-how h2,
#header-banner-info-who h2 {
    font-family: var(--popupinfos-font);
    font-weight: 500;
    color: #3e3f3f;
    background-color: var(--popupinfos-background);
    font-size: 1.2rem;
}

.data-what,
.data-how,
.data-who {
    background-color: var(--popupinfos-background);
}

.data-what p,
.data-how p,
.data-who p {
    margin-top: 10px;
    font-family: var(--popupinfos-font);
    color: #3e3f3f;
    background-color: var(--popupinfos-background);
    font-size: 1rem;
    text-align: justify;
}

.dismissal-button-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    background-color: var(--popupinfos-background);
}

    .dismissal-button {
        width: 2.5rem;
        border-radius: 1.25rem;
        cursor: pointer;
        text-align: center;
        color: #3e3f3f;
        font-size: 2rem;
        font-weight: 800;
        background-color: var(--popupinfos-background);
    }

    .dismissal-button:hover {
        background-color: var(--popupinfos-background-hover);
        /* box-shadow: 10px 10px 15px 0px rgba(0,0,0,0.2); */
    }

#contacttobanner {
    text-decoration: none;
    color: #ff9100;
    background-color: var(--popupinfos-background);
}

#contacttobanner:hover {
    color: #6f6601;
}


