/******************************************************************/
/******************************************************************/
/* USER GUIDE */
/******************************************************************/
/******************************************************************/
.simple-topic {
    display: flex;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid var(--gray-100);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.2s ease;
    cursor: default;
}

    .simple-topic:hover {
        color: var(--text-primary);
        background-color: var(--gray-50);
        padding-left: 10px;
        text-decoration: none;
        cursor: default;
    }

    .simple-topic:last-child {
        border-bottom: none;
    }

.user-guide-table {
    border: 0px;
    padding: 3px;
    margin-left: 30px;
    table-layout: fixed;
    width: auto;
}

    .user-guide-table td:first-child {
        width: 40px;
    }

    .user-guide-table td:nth-child(2) {
        width: 250px;
    }

    .user-guide-table td:nth-child(3) {
        width: 200px;
        vertical-align: middle;
    }

    .user-guide-table img {
        width: 200px !important;
        height: auto !important;
        display: block;
    }

@media (max-width: 767px) {
    .user-guide-table {
        table-layout: fixed !important;
        width: 100% !important;
        margin-left: 0 !important;
    }

        .user-guide-table td:first-child {
            width: 20px !important;
        }

        .user-guide-table td:nth-child(2) {
            width: 60% !important;
        }

        .user-guide-table td:nth-child(3) {
            width: 120px !important;
            vertical-align: top !important;
        }

        .user-guide-table img {
            width: 100px !important;
            max-width: 100px !important;
            height: auto !important;
            display: block !important;
        }
}
