#home-img {
    width: 80%;
    border-radius: 8px;
    border: 1px solid #b3b3b3;
    box-shadow: 1px 1px 20px #d5d5d5;
}

@media screen and (max-width: 768px) {
    #home-img {
      width: 100%;
    }
}

.prod-section {
    display: flex;
    flex-flow: column wrap;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: start;
    margin-top: 50px;
}
.section-tile {
    width: 162px;
    height: 180px;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    text-align: center;
    padding: 5px;
    margin: 0 10px 10px 0;
    cursor: pointer;

    &.selected {
        border-color: gray;
    }

    &:hover {
        border-color: #a7d6dc;
        background-color: #f5feff;
    }

    & img {
        margin: 10px 0;
        width: 80px;
        text-align: center;
    }

    & span {
        display: inline-block;
        font-size: 18px;
        margin-top: 15px;
        color: #555;
    }
}

.span-high-1 {
    color: #333;
    background-color: #eefda1;
    padding: 5px 10px;
    border-radius: 3px;
}

.span-high-2 {
    color: #333;
    background-color: #cff9ff;
    padding: 5px 10px;
    border-radius: 3px;
}

.span-high-3 {
    /* background-color: #fffef1; */
    /* border: 1px dotted #a5bd9d;
    padding: 0 7px;
    border-radius: 3px;
    color: #6b6b6b; */
    /* font-family: "Myriad Thin"; */
    font-size: 21px;
    font-weight: 800;
}

.prod-link img {
    width: 100%;
    border-radius: 4px;
    border: 2px solid #ddd;
    background-color: white;

    &:hover {
        border-color: #91acdc;
    }
}

.click-link {
    text-align: center;
    margin-top: 15px;
    color: #555;
    font-size: 15px;
}

.img-link {
    padding-top: 15px;
    color: black;
}

.img-link span {
    display: inline-block;
    width: 14px;
    height: 14px;
    background-color: white;
    border: 1px solid silver;
    border-radius: 10px;
    margin: 8px;
    cursor: pointer;

    &.selected {
        background-color: #b0c0d9;
        border-color: #5a6d83;
    }
}