
<style>
    body {
        --accentColor: #004144;
    }

    .Launcher {
        position: fixed;
        bottom: 32px;
        right: 32px;
        border: none;
        margin: 0;
        padding: 0;
        outline: none;
        box-shadow: 1px 0 4px rgba(23, 23, 23, 0.3);
        display: flex;
        background-color: #ffffff;
        align-items: stretch;
        cursor: pointer;
    }

    .Launcher__Icon {
        width: 48px;
        height: 48px;
        padding: 20px;
        color: var(--accentColor);
        border-color: transparent;
        border-width: 1px 0 1px 1px;
        border-style: solid;
    }

    .Launcher:focus .Launcher__Icon {
        border-color: var(--accentColor);
    }

    .Launcher:hover .Launcher__Icon {
        background-color: #e0e0e0;
    }

    .Launcher__TextContainer {
        flex: 1;
        display: flex;
        align-items: center;
        background-color: var(--accentColor);
        color: #ffffff;
        border-color: var(--accentColor);
        border-width: 1px 1px 1px 0;
        border-style: solid;
    }

    .Launcher:focus .Launcher__TextContainer {
        box-shadow: inset 0 0 0 1px #ffffff;
    }

    .Launcher:hover .Launcher__TextContainer {
        opacity: 0.8;
    }

    .Launcher__Text {
        width: 180px;
        padding: 16px;
        text-align: left;
        font-size: 16px;
        line-height: 24px;
    }

    @media (max-width:600px) {

        .Launcher__Icon {
            width: 24px;
            height: 24px;
            padding: 10px;
            color: var(--accentColor);
            border-color: transparent;
            border-width: 1px 0 1px 1px;
            border-style: solid;
        }

        .Launcher:focus .Launcher__Icon {
            border-color: var(--accentColor);
        }

        .Launcher:hover .Launcher__Icon {
            background-color: #e0e0e0;
        }


        .Launcher:focus .Launcher__TextContainer {
            box-shadow: inset 0 0 0 1px #ffffff;
        }

        .Launcher:hover .Launcher__TextContainer {
            opacity: 0.8;
        }

        .Launcher__Text {
            display: none;
        }
    }
</style>
