/* CSS styles for the tool */
.cField {
    width: 100%;
}
.cite-box {
    background: #f8f8f8;
    border-radius: 12px;
    border: 1px solid #eee;
    padding: 10px 15px 0;
    position: relative;
}
.lead {
    margin-top: 20px;
    margin-bottom: 0px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;
}
@media (min-width: 768px) {
    .lead {
        font-size: 21px;
    }
}
.copyAllText {
    cursor: pointer;
    float: right;
    cursor: pointer;
}
.copyAllText::before {
    width: 75px;
    height: 28px;
    z-index: 99;
    position: absolute;
    background: #3c5057;
    right: -24px;
    font-weight: 500;
    content: attr(data-title);
    top: -39px;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    font-size: 12px;
    padding-top: 2px;
    display: none;
}
.copyAllText::after {
    width: 0;
    height: 0;
    position: absolute;
    right: 10px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-top: 5px solid #3c5057;
    top: -11px;
    display: none;
    content: "";
}
.copyAllText:hover::before,
.copyAllText:hover::after {
    display: block;
}
.copyAllText i {
    padding: 5px;
    border-radius: 50%;
    opacity: 0.8;
    margin-left: 3px;
    color: #32cd32;
}
span.itxt {
    font-size: 12px;
    font-weight: normal;
    color: #9ab1bd;
    vertical-align: middle;
}
span.itxt:hover .copyAllText i {
    opacity: 1;
}
.cite-box p {
    margin-right: 50px;
}
