/**
 * myCommon.css
 * Copyright (C) 2018 J.Kawahara
 * 2018.11.6 J.Kawahara
 */
#header {
    margin-bottom: 10px;
    border-bottom: 4px solid #e00000;
}
h1 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #777;
    text-align: center;
}
h2 {
    padding: 12px;
    border-top: 1px solid #777;
    border-bottom: 1px solid #777;
    font-size: 1.1em;
    font-weight: bold;
    color: #777;
    text-align: center;
}
.errorMessage {
    font-weight: bold;
    font-size: x-small;
    color: #c00000;
    margin: 4px 0 0 30%;
}
.top-area {
    padding: 0;
    border: 1px solid #ccc;
    border-radius: 0.5em;
    margin-bottom: 12px;
}
.criteria-header {
    cursor: pointer;
    border-bottom: 1px solid #ccc;
    padding: 8px;
}
.criteria-panel {
    padding: 8px;
}
.expand-enter-active,
.expand-leave-active {
    transition: max-height 0.2s, opacity 0.5s;
}
.expand-enter,
.expand-leave-to {
    max-height: 0;
    opacity: 0;
}
.expand-enter-to,
.expand-leave {
    max-height: 300px;
    opacity: 1;
}