/* Nestdetail Navigation */
div.element.newsdetails .navigation--single {
    display: inline-block;
    width: 100%;
    margin: 10px 0;
    font-size: 14px;
}

div.element.newsdetails .navigation--prev {
    float: left;
    width: 40%;
}

div.element.newsdetails .navigation--prev a {
    padding-left: 40px;
    display: inline-block;
    font-weight: 600;
    line-height: 30px;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}

div.element.newsdetails .navigation--prev a:before {
    font-family: "FontAwesome";
    content: "\f053";
    width: 30px;
    height: 30px;
    position: absolute;
    text-align: center;
    line-height: 30px;
    left: 0;
    background-color: #6c6c6c;
    color: white;
    pointer-events: none;
}

div.element.newsdetails .navigation--next {
    float: right;
    width: 40%;
}

div.element.newsdetails .navigation--next a{
    padding-right: 40px;
    display: inline-block;
    font-weight: 600;
    line-height: 30px;
    text-align: right;
    width: calc(100% - 40px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}
div.element.newsdetails .navigation--next div {
    width: 100%;
}

div.element.newsdetails .navigation--next a:before {
    font-family: "FontAwesome";
    content: "\f054";
    text-align: center;
    line-height: 30px;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 0;
    background-color: #6c6c6c;
    color: white;
    pointer-events: none;
}