.dcs_guide_callout {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 10px;
    margin: auto;
    width: 140px;
    max-width: 100%;
    z-index: 99999;

    padding: 0.5em;
    background: #1d2327;
    color: #fff;
    border-radius: 1em;
    display: none;
    cursor: pointer;


    align-items: center;
    flex-direction: row;
    justify-content: center;
    font-size: 1em;
    user-select: none;
}

.dcs_guide_callout svg {
    color: #a7aaad;
    margin-right: 10px;
    width: 20px;
}

#dcs_guide_modal {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 10px;
    margin: auto;
    width: 600px;
    max-width: 100%;
    border-radius: 10px;
    background: #fff;
    color: #000;
    padding: 1rem;
    z-index: 999999;
    visibility: hidden;
    box-shadow: 0 3px 20px 6px rgb(0 0 0 / 6%);
}

#dcs_guide_close {
    position: absolute;
    top: -10px;
    right: -10px;
    background: white;
    border-radius: 999px;
    width: 30px;
    height: 30px;
    text-align: center;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
}

#dcs_guide_close svg {
    color: #000;
    width: 20px;
}

.dcs_guide_help {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
    padding: 10px 0;
}

.dcs_guide_logo svg {
    width: 150px;
}

.dcs_guide_btn_link {
    padding: 10px 20px;
    border: 1px solid black;
    border-radius: 5px;
    color: black;
    text-decoration: none;
    font-size: 1rem;
}

.dcs_guide_btn_link:hover {
    background-color: black;
    color: white;
}