#buttonArea,
#themePopup {
    text-align: center;
    /*         background-color: rgba(255,200,100,0.5); */
    justify-content: center;
}

#buttonArea button {
    margin: 0 0.5em;
    display: inline-block;
    border-radius: 4px;
}

#editor,
#switchTable,
#logOutput,
#bmOutput {
    border-radius: 9px;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s, border-radius 0.3s;
    transition-property: border-radius, color, background-color, box-shadow;
    transition-duration: 0.3s;
}

#logOutput {
  font-size: 1.2em;
  padding: 1em;
  line-height: 1.7em;
}

.logHiding {
  display: none;
}

.logShowing {
  display: block;
}

#logOutput span {
  padding: 0.05em 0.4em 0.1em 0.4em;
  min-width: 1.5ch;
  font-size: 0.85em;
  font-weight: bold;
  border-radius: 2em;
}

#themePopup {
    border-radius: 9px;
    transition-property: border-radius, color, background-color, box-shadow;
    transition-duration: 0.3s;
    transition-delay: 0.6s;
}

#editor, #logOutput {
    height: calc(100vh - 95px);
    overflow-x: hidden;
}

#nameVersHolder {
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
}

#loadScreen {
    position: fixed;
    height: 100vh;
    width: 100vw;
    background-color: rgba(30,30,30, 0.6);
    z-index: 9999;
    text-align: center;
}

#themePopup {
    /*             display: inline-block; */
    position: absolute;
    top: 50%;
    left: 50%;
    pointer-events: inherit;
    transform: translate(-50%, -50%);
    transition: color 0.3s, background-color 0.3s;
    padding: 2em 3em;
    pointer-events: none;
}

#themePopup button {
    width: 15em;
}

.themeHidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s;
}

.themeShowing {
    opacity: 1;
    pointer-events: none;
    transition: opacity 0.3s;
}

.themeHidden_blur {
    transition: filter  0.5s;
    filter: blur(0);
}

.themeShowing_blur {
    transition: filter  0.3s;
    filter: blur(9px);
}

.themeShowing #themePopup, .themeShowing #cancelBg {
    pointer-events: auto;
}

#cancelBg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
/*     backdrop-filter: blur(3px); */
/*     background-color: rgba(0,255,0,0.5); */
}




#pasteJsIcon {
    margin-right: 1em;
}

.ace_gutter {
    transition: background-color 0.3s, color 0.3s;
    transition-property: color, background-color;
    transition-duration: 0.3s;
}

*:focus {
    outline: none;
}

.mdl-list__item-primary-content {
    transition: opacity 0.3s;
}

.disLabled {
    opacity: 0.3
}

#pasteJsNav {
    margin-left: 0.5em;
    margin-right: 0.5em;
}

#plusVersionButton {
    margin-bottom: 0.5em;
}

#bmLink {
    font-size: 1.3em;
    padding-right: 1em;
}

#error {
    font-size: 1.5em;
    padding-bottom: 0.2em;
}

.errorShow {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.15s;
}

.errorHide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s;
}

#bmOutput-grid {
    margin: 1em 0;
}

#bmOutputWrapper {
    box-sizing: border-box;
    border-radius: 9px;
    text-align: center;
    font-family: "Roboto Mono", monospace;
    transition-poperty: width, max-height, opacity;
    transition-duration: 0.5s;
    transition-timing-function: ease-in-out;
    overflow-y:hidden;
}

#bmOutput {
    box-sizing: border-box;
    max-height: calc(100vh - 95px);
    padding: 2em;
    overflow-y: scroll;
    word-wrap: break-word;
}

.bmHidden {
    max-height: 1px;
    opacity: 0;
    pointer-events: none;
}

.bmShowing {
    max-height: calc(100vh - 95px);
    opacity: 1;
    pointer-events: auto;
}

#showBmButton {
    width: 7em;
}