.supboxes {
    width: 100%;
    margin-top: 10px;
    margin-right: 10px;
    display: flex;
    flex-flow: wrap
}
 
.supbox {
    width: 200px;
    border: 1px solid #ff9e9e;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,.24) !important;
    margin-right: 10px;
    margin-bottom: 10px
}

.supbox div.title {
    border-bottom: 1px solid #ff9e9e;
    font-size: 16px;
    padding: 5px 7px;
    font-weight: bold;
    background: #fff5f5
}

.supbox div.image {
    transition: background 0.5s ease;
}

.supbox div.image:hover {
    background: #fff5f5
}

.supbox div.image img {
    vertical-align: bottom
}

.supbox div.image input {
    vertical-align: bottom
}

.supbox div.link {
    display: flex;
    border-top: 1px solid #ff9e9e;
    height: 30px;
    color: gray
}

.supbox div.link div:first-child {
    display: flex;
    width: 25%;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.supbox div.link div:last-child {
    width: 75%;
    border-left: 1px solid #ff9e9e;
}

.supbox div.link div:last-child input {
    border: none;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    color: gray;
    font-size: 16px;
    padding: 0 8px;
}

.infotext {
    margin-top: 10px;
}