/** Subject score iframe content **/
body.subjectscore .container {
    margin-top: 120px;
}

body.subjectscore .container .report-title::before {
    display: none;
}

/** Neccessary css for the subject line score preview **/
.bubble {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai_content_toolbar .row.vertical-align {
    display: flex;
}

.ai_content_toolbar .progress {
    margin-top: 5px;
    margin-bottom: 5px;
    height: 10px !important;
    border-radius: 20px;
}

.progress.green .progress-bar {
    background-color: #52b430;
}

.progress.orange .progress-bar {
    background-color: #f4be18;
}

.progress.red .progress-bar {
    background-color: #e13d3d;
}

.ai_content_toolbar .points {
    font-size: 30px;
    font-weight: 600;
}

.ai_content_toolbar .report-grade p {
    font-size: 18px;
}

.ai_content_toolbar h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
}

.bubble-wrapper {
    position: relative;
}

.ai_content_toolbar .bubble {
    border-radius: 100%;
    border-width: 15px;
    border-style: solid;
    font-weight: 800;
    text-align: center;
    margin: 0 auto;
    vertical-align: middle;
    margin-bottom: 20px;
}

.ai_content_toolbar .bubble.large {
    font-size: 50px;
    width: 100px;
    height: 100px;
    line-height: 75px;
    border-width: 8px;
}

.ai_content_toolbar .bubble.green {
    border-color: #52b430;
    box-shadow: inset 0 0 0 8px #c0fcc0;
    color: #52b430;
}

.ai_content_toolbar .bubble.red {
    border-color: #e13d3d;
    box-shadow: inset 0 0 0 8px #fcc0c0;
    color: #e13d3d;
}

.ai_content_toolbar .bubble.orange {
    border-color: #f4be18;
    box-shadow: inset 0 0 0 8px #f9edc8;
    color: #f4be18;
}

.ai_content_toolbar .bubble.grey {
    border-color: #aaaaaa;
    box-shadow: inset 0 0 0 8px #dfdfdf;
    color: #aaa;
}

@media (min-width: 768px) {
    .ai_content_toolbar .bubble {
        margin: 0;
        float: left;
    }

    .vertical-align {
        display: flex;
        align-items: center;
    }
}

@media (min-width: 992px) {
    .ai_content_toolbar {
        flex-direction: column-reverse;
    }
}