/* アプリ共通のスタイルの上書き */

body {
    font-size: 14px;
}

.hide {
    display: none;
}

.table > tbody > tr > td.vertical-middle,
.table > tbody > tr > th.vertical-middle {
    vertical-align: middle;
}

/* 必須ラベル */
.must-label:after {
    background: #FF1A00;
    color: #FFF;
    border-radius: 5px;
    font-size: 0.7em;
    margin-left: 10px;
    padding: 3px 7px;
    letter-spacing: 0.1em;
    content: "必須";
    white-space: nowrap;
}

/* ロゴイメージ */
img.logo {
    width: 420px;
    height: 43px;
}

/*
読み込み処理のロードイメージ
共通処理化してもよいが後ほど
*/
#overlay {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0, 0, 0, 0.6);
}

.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(359deg);
    }
}

.is-hide {
    display: none;
}

.logo {
    margin: 4px;
}

.makeshop-items {
    border: 1px solid #e7eaec;
    padding: 13px 10px 5px;
    max-height: 200px;
    overflow: auto;
}

.makeshop-item-detail {
    background: #39a771;
    color: #FFF;
    font-weight: bold;
    border-radius: 6px;
    margin: 5px 5px 2px 0;
}

.makeshop-item-name {
    padding: 0px 10px;
}

.makeshop-item-delete {
    border: 1px solid transparent;
    background-color: transparent;
    color: #FFF;
    border-left: 1px solid #FFF;
    cursor: pointer;
}

.makeshop-item-search {
    background-color: #e5e6e7;
    border-radius: unset;
}

.coupon-item-detail {
    background: #39a771;
    color: #FFF;
    font-weight: bold;
    border-radius: 6px;
    margin: 5px 5px 2px 0;
}

.coupon-item-name {
    padding: 0px 10px;
}

.coupon-item-delete {
    border: 1px solid transparent;
    background-color: transparent;
    color: #FFF;
    border-left: 1px solid #FFF;
    cursor: pointer;
}

.coupon-search-button {
    background-color: #e5e6e7;
    border-radius: unset;
}

.p_top15 {
    padding-top: 15px;
}

.p_bottom15 {
    padding-bottom: 15px;
}

.radio-form-label {
    margin: auto;
}

.margin-top-bottom-auto {
    margin: auto 0;
}

.button-radio input[type="radio"] {
    display: none;
}

.button-radio label {
    width: 100%;
    text-align: center;
    color: #97a0a7;
    padding: .375rem .75rem;
}

.button-radio input[type="radio"]:checked + label {
    background-color: #7b7b7b;
    color: #FFF;
}

.error-message-li:nth-child(n+2) {
    padding-top: 10px;
}
