.CodeMirror {
    line-height: 1.2em !important;
    background-color: transparent !important;
}

.CodeMirror-linewidget {
    overflow: visible !important;
}

.CodeMirror-gutter-performance {
    width: 74px;
    background-color: white;
    margin-left: 3px;
}

.CodeMirror .source-frame-eval-expression {
    outline: 0;
    border: 1px solid rgb(163, 41, 34);
    border-left-width: 0;
    border-right-width: 0;
    background-color: rgb(255, 255, 194);
}

.CodeMirror .source-frame-eval-expression-end {
    border-right-width: 1px;
    margin-right: -1px;
}

.CodeMirror .source-frame-eval-expression-start {
    border-left-width: 1px;
    margin-left: -1px;
}

.CodeMirror-readonly .CodeMirror-cursor {
    display: none;
}

.CodeMirror .CodeMirror-gutters {
    border-right: 1px solid rgb(187, 187, 187);
    background-color: #eee;
}

.CodeMirror .CodeMirror-linenumber {
    color: rgb(128, 128, 128);
}

.CodeMirror-linenumber {
    min-width: 22px !important;
}

.cm-highlight {
    -webkit-animation: fadeout 2s 0s;
}
.-theme-with-dark-background .cm-highlight {
    -webkit-animation: fadeout-dark 2s 0s;
}
@-webkit-keyframes fadeout {
    from {background-color: rgb(255, 255, 120); }
    to { background-color: white; }
}
@-webkit-keyframes fadeout-dark {
    from {background-color: hsla(133, 100%, 30%, 0.5); }
    to { background-color: transparent; }
}

.cm-highlight.cm-execution-line {
    -webkit-animation: fadeout-execution-line 1s 0s;
}
@-webkit-keyframes fadeout-execution-line {
    from {background-color: rgb(121, 141, 254); }
    to { background-color: rgb(171, 191, 254); }
}

.cm-breakpoint .CodeMirror-linenumber {
    color: white;
    border-width: 1px 4px 1px 1px !important;
    -webkit-border-image: url(Images/breakpoint.png) 1 4 1 1;
    margin: 0 0 0 3px !important;
    padding-right: 3px;
    padding-left: 1px;
    height: 11px;
    line-height: 12px !important;
    border-style: solid;
}

.cm-line-without-source-mapping {
    background-color: #fafafa;
}

.cm-breakpoint.cm-breakpoint-conditional .CodeMirror-linenumber {
    -webkit-border-image: url(Images/breakpointConditional.png) 1 4 1 1;
}

@media (-webkit-min-device-pixel-ratio: 1.5) {
.cm-breakpoint .CodeMirror-linenumber {
    -webkit-border-image: url(Images/breakpoint_2x.png) 2 8 2 2;
}
.cm-breakpoint.cm-breakpoint-conditional .CodeMirror-linenumber {
    -webkit-border-image: url(Images/breakpointConditional_2x.png) 2 8 2 2;
}
} /* media */

.cm-breakpoint-disabled .CodeMirror-linenumber {
    opacity: 0.5;
}

.breakpoints-deactivated .cm-breakpoint .CodeMirror-linenumber {
    opacity: 0.5;
}

.breakpoints-deactivated .cm-breakpoint-disabled .CodeMirror-linenumber {
    opacity: 0.3;
}

.CodeMirror-matchingbracket {
    border-bottom: 1px solid black;
    color: #222 !important;
}

.CodeMirror-nonmatchingbracket {
    color: #222 !important;
}

.cm-whitespace::before {
    position: absolute;
    pointer-events: none;
    color: rgb(175, 175, 175);
}

.cm-tab {
    position: relative;
}

.cm-tab:before {
    display: none;
    content: ".";
    color: transparent;
    border-bottom: 1px solid rgb(175, 175, 175);
    position: absolute;
    width: 90%;
    bottom: 50%;
    left: 5%;
}

.show-whitespaces .CodeMirror .cm-tab:before {
    display: block !important;
}

.cm-execution-line,
.-theme-selection-color {
    background-color: rgb(230, 236, 255);
    outline: 1px solid rgb(64, 115, 244);
}

.cm-execution-line-tail,
.-theme-selection-color {
    background-color: rgb(171, 191, 254);
}

.cm-execution-line .CodeMirror-linenumber,
.-theme-selection-color {
    border-right: 1px solid rgb(64, 115, 244);
}

.cm-token-highlight {
    position: relative;
}

