#mainCompartment .stakehCell {
    overflow: hidden;
}
#mainCompartment .stakehCell .imageCell {
    float: left;
    width: 150px;
    margin-right: 30px;
    margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
    #mainCompartment .stakehCell .imageCell {
        float: none;
        margin: 0 auto;
    }
}
#mainCompartment .stakehCell .imageCell img {
    width: 100%;
    height: auto;
}

/* [applicationButton]
-----------------------------------------------    */
.responsive #bodyDivision div.applicationBox .applicationButton {
    margin-top: 15px;
    margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
    .responsive #bodyDivision div.applicationBox .applicationButton {
        margin-top: 0;
        margin-bottom: 0;
        padding: 9px 10px 9px;
        /* border-bottom: 1px solid #d2d3d5; */
    }
}

.responsive #bodyDivision div.applicationBox .applicationButton a {
    display: block;
    width: 322px;
    height: 50px;
    line-height: 50px;
    margin: 0 auto;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    text-decoration: none;
    background-color: #9ca9b7;
    border-radius: 5px;
    position: relative;
    z-index: 0;
    overflow: hidden;
}
@media screen and (max-width: 767px) {
    .responsive #bodyDivision div.applicationBox .applicationButton a {
        width: auto;
        height: 40px;
        line-height: 40px;
        font-size: 15px;
    }
}

.responsive #bodyDivision div.applicationBox .applicationButton a::before {
    display: block;
    content: "";
    width: 100%;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #7d8792;
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.responsive #bodyDivision div.applicationBox .applicationButton a:hover::before {
    -webkit-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
