@import url("../fonts/montserrat/font.css");

/* .guide_area{
    display: flex;
    position: absolute;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: #00000080;
    z-index: 1000;
    justify-content: center;
    align-items: center;
} */
.guide_container{
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 50%; left: 50%;
    /* transform: translate(-50%, -50%); */
    z-index: 500;
    width: 340px; height: auto;
    background: var(--bg-color-2);
    border-radius: 16px;
    border: 1px solid var(--border-color);

    padding: 24px;
    gap: 24px;

    transition: transform .75s ease;
    transform: scale(1);
    transform-origin: center center;

    box-shadow: 0 0 128px #00000040;
}
.guide_container-closed{
    transform: scale(0);
    transition: transform .25s ease!important;
}
.guide_header{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: top;
}
.guide_title{
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--font-color);
}
.guide_close-button{
    width: 20px; height: 20px;
    cursor: pointer;
}
.guide_list{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 8px;
}
.guide_list-element{
    display: flex;
    width: auto;
    padding: 12px;
    border-radius: 8px;

    background: var(--panel-color-2);
    color: var(--font-color);

    align-items: center;
    font-family: 'Montserrat', sans-serif;
}
.guide_list-element > img{
    width: 32px; height: 32px;
    margin-right: 12px;
}