* {
    box-sizing: border-box;
}

.content {
    width: 100%;
}

.column-side {
    float: left;
    margin-top: 145px;
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
}

.column-middle {
    float: left;
    width: 60%;
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
}

.row {
    background-color: white;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

.gallery {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.important {
    background: rgba(255, 235, 130, 0.2);
    border-left: 4px solid #e7af06;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12), 0 3px 10px rgba(0, 0, 0, 0.08);
    padding: .8rem;
    padding-left: 4em;
    display: block;
    position: relative;
}

.important::before {
    color: #e7af06;
    content: "important";
    display: block;
    font-weight: bold;
    font-size: .75em;
    text-transform: uppercase;
    padding-bottom: .125rem;
}

.important::after {
    content: url("../help/assets/images/callouts/important.svg");
    fill: #e7af06 !important;
    display: block;
    position: absolute;
    top: 0;
    width: 3em;
    height: 3em;
    margin-top: .8rem;
    margin-left: -3.4em;
}