/** ============================== AUTHOR BOX ============================== **/

.article-meta {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 10px;
    margin: 20px 0;
}

.article-meta .profile-pic {
    margin-right: 15px;
}

.article-meta .profile-pic .avatar,
.article-meta .profile-pic .avatar-small {
    border-radius: 50%;
    height: auto;
    width: 100px;
}

.article-meta .editorial-team {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
}

.article-meta .editorial-team .author,
.article-meta .editorial-team .editor,
.article-meta .editorial-team .medical-reviewer {
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.article-meta .editorial-team .arrow-left {
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #1ea79a;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    left: -12px;
    top: 0.2em;
}

.article-meta .editorial-team span {
    margin-right: 5px;
}

/*** Pop-up ***/

.article-meta .ars-info-modal {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
    z-index: 9998;
}

.article-meta .ars-info-modal:target {
    visibility: visible;
    opacity: 1;
}

.article-meta .ars-popup {
    margin: 100px auto;
    padding: 20px;
    background: #fff;
    border-radius: 2px;
    width: 30%;
    height: 25%;
    position: relative;
    transition: all 3s ease-in-out;
    z-index: 9999;
}

@media only screen and (max-width: 620px) {
    .article-meta .ars-popup {
        width: 100%;
        height: 35%;
    }
}

.article-meta .ars-popup .ars-close {
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
}

.article-meta .ars-popup .ars-close:hover {
    color: inherit;
}

.article-meta .ars-popup .ars-modal-content {
    overflow: auto;
    padding: 10px;
}