.height-auto {
    height: auto !important;
}
.el-loading-container {
    margin: 0px;
    display: none;
    padding: 0px;
    position: fixed;
    right: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255);
    z-index: 30001;
    opacity: 0.8;
}
.el-loading-mask{
    /* display: none; */
    position: absolute;
    z-index: 2000;
    background-color: hsla(0,0%,100%,.9);
    margin: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: opacity .3s;
}
.el-loading-spinner{
    top: 50%;
    margin-top: -21px;
    width: 100%;
    text-align: center;
    position: absolute;
}
.el-loading-spinner img{
    height: 42px;
    width: 42px;
}

.swal-modal {
    white-space: nowrap !important;
    width: auto !important;
}

.title-row {
    display: flex;
    justify-content: space-between;
}

.collapse-button {
    border-radius: 25px;
    background: #E9E9E9;
    height: 2em;
    font-weight: bold;
    color: #00a652;
    font-size: 1.3rem;
    padding: 0.2em 1em;
    display: flex;
    align-items: center;
    content: '';
    margin-bottom: 0.5em;
    white-space: nowrap;
}

.collapse-button.close:after {
    content: "開く";
}

.collapse-button.open:after {
    content: "閉じる";
}

@media only screen and (min-width: 520px) {

    .collapse-button {
        display: none !important;
    }
}

