/* fallback */
@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url(_material-icons.woff2) format('woff2');
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    font-feature-settings: 'liga';
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

.terminal-container {
    position: fixed;
    width: 100%;
    background: #000a;
    height: 50vh;
    backdrop-filter: blur(5px);
    z-index: 9;
    transition: all .3s;
    bottom: -50vh;
    font-family: 'Roboto';
}

.terminal-container-visible {
    bottom: 0;
}

.terminal-output {
    width: 100%;
    height: calc(100% - 53px);
    color: #fff;
    padding: 5px 10px;
    box-sizing: border-box;
    overflow: auto;
    border-top: 1px solid #000;
}

button.terminal-config-file-btn {
    border: 0;
    height: 17px;
    margin-right: 1px;
    margin-top: 6px;
}

input.terminal-input {
    width: 100%;
    background: #fff2;
    outline: 0;
    border: none;
    color: #fff;
    padding: 10px;
}

.terminal-button {
    width: 200px;
    height: 25px;
    position: fixed;
    top: -25px;
    right: 40px;
    display: flex;
    background: #000a;
    color: #fff;
    justify-content: center;
    align-items: center;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
}

.terminal-button>* {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.terminal-button>div {
    justify-content: start;
}

.terminal-inputs-container {
    display: flex;
    padding-right: 30px;
}

button.terminal-input-send,
button.terminal-input-clear {
    background: #f27;
    color: #fff;
    padding: 0 15px;
    border: none;
}

button.terminal-input-send {
    background: #2b7;
}



.terminal-message {
    padding: 0 0 0 10px;
}

.terminal-message.terminal-input-message {
    color: #0f0;
    font-weight: bold;
    padding: 0;
}
.terminal-message.terminal-message-end {
    color: #f30;
    margin-left: -10px;
}

.terminal-message.terminal-message-start {
    color: #2b7;
    margin-left: -10px;
}

.terminal-message>span.terminal-message-key {
    color: #fff9;
}

.terminal-message>span.terminal-message-value-on {
    color: #2b7;
}

.terminal-message>span.terminal-message-value-off {
    color: #f30;
}
.terminal-message>span.terminal-message-value-string,
.terminal-message>span.terminal-message-value-file {
    color: #b94;
}
.terminal-message>span.terminal-message-value-setting {
    color: #ccc;
}

.terminal-suggestions {
    display: flex;
    min-height: 17px;
}
.terminal-suggestion {
    font-size: 10px;
    padding: 3px;
    margin-top: -18px;
    background: #fff;
    margin: 0 1px;
    height: 11px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2px;
}

.terminal-suggestion.terminal-suggestion-active {
    color: #fff;
    background: #66b8f9;
}

.terminal-legend {
    position: absolute;
    display: flex;
    justify-content: end;
    width: 100%;
    color: #fff;
    margin-top: -7px;
    height: 30px;
    font-size: 13px;
}

.legend-item {
    height: 100%;
    display: flex;
    align-items: center;
    margin-right: 40px;

}

.terminal-suggestion-explanation {
    display: none;
    position: absolute;
    margin-top: -50px;
    height: 20px;
    left: 0;
    background: #000a;
    align-items: center;
    width: 100%;
    padding: 5px;
    backdrop-filter: blur(1px);
}

.terminal-suggestion.terminal-suggestion-active>.terminal-suggestion-explanation {
    display: flex;
}

.terminal-suggestion-explanation-param {
    padding: 0 10px;
    height: 100%;
    display: flex;
    align-items: center;
    background: #2b79;
    margin: 0 2px;
    border-radius: 2px;
}

.terminal-suggestion-explanation-param>b {
    text-decoration: underline;
}
.terminal-message-start-container {
    padding: 0 10px;
}

[data-title]:before {
    width: 0;
    height: 0;
    content: "";
    position: absolute;
    pointer-events: none;
    transition: all .3s;
    z-index: 999;
    font-size: 11px;
    border-left: 10px solid transparent;
    border-bottom: 0 solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--blue);
    -webkit-transform: translateX(10px) translateY(-16px);
    transform: translateX(10px) translateY(-16px);
    opacity: 0;
    left: -100%;
    right: -100%;
    margin: auto;
}

[data-title]:hover:before {
    opacity: 1;
    -webkit-transform: translateX(10px) translateY(-6px);
    transform: translateX(10px) translateY(-6px);
}

[data-title]:after {
    width: -webkit-fit-content;
    width: fit-content;
    max-width: 300px;
    height: auto;
    background: #27d;
    content: attr(data-title);
    position: absolute;
    right: 0;
    margin: auto;
    border-radius: 3px;
    transition: all .3s;
    opacity: 0;
    pointer-events: none;
    padding: 5px;
    z-index: 999;
    font-size: 11px;
    -webkit-transform: translateY(calc(-100% - 15px));
    transform: translateY(calc(-100% - 15px));
    font-weight: 700;
    color: #fff;
    text-align: center;
}

[data-title]:hover:after {
    opacity: 1;
    -webkit-transform: translateY(calc(-100% - 5px));
    transform: translateY(calc(-100% - 5px));
}