/* ステップバー：リストマージン */

.tfx-form__flow li {
    margin: 0 !important;
}

.tfx-form__flow-category {
    width: 100%;
}


/* ラジオボタン： */

div.np1-custom-radio {
    width: 100%;
}

.custom-radio .custom-control-label {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.np1-custom-radio input[type="radio"] {
    position: absolute;
    left: -9999px;
}

.np1-custom-radio label {
    cursor: pointer;
    display: flex !important;
    align-items: center;
    transition: 0.25s ease;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    width: 100%;
    margin-bottom: 16px;
    padding: 1em 3em 1em 1em;
    position: relative;
}

.np1-custom-radio label:hover {
    border-color: black;
}

.np1-custom-radio label::before {
    content: "";
    background-color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 0.375em;
    transition: 0.25s ease;
    border: 1px solid #ccc;
}

.np1-custom-radio label::after {
    content: "";
    background-color: #fff;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 0.375em;
    transition: 0.25s ease;
    position: absolute;
    margin-left: 5px;
}

.np1-custom-radio input[type="radio"]:checked+label {
    border-color: #b31d36;
}

.np1-custom-radio input[type="radio"]:checked+label:before {
    border-color: #b31d36;
    background-color: #fff;
}

.np1-custom-radio input[type="radio"]:checked+label:after {
    background: #b31d36;
}

.np1-custom-radio input[type="radio"]:checked+label:after {
    background: #b31d36;
}

/* ラジオボタン バリデーションエラー時 */
.np1-custom-radio input[type="radio"].error+label {
    background: #fff5f4;
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
}

/* クラウドストレージ容量 */

div.progress {
    background: #d8e5ed;
    margin-bottom: 30px;
    border-radius: 10px;
}

.progress-bar {
    background: #58778B;
    border-radius: 10px;
}


/* ロード画面 */

.is-hide {
    display: none;
}

.loading {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 1000;
}

.loading::before {
    content: "";
    display: block;
    position: fixed;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    margin-top: -15px;
    margin-left: -15px;
    background: white;
}

.loading::after {
    content: "";
    display: block;
    position: fixed;
    left: 50%;
    top: 50%;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    margin-top: -10px;
    margin-left: -10px;
    border: 4px solid #60ABB9;
    border-right: 4px solid white;
    animation: rotate 1s infinite linear;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ヘッダー：検索ボタン カーソル */
.tfx-search-input-icon {
    cursor: pointer;
}
