﻿.vert-line {
    border-left: 2px dashed #ddd;
    flex-grow: 1;
}

.fade-in {
    display: inline-block;
    border-radius: 3px;
    border-left: 2px dashed #f7f8fa;
    background: linear-gradient(#f7f8fa,#f7f8fa) padding-box /* Don't extend this to border */, linear-gradient(to bottom, transparent, #ddd) border-box; /*Border-box is not need as it's the default value*/
}

.fade-out {
    display: inline-block;
    border-radius: 3px;
    border-left: 2px dashed #f7f8fa;
    background: linear-gradient(#f7f8fa,#f7f8fa) padding-box /* Don't extend this to border */, linear-gradient(to bottom, #ddd, transparent) border-box; /*Border-box is not need as it's the default value*/
}

.bg-deepblue {
    background-color: #1c528c;
}

.paragraph {
    text-indent: 15px;
}
