.white-paper-content-row {
    display: flex;
    justify-content: end;
}
.white-paper-content-row.two-column .et_pb_column:not(.side-column) {
/*	max-width: 60%;*/
    flex: 2;
}
.white-paper-content-row:not(.two-column) .et_pb_column {
	width: auto;
}
.white-paper-content-row .side-column {
	display: none;
}
.white-paper-content-row .side-column .tweet-container {
	flex: 1;
}
.white-paper-content-row .custom-post-content h2 {
	text-transform: uppercase;
	color: var(--blue);
	font-family: var(--avenirBold);
}
body.single-whitepapers .single-post-type-cat-container .post-date {
    display: none;
}
.tweet-container {
    /*position: absolute;
    left: -65%;
    max-width: 50%;*/
    text-align: right;
    margin-bottom: 60px;
}
.tweet-container .tweet-title {
	color: var(--blue);
	line-height: 1;
}
.tweet-container .tweet-text {
	color: var(--dark);
	line-height: 1.3;
	font-weight: 600;
}
.tweet-container .tweet-quote {
	color: var(--blue);
	font-size: var(--midFontMax);
    font-weight: 700;
    line-height: 1.5;
}
.tweet-container .tweet-button {
	margin-top: 15px;
}
.tweet-container .tweet-button a {
    text-transform: uppercase;
    color: var(--darkOrange);
    padding-right: 28px;
    position: relative;
    text-decoration: none;
}
.tweet-container .tweet-button a:before {
    content: '';
    background: var(--darkOrange);
    height: 2px;
    width: 0;
    position: absolute;
    bottom: 0;
    transition: .4s ease;
}
.tweet-container .tweet-button a:hover:before {
    width: calc(100% - 28px);
}
.tweet-container .tweet-button a:after {
    content: '';
    background: url(../img/Icon-Arrow-Dark.svg) no-repeat;
    position: absolute;
    width: 16px;
    height: 18px;
    right: 0;
    top: 50%;
    transition: .4s ease;
    transform: translateY(-50%);
}
@media only screen and (min-width: 981px) {
    body.single-whitepapers .article-tools {
        justify-content: end;
    }
    .white-paper-content-row .side-column {
        display: flex;
        flex-direction: column;
        flex: 1;
    }
}