#stock_quote_settings {
    .stock_quote_wrapper {
        display: table;

        .content_cell {
            display: table-cell;

            button[name="sq_force_data_fetch_stop"] {
                display: none;
                &.enabled {
                    display: initial;
                }
            }
            .sq_force_data_fetch {
                &:empty {
                    display: none;
                }
                background: #23282d;
                color: #ccc;
                margin-top: 10px;
                padding: 5px;
                font-family: monospace;
            }
        }

        .sidebar_container {
            display: table-cell;
            padding: 0 0 0 20px;
            width: 25%;

            .ausq-button {
                display: block;
                background: #fff;
                border-radius: 7px;
                border: 1px solid rgba(0,0,0,0.1);
                box-shadow: 0 0 0 5px rgba(0,0,0,0.1);
                padding: 11px 15px;
                white-space: nowrap;
                line-height: 18px;
                color: #bdbdbd;
                text-shadow: 1px 1px #fff;
                text-decoration: none;
                position: relative;
                min-width: 120px;

                &:hover {
                    color: #6796a9;
                    background-color: #c2edff;
                }

                &.paypal_donate:after {
                    content: ' ';
                    background-image: url(../img/paypal.png);
                    background-repeat: no-repeat;
                    background-position: center right;
                    width: 62px;
                    height: 100%;
                    display: inline-block;
                    position: absolute;
                    right: 15px;
                    top: 0;
                    bottom: 0;
                }
            }
        }

    }
    .help {
        display: flex;
        flex-direction: row;
        background: #fff;
        padding: 20px;
        border: 1px solid #000;

        .overview {
            width: 60%;
            display: inline-flex;
            flex-direction: column;

            table {
                width: 100%;
                tbody th {text-align: left; }
                tr th, tr td {
                    border-bottom: 1px solid #000;
                }
            }
            dl {
                padding-top: 5px;
                dt {
                    float: left;
                    width: 110px;
                    padding: 5px;
                    &.head {
                        font-weight: 600;
                    }
                }
                dd {
                    &.head {
                        border-top: 1px solid #ccc;
                        font-weight: 600;
                    }
                    box-sizing: border-box;
                    width: 100%;
                    border: 1px solid #ccc;
                    border-top: 0;
                    margin: 0;
                    padding: 5px 5px 5px 120px;
                }
            }
        }
        .exchanges {
            width: 40%;
            display: flex;
            justify-content: space-between;
            .exchanges-supported,
            .exchanges-unsupported {
                display: inline-flex;
                flex-direction: column;
                padding-left: 20px;
            }
            .exchanges-supported * {
                color: #009D59;
            }
            .exchanges-unsupported * {
                color: #D8442F;
            }
        }
    }
}

@media only screen and (max-width: 1480px) {
    #stock_quote_settings {
    .help {
        flex-direction: column;
        .overview {
            width: 100%;
        }
        .exchanges {
            width: 100%;
            justify-content: flex-start;
            .exchanges-supported {
                padding-left: 0;
            }
        }
    }
    }
}