@import url('https://fonts.googleapis.com/css?family=Roboto:200,400,500,600,700');

.container-body {
    font-family: "Roboto", BlinkMacSystemFont, -apple-system, "Segoe UI", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Arial", sans-serif;
    background-color: #fafafa;
    width: 100vw;
    height: 100vh;
    margin: 0;
}

.container-main {
    position: relative;
    width: auto;
    overflow: hidden;
    height: 100%;
    background-color: #fafafa;
}

.container-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 16px;
    height: calc(100% - 32px);
}

a:active,
a:hover,
a:link,
a:visited {
    text-decoration: none
}

.tab-text-view {
    visibility: visible;
    border: 1px solid #3883fa;
    position: relative;
    margin-top: 5px;
    flex-basis: 100%;
    height: 100%;
    min-height: 30%;
    overflow: hidden;
}

.title-view {
    position: relative;
    width: auto;
    height: 35px;
    background-color: #3883fa;
    align-items: center;
    display: flex;
}


.text-view-control-left {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.text-view-control-right {
    flex-shrink: 2;
    display: flex;
    align-items: center;
    margin-right: 8px;
}

.control-text {
    color: #fff;
    margin-right: 3px;
    margin-left: 5px;
    font-size: 12px;
}

.button {
    width: 32px;
    height: 32px;
    color: #fff;
    opacity: 0.7;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: opacity 150ms linear;
}

.button:hover,
.button.active {
    opacity: 1;
}

.cm-editor {
    width: 100%;
    height: 100%;
    border: 0px solid #3883fa;
    background-color: #fafafa;
    color: #1a1a1a;
    font-size: 12px;
}

.cm-content.wrap {
    white-space: pre-wrap !important;
    flex-direction: column;
    flex-shrink: 3;
    word-break: break-word;
}

.xml-text:active,
.xml-text:focus {
    outline: none;
}

.text-wrapper {
    height: calc(100% - 34px);
    align-items: center;
}

.tooltip {
    position: absolute;
    visibility: hidden;
    font-size: 12px;
    font-weight: 500;
    z-index: 1000;
    opacity: 0;
    transition: opacity 250ms ease-out;
}
  
@media (hover:none) {
    .tooltip {
      transition-delay: 200ms;
    }
}
  
.tooltip-text {
    background-color: #2228;
    border-radius: 0.25em;
    color: #fff;
    cursor: auto;
    display: inline-flex;
    flex: none;
    justify-content: center;
    margin-top: 0.7em;
    backdrop-filter: blur(2px);
    padding: 0.5em;
    place-self: flex-end;
    position: relative;
}
  
.tooltip-text::after {
    border: solid transparent;
    border-width: 0 0.5em 0.5em;
    border-bottom-color: #2228;
    backdrop-filter: blur(2px);
    content: "";
    position: absolute;
    width: 0.1em;
    height: 0;
    top: 0;
    transform: translateY(-100%);
    transform-origin: left;
}

hr {
    border-width: 0;
    border-left: 1px solid #fff9;
    height: 25px;
    width: 0;
    margin: 0 5px;
    color: transparent;
}