#tutorial-links table { width: 100%; padding: 5px; }
#tutorial-links table:nth-child(even) { background-color: #fff; }
#tutorial-links .text-center { text-align: center; }

.mfl-form  {
    background-color: #f2f2f2;
    padding: .5rem 1.5em;
    margin: 0 1.5em;
    display: none;
}

.mfl-form select, 
.mfl-form input[type=text],
.mfl-form input[type=url] {
    background: none;
    width: 100%;
    max-width: 100%;
    padding: 5px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.mfl-button {
    width: 100%;
    color: white;
    background-color: #3486ae;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.mfl-button:hover {
    background-color: #247eaa;
}

div#mfl-control,
div#favorite-list {
    display: flex;
    width: 100%;
}

div#favorite-list {
    flex-wrap: wrap;
    justify-content: center;
}

div#mfl-control::after {
    content: "";
    clear: both;
    display: block;
}

div#mfl-control div {
    width: 50%;
    padding: 12px 25px;
}

#mfl-notification {
    padding: 20px;
    color: white;
    margin-bottom: 15px;
}

#mfl-notification.danger { background-color: #f44336; }
#mfl-notification.success { background-color: #4CAF50; }
/* #mfl-notification.warning { background-color: #ff9800; } */

#mfl-notification {
    font-size: 1.3rem;
    line-height: 1.5rem;
    text-align: center;
    margin: 15px 25px 0 25px;
}

#mfl-notification .closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

#mfl-notification .closebtn:hover {
    color: black;
}

div.favorite-category {
    background: #f6f3b5;
    padding: .7rem 1.4rem;
    margin: .3rem .6rem;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    width: 25.6%;
}

div.favorite-category li {
    list-style: disc;
    margin: 15px;
}

.mfl-remove-link {
    float: right;
    color: red;
    cursor: pointer;
}

@media only screen and (max-width: 600px) {
    div#mfl-control div {
        width: 100%;
    }
}