#results {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.tool-name {
    font-family: 'Montserrat','Roboto',"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: bold;
    color: #48486c;
}

.window-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 30px;
}

.window-btn {
    padding: 6px 12px;
    border-radius: 5px;
    margin: 0 4px;
    color: #48486c;
    background: #f4f4f4;
}

.window-btn:hover {
    opacity: 0.8;
    cursor: pointer;

}

.window-btn.selected {
    background: #2c3756;
    color: white;
}

.paper-well {
    border-radius: 8px;
    padding: 15px;
    margin: 0 17px 35px;
    display: flex;
    flex-direction: row;
    max-width: 450px;
    flex-basis: 50%;
    color: #48486c;
}

.niche-item::after {
    content: "";
    flex: auto;
}

.niche-item-number {
    font-weight: bold;
    font-size: 1.4em;
    margin-right: 15px;
}

.niche-item-image img {
    width: 100px;
    height: auto;
    margin: 0 15px;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #48486c1c
}

.niche-item-right {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.niche-item-description {
    opacity: 0.75;
    margin-top: 5px;
}

.niche-item-description a {
    margin-top: 5px;
    display: block;
}

.niche-item-title a {
    color: #48486c;
    font-weight: bold;
    font-size: 1.3em;
    text-decoration: underline;
}

.niche-item-line {
    border-top: 1px solid #eaeaea;
    width: 100%;
    margin: 10px 0;
}

@media screen and (max-width: 1600px) {
    .paper-well {
        margin: 0 10px 30px;
    }
}

/* Mobile */

@media screen and (max-width: 600px) {
    .niche-item-number {
        text-align: left;
    }
    .paper-well {
        flex-direction: column;
        flex-basis: 100%;
        max-width: initial;
    }
    .niche-item-image img {
        margin: 15px 0;
        width: 100%;
    }
}