/* box (from ddp_css.css L176-L199) */
.box {
    background:#fff;
    transition:all 0.4s ease;
    border:2px dashed #dadada;
    margin-top: 10px;
    box-sizing: border-box;
    border-radius: 5px;
    background-clip: padding-box;
    padding: 0 20px;
    min-height:340px;
}
.box:hover {
    border:2px solid #525C7A;
}
.box .box-content {
    padding: 16px;
    border-radius: 0 0 2px 2px;
    background-clip: padding-box;
    box-sizing: border-box;
}
.box .box-content p {
    color: #515c66;
    text-transform:none;
}
