.menu-button {
    position: absolute; bottom: 20px; right: 80px; width: 50px; height: 50px; 
    border-radius: 25px; cursor: pointer;
    background: rgba(0,0,255,0.7); 
}
.menu-button.open-drawer {
    background: rgba(0,0,255,1);
}
.tomato {
    display: flex; 
    background-color: rgba(255, 0, 0, 0.5);
    color: #fff;
}
.tomato.open-drawer {
    display: none;
}
.tomato.time-out {
    animation: shake-tomato 0.5s;
    animation-iteration-count: infinite;
}
.tomato.halt {
    background-color: rgba(255, 255, 0, 0.5);
    color: #f00;
    font-weight: bold;
    animation: blink-tomato 1s;
    animation-iteration-count: infinite;
}
.drawer, .quick-tools {
    display: none;
}
.drawer .drawer-item {
    justify-content: flex-end;
    transition-duration: 300ms;
}
.drawer .drawer-item:hover {
    scale: 120%;
    transform-origin: right;
}
.menu-button:hover .drawer, .open-drawer .drawer, .open-quick-tools .quick-tools {
    display: inherit;
}
.search-mode {
    cursor: pointer;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    padding: 2px;
    box-sizing: border-box;
    border: solid 1px #999;
    opacity: 0.5;
    margin-right: 5px;
}
.search-mode.on {
    background: #b5fcff;
    border-color: #b5fcff;
    opacity: 1;    
}
.sort-input-toggle {
    color: green;
}
.sort-input-toggle:hover {
    opacity: 0.7;
}
.current-value {
    color: #11c711;
    font-size: 0.85em;
    float: right;
}
.sort-input-form .field.actions > button {
    margin-bottom: 6px;
}
.sort-input-form .field.actions {
    display: flex;
    flex-direction: column;
}
.sort-input-form .field + .field {
    margin-top: 20px;
}
.sort-input-form .input-line > input[type="text"] {
    width: 100%;
    box-sizing: border-box;
}
.sort-input-form .label-line {
    margin-bottom: 10px;
}
.sort-input-form .field-label {
    font-weight: bold;
}
.sort-input-form input[type=radio]:checked + label {
    background: #00ffde;  
}
.sort-input-form .form-header {
    font-size: 1.4em;
    font-family: fantasy;
    /*text-transform: uppercase;*/
    /*font-weight: bold;*/
    color: blue;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}
.autotext-options > div {
    border-bottom: 1px solid grey;
    padding: 5px;
    color: blue;
    cursor: pointer;
}

.autotext-options > div:hover {
    background: yellow;
}

@keyframes shake-tomato {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}
@keyframes blink-tomato {
  0% {transform: scale(1);}
  50% {transform: scale(1.2);}
  0% {transform: scale(1);}
}
@media only screen and (max-width: 960px) {
    body {
        /*background-color: lightblue;*/
    }
}
@media only screen and (max-width: 480px) {
    .search-scope-label {
        display: none;
    }
    .search-scope-btn .v-btn__prepend {
        margin-inline-end: 0;
    }
}