.code-box {
    filter: drop-shadow(0px 0px 29.482587814331055px rgba(0, 0, 0, 0.10));
    border-radius: 15.974px;
    overflow: hidden;
    position: relative;
    margin-top: 30px;
}

.code-box-head {
    background: var(--primary-red);
    padding: 14px 27px 17px;
    height: 41px;  
}

.code-box__ellipse > *{
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: var(--white);
    display: inline-block;
}

.code-box__ellipse>*:nth-child(2){
    margin: 0 5px;
}

.code-box__copy{
    width: 12px;
    height: 14px;
}

.code-box__btn{
    width: 12px;
    height: 14px;
    opacity: 1;
    right: 27px;
    top: 14px;
    background: transparent;
    border: none;
    position: absolute;
    z-index: 9;
}

.code-box__btn:before {
    display: inline-block;
    content: " ";
    vertical-align: middle;
    width: 12px;
    height: 14px;
    background: url(../../../images/decorative-items/Copy-Icon.png) no-repeat center center/contain;
}

.code-box__btn:hover {
    cursor: pointer;
    color: #333;
}

.copy-success .code-box__btn:before{
    background: url(../../../images/decorative-items/Copy-Success.png) no-repeat center center/contain;
    width: 16px;
    height: 12px;
}

.code-box__tooltip {
    display: none;
    font-size: 0;
}

pre[class*="language-"] {
    margin: 0;
    padding: var(--spacing-04) var(--spacing-04) var(--spacing-04) var(--spacing-05);
    background: var(--white);
}

code[class*="language-"],
pre[class*="language-"] {
    color: rgba(0, 0, 0, 0.55);
    text-shadow: none;
    font-family: 'Roboto Mono', monospace;
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
}

code[class*="language-"] span,
pre[class*="language-"] span{
    font-family: 'Roboto Mono', monospace;

}

.token.selector, 
.token.attr-name, 
.token.string, 
.token.char, 
.token.builtin, 
.token.inserted{
    color: rgba(0, 0, 0, 0.55);
}
.token.keyword {
    color: var(--dark-red);
    font-weight: 500;
}

.token.atrule, .token.attr-value, .token.function,
.token.boolean,
.token.number {
    color: #ab6600
    
}

.token.operator, .token.entity, .token.url, .language-css .token.string, .style .token.string, .token.variable,.token.punctuation {
    color: var(--black);
}