#machinery {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    align-content: flex-start;
    min-height: 100%;
    padding-top: 50px;
}

.machine_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 230px;
    height: 400px;
    margin: 10px;
    padding: 10px;
    border: 1px solid #2f2f2f;
    cursor: pointer;
}

.machine_icon img {
    height: 200px;
}

.machine_name {
    width: 100%;
    font-size: 16px;
    text-align: center;
    padding-top: 20px;
}

.machine_data {
    border-top: 1px solid #2f2f2f;
    margin-top: 10px;
    padding-top: 10px;
    margin-bottom: 20px;
    align-items: left;
}

.machinery_link,
.machinery_link:hover,
.machinery_link:visited,
.machinery_link:active {
    text-decoration: none;
    color: #2f2f2f;
}

.machinery_scroll {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    overflow-x: auto;
    margin: auto;
}

.machine_box_scroll {
    width: 230px;
    height: 400px;
    margin: 10px;
    padding: 10px;
    border: 1px solid #2f2f2f;
    cursor: pointer;
}

.plant_bar {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 10px;
	font-size: 18px;
	font-weight: bold;
    border-top: 1px solid #2f2f2f;
    border-bottom: 1px solid #2f2f2f;
}

#loader {
    border: 16px solid #f3f3f3; 
    border-top: 16px solid #d37a2c; 
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 800px) {

    .machinery_scroll {
        flex-wrap: wrap;
    }
}