.cm-token-highlight:before {
    position: absolute;
    border: 1px solid gray;
    border-radius: 3px;
    top: 0;
    bottom: -1px;
    left: 0;
    right: 0;
    content: "";
}

.cm-line-with-selection .cm-column-with-selection:before {
    border: none;
}

.cm-search-highlight {
    position: relative;
}

.cm-search-highlight:before {
    position: absolute;
    border-top-style: solid;
    border-bottom-style: solid;
    border-top-color: gray;
    border-bottom-color: gray;
    border-top-width: 1px;
    border-bottom-width: 1px;
    top: -1px;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
}

.cm-search-highlight-full:before {
    border: 1px solid gray;
    border-radius: 3px;
}

.cm-search-highlight-start:before {
    border-left-width: 1px;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
    border-left-style: solid;
    border-left-color: gray;
}

.cm-search-highlight-end:before {
    border-right-width: 1px;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
    border-right-style: solid;
    border-right-color: gray;
}

.cm-line-with-selection .cm-column-with-selection.cm-search-highlight-full:before {
    border-radius: 1px;
}

.cm-line-with-selection .cm-column-with-selection.cm-search-highlight-start:before {
    border-top-left-radius: 1px;
    border-bottom-left-radius: 1px;
}

.cm-line-with-selection .cm-column-with-selection.cm-search-highlight-end:before {
    border-top-right-radius: 1px;
    border-bottom-right-radius: 1px;
}

.cm-line-with-selection .cm-column-with-selection.cm-search-highlight:before {
    margin: -1px -1px -1px -1px;
    background-color: rgb(241, 234, 0);
    z-index: -1;
}

.-theme-with-dark-background .cm-line-with-selection .cm-column-with-selection.cm-search-highlight:before {
    background-color: hsl(133, 100%, 30%);
}

.-theme-with-dark-background .cm-line-with-selection .cm-search-highlight {
    color: #eee;
}

.CodeMirror .text-editor-line-marker-performance {
    text-align: right;
    padding-right: 3px;
}

.CodeMirror .text-editor-line-decoration {
    position: absolute;
}

.CodeMirror .text-editor-line-decoration-wave {
    position: absolute;
    top: -2px;
    cursor: pointer;
    height: 4px;
}

.CodeMirror .text-editor-value-decoration {
    position: absolute;
    bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 1000px;
    opacity: 0.8;
    background-color: #FFE3C7;
    margin-left: 10px;
    padding-left: 5px;
    color: #222;
    -webkit-user-select: text;
}

.CodeMirror .cm-execution-line .text-editor-value-decoration {
    background-color: transparent;
    opacity: 0.5;
}

.text-editor-messages-description-container {
    display: inline-block;
}

.text-editor-row-message:first-child {
    border-top-width: 0;
}

.text-editor-row-message {
    border-top: 1px solid rgb(215, 215, 215);
    line-height: 1.2;
    white-space: nowrap;
    display: flex;
}

.text-editor-row-message .bubble-repeat-count {
    margin-right: 1ex;
    margin-top: -1px;
}

.CodeMirror .text-editor-line-decoration-icon {
    position: absolute;
    cursor: pointer;
    right: -16px;
    top: -9px;
}

.CodeMirror .text-editor-line-with-warning:not(.cm-execution-line) {
    background-color: rgba(241, 230, 0, 0.1);
}

.CodeMirror .text-editor-line-with-error:not(.cm-execution-line) {
    background-color: rgba(255, 0, 0, 0.05);
}

.CodeMirror .text-editor-line-decoration-wave {
    background-image: url(Images/errorWave.png);
    background-repeat: repeat-x;
    background-size: contain;
}

@media (-webkit-min-device-pixel-ratio: 1.5) {
.CodeMirror .text-editor-line-decoration-wave {
    background-image: url(Images/errorWave_2x.png);
}
} /* media */

/** @see crbug.com/358161 */
.CodeMirror .CodeMirror-vscrollbar, .CodeMirror .CodeMirror-hscrollbar {
    transform: translateZ(0);
}

.CodeMirror .CodeMirror-activeline-background {
    background-color: transparent;
}

.cm-trailing-whitespace {
    background-color: rgba(255, 0, 0, 0.05);
}

.CodeMirror-activeline .cm-trailing-whitespace {
    background-color: transparent;
}

.-theme-with-dark-background .CodeMirror .CodeMirror-selected {
    background-color: #454545;
}
