/* 
===========================================
基本設定 - フォント、リセット、ルート変数
===========================================
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

/* ルート変数 */
:root {
    /* カラー設定 */
    --primary-color: #1976D2;
    --primary-light: #BBDEFB;
    --primary-dark: #1565C0;
    --secondary-color: #FFC107;
    --accent-color: #5CC0E4;

    /* テキストカラー */
    --text-color: #333;
    --text-color-light: #6A6A6A;
    --text-color-dark: #000;
    --text-color-inverse: #fff;

    /* 背景色 */
    --background-color: #EDF3F6;
    --surface-color: #FFFFFF;

    /* ステータスカラー */
    --success-color: #388E3C;
    --error-color: #D32F2F;
    --warning-color: #FFC107;

    /* 境界線 */
    --form-border: #959595;
    --separator-color: #cccccc;

    /* ボタングラデーション */
    --btn-submit: linear-gradient(90deg, #FE522E 0%, #F09819 100%);
    --btn-next: linear-gradient(90deg, #4CB8C4 0%, #3CD3AD 100%);

    /* ステップカラー */
    --step-active: #FFCC33;
    --step-inactive: #D4D4D4;
    --highlight-color: #2BC0E4;
}

/* リセットとベーススタイル */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    background-color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0;
}

/* 申込フォーム用 - メインエリア */
.main {
    border: solid #D4D4D4;
    border-radius: 20px;
    padding: 15px;
    margin-bottom: 20%;
    max-width: 360px;
}

.main img {
    max-width: 200px;
    margin: 10px;
}

.main p {
    margin: 20px 0;
    font-weight: 600;
    letter-spacing: 3px;
}

/* 基本要素のリセット */
h1,
h2,
h3,
h4,
p {
    margin: 0;
    padding: 0;
}

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
}

input,
button,
textarea,
select {
    font: inherit;
}

/* 
===========================================
ヘッダーとナビゲーション
===========================================
*/
/* header {
    width: 100%;
    max-width: 480px;
    background-color: #5D5D5D;
    margin: 0 auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header__container {
    width: 100%;
    margin: 0 auto;
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logos {
    display: flex;
    gap: 0.5em;
    align-items: center;
}

.logos img {
    height: 30px;
} */


header {
    width: 100%;
    background-color: #231815;
    padding: 1rem 0;
    max-width: 480px;
}


header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 92%;
    margin: auto;
}

header img {
    vertical-align: bottom;
    width: 200px;
    aspect-ratio: auto 200 / 20;
    height: 20px;
}
header img, header picture {
    max-width: 100%;
    display: block;
}

/* 
===========================================
装飾要素 - 区切り線など
===========================================
*/
/* グラデーション区切り線 */
.hr1 {
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #2BC0E4, #EAECC6);
    border: none;
    margin: 0;
}

.hr2 {
    color: #ddd;
    border: none;
    border-top: 1px solid #ddd;
    margin: 10px 0;
}

.hr3 {
    margin: 40px 0;
    border: none;
    border-top: 1px solid #ddd;
}

.hr4 {
    width: 30%;
    height: 4px;
    background: #CCCCCC;
    border: none;
    margin: 15% auto 0;
}

/* 
===========================================
コンテンツエリア
===========================================
*/
.contents {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.top {
    max-width: 320px;
    margin-bottom: 20px;
}

.text {
    padding: 30px 0;
    line-height: 1.8;
}

/* 
===========================================
ステップインジケーター
===========================================
*/
.step {
    padding: 20px 10px;
    position: relative;
}

.step ul {
    display: flex;
    justify-content: space-between;
    position: relative;
    list-style: none;
}

/* 点線の横線 */
.step ul::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 1px;
    border-top: 1px dashed #ccc;
    z-index: 0;
}

.step li {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 15%;
}

.step__item__number {
    width: 40px;
    height: 40px;
    background-color: #D4D4D4;
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.step__item__number.active {
    background-color: #FFCC33;
}

.step__item__number.completed {
    background-color: #3CD3AD;
    color: white;
}

.step__item__text {
    font-size: 11px;
    text-align: center;
    color: #333;
}

/* 
===========================================
フォーム要素
===========================================
*/
.page-title {
    background-color: var(--step-active);
    text-align: center;
    padding: 10px 0;
    font-size: 1.5em;
    font-weight: bold;
    margin: 0 0 30px 0;
}

.form {
    padding: 0 20px;
}

/* ヒアリングフォーム用 */
.form-title {
    background-color: var(--step-active);
    text-align: center;
    padding: 10px 0;
    font-size: 1.5em;
    font-weight: bold;
    margin: 0 0 30px 0;
}

h2.form__title {
    font-size: 1.4em;
    font-weight: bold;
    margin: 1.5em 0 1em;
    padding-left: 15px;
    position: relative;
    line-height: 1.5;
}

h2.form__title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background-color: var(--step-active);
    border-radius: 999px;
}

.subscription-form__item {
    margin-bottom: 1.5em;
}

.subscription-form__item .code-text {
    font-size: 12px;
}

.subscription-form__item label {
    display: block;
    color: var(--text-color);
    font-weight: bold;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
}

/* 必須マーク */
.req, 
.required {
    color: var(--error-color);
    margin-left: 5px;
}

/* テキスト入力フィールド */
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
input[type="password"],
textarea,
select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #D4D4D4;
    border-radius: 4px;
    color: var(--text-color);
    font-size: 16px;
}

textarea {
    min-height: 80px;
    resize: vertical;
}

::placeholder {
    color: #aaa;
    font-size: 14px;
}

/* 郵便番号検索 */
#postal-code{
    width: 75%;
}

#billing-postal-code{
    width: 70%;
}

.postal-code-container {
    display: flex !important;
    align-items: center;
    gap: 10px;
}

#address-search, #billing-address-search {
    margin-top: 0;
    width: auto;
}

#address-search {
    width: fit-content;
}

/* セレクトボックス */
.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 35px;
}

.select-wrapper::after {
    content: '▼';
    font-size: 12px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #888;
}

/* 
===========================================
ボタン
===========================================
*/
button, 
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    padding: 15px 22px;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
}

.button--simple {
    flex: 1;
    width: auto;
    background-color: #007ECD;
    color: #FFF;
    border: none;
    border-radius: 4px;
    padding: 10px 15px;
    font-size: 0.9em;
    cursor: pointer;
}

.button--submit,
.btn-primary {
    width: 70%;
    color: #FFF;
    padding: 15px 22px;
    border: none;
}

.button--submit.orange {
    background: var(--btn-submit);
}

.button--submit.blue,
.btn-primary {
    background: var(--btn-next);
}

.button--submit.gray,
.btn-secondary {
    background: #aaa;
    color: white;
}

button:hover {
    transform: translateY(2px);
}

.subscription-form__submit {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.button-group {
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 40px 0;
    justify-content: center;
    flex-direction: row-reverse;
}

.button-group .button--submit,
.button-group .btn {
    width: 40%;
}

/* 
===========================================
チェックボックスとラジオボタン
===========================================
*/
.checkbox-group,
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-item,
.radio-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-item label,
.radio-item label {
    margin-bottom: 0;
    font-weight: normal;
}

/* ラジオボタンカスタマイズ */
input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid #ddd;
    border-radius: 50%;
    outline: none;
    position: relative;
}

input[type="radio"]:checked {
    border-color: #636768;
}

input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background-color: #f4f3ef;
    border-radius: 50%;
}

/* チェックボックスカスタマイズ */
.checkbox-item input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid #ddd;
    border-radius: 4px;
    outline: none;
    position: relative;
}

.checkbox-item input[type="checkbox"]:checked {
    border-color: var(--accent-color);
    background-color: var(--accent-color);
}

.checkbox-item input[type="checkbox"]:checked::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
}

/* 支払い方法用ラジオボタン */


.payment-method input[type="radio"] {
    width: 20px;
    height: 20px;
    border: none!important;
    background-color: #636768;
}

.payment-method input[type="radio"]:checked::after {
    width: 10px;
    height: 10px;
}

/* .payment-method:has(input:checked) {
    border: 1px solid #636768;
} */

.disabled-radio {
    background: #bbb !important;
    pointer-events: none;
    cursor: not-allowed;
}

/* 
===========================================
カスタム入力要素
===========================================
*/
/* 店舗数選択 */
#shop-count, #agency-count {
    width: 20%;
}

.quantity-selector {
    display: flex;
    align-items: flex-end;
    margin-top: 10px;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
}

.quantity-selector input {
    width: 60px;
    height: 40px;
    border: 1px solid #ddd;
    text-align: center;
    margin: 0 10px;
    font-size: 16px;
    font-weight: bold;
}

.shop-label {
    margin-left: 10px;
    font-size: 16px;
    font-weight: bold;
}

/* 
===========================================
料金表とチェックアウト
===========================================
*/
/* 料金テーブル */
.fee-title {
    font-size: 1.1em;
    font-weight: bold;
    margin: 20px 0 10px;
}

.fee-table-container {
    margin: 15px 0;
    border-radius: 4px;
    overflow: hidden;
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
}

.fee-table th,
.fee-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    width: 55%;
}

.fee-table th {
    background-color: #f5f5f5;
    font-weight: bold;
}

.fee-table th:nth-child(2),
.fee-table td:nth-child(2) {
    text-align: center;
    width: 15%;
}

.fee-table th:nth-child(3),
.fee-table td:nth-child(3) {
    text-align: right;
    width: 30%;
}

/* 合計金額 */
.total-fee {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
    padding: 10px 15px;
    background-color: #f9f9f9;
    border-radius: 4px;
    font-weight: bold;
}

.total-price {
    font-size: 1.2em;
    font-weight: bolder;
}

/* 料金スケジュール */
.billing-schedule {
    margin-top: 10px;
}

.billing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
}

.billing-label {
    flex: 0 0 auto;
    margin-right: 20px;
    min-width: 80px;
}

.billing-amount {
    flex: 1 1 auto;
    text-align: right;
}

/* 販売店コード */
.dealer-code-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}

#apply-code {
    width: 30%;
    flex: none;
    background-color: #474a4c;
}

.code-message {
    margin-top: 5px;
    font-size: 0.9em;
}

.code-message.success {
    color: var(--success-color);
}

.code-message.error {
    color: var(--error-color);
}

.period_text {
    color: var(--step-active);
}

/* PC・SP共通で改行を表示 */
.sp-break {
    display: inline;
}

/* 
===========================================
支払い方法
===========================================
*/
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: 4px;
    align-items: center;
    color: #636768;
    border: 1px solid #D4D4D4;
}

.payment-label {
    font-weight: normal;
    margin: 0;
}

/* 
===========================================
カスタムチェックボックス（同意用）
===========================================
*/
/* 申込フォーム用 */
.check-item {
    display: flex;
    margin: 10px 0;
    align-items: center;
}

.check-label a {
    text-decoration: underline;
    color: #0000ee;
    transition: opacity 0.3s;
}

.check-label a:hover {
    opacity: 0.7;
}

/*標準表示のチェックボックスを非表示にする*/
.check-item input[type="checkbox"],
.checkbox-agreement input[type="checkbox"] {
    display: none;
}

/*カスタムチェックボックスのスタイル*/
.check-item label,
.checkbox-agreement label {
    position: relative;
    padding: 0 0 0 45px;
    cursor: pointer;
}

.check-item label:after,
.checkbox-agreement label:after {
    position: absolute;
    content: "";
    display: block;
    top: 50%;
    left: 15px;
    margin-top: -12px;
    width: 24px;
    height: 24px;
    border: 2px solid var(--form-border);
    border-radius: 50%;
    background-color: #eaeaea;
}

.check-item label:hover:after,
.checkbox-agreement label:hover:after {
    border-color: var(--primary-color);
}

/*チェックマークのスタイル*/
.check-item input[type="checkbox"]:checked+label:before,
.checkbox-agreement input[type="checkbox"]:checked+label:before {
    position: absolute;
    content: "";
    display: block;
    top: 50%;
    left: 23px;
    margin-top: -7px;
    width: 7px;
    height: 14px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(45deg);
    z-index: 1;
}

/*チェックされた時の円の背景色*/
.check-item input[type="checkbox"]:checked+label:after,
.checkbox-agreement input[type="checkbox"]:checked+label:after {
    background-color: var(--error-color);
    border-color: var(--error-color);
}

/* ヒアリングフォーム用 */
.checkbox-agreement {
    display: flex;
    align-items: center;
    margin: 30px 0;
    justify-content: center;
}

.checkbox-agreement a {
    text-decoration: underline;
    color: #0000ee;
}

/* 施設名入力フォーム */
#facility-inputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

/* 施設入力行のレイアウト */
.facility-input-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.facility-input-container {
    flex-grow: 1;
}

.facility-name {
    flex-grow: 1;
}

.remove-facility {
    color: #D32F2F;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    font-size: 18px;
}

/* 代行オプションチェックボックス */
.agency-option-container {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    margin-right: 10px;
}

.agency-option {
    margin-right: 3px;
}

/* 代行オプションバッジ */
.agency-badge {
    display: inline-block;
    background-color: #2BC0E4;
    color: white;
    font-size: 0.8em;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 10px;
}

/* 請求先住所プレビュー */
.address-preview {
    background-color: #f5f5f5;
    padding: 10px;
    margin-top: 10px;
    border-radius: 4px;
    width: 60%;
}

.preview-text {
    margin: 0;
    padding: 3px 0;
    font-size: 0.9em;
}

/* 別の請求先フォーム */
#different-billing-form {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 4px;
    margin-top: 15px;
}

.billing-form-container {
    margin-top: 10px;
}

/* 確認ページの施設名リスト */
.facility-confirmation {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

#facility-names-confirmation {
    margin-top: 10px;
}

.facility-name-item {
    background-color: #f5f5f5;
    padding: 8px 12px;
    margin: 5px 0;
    border-radius: 4px;
    font-size: 1em;
}

/* 請求先確認セクション */
#billing-address-confirmation {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

/* 
===========================================
確認・完了ページ
===========================================
*/
.confirmation-label {
    font-weight: bold;
    margin-bottom: 5px;
}

.payment-confirmation {
    margin: 20px 0;
}

.agreement-title {
    margin: 20px 0 15px;
    line-height: 1.6;
    font-weight: bold;
}

.agreement-check {
    margin: 30px 0;
}

.fee-confirmation {
    margin: 30px 0;
}

/* 申込フォーム - 確認画面 */
#confirmation-content div {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

#confirmation-content p:first-child {
    font-weight: bold;
    margin-bottom: 8px;
}

#confirmation-content p:last-child {
    font-size: 1.05em;
}

/* ヒアリングフォーム - 確認画面 */
.confirmation-block {
    border-top: 1px solid #eee;
    padding: 10px 0;
}

.confirmation-value {
    margin-bottom: 10px;
}

.notice-box {
    margin-bottom: 20px;
}
.notice-box p {
    margin-bottom: 10px;
    line-height: 1.6;
}
.notice-box .mt-10 {
    margin-top: 15px;
    font-weight: 600;
}
.notice-list {
    padding-left: 20px;
    margin: 10px 0;
}
.notice-list li {
    margin-bottom: 5px;
    list-style-type: disc;
}
.note {
    font-size: 0.9em;
    color: #666;
    font-style: italic;
    margin-top: 5px;
}

/* 
===========================================
完了画面
===========================================
*/
.completion {
    text-align: center;
    padding: 50px 20px;
}

.completion__icon {
    margin-bottom: 40px;
}

.completion__title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}

.completion__message {
    line-height: 1.8;
    margin-bottom: 30px;
}

.wave-image {
    max-width: 100%;
    margin: 30px 0;
}

/* 
===========================================
フッター
===========================================
*/
footer {
    margin-top: auto;
    width: 100%;
    background-color: #fff;
    text-align: center;
    padding: 5px 0;
    max-width: 480px;
}

.footer-text {
    text-align: center;
    font-size: 14px;
    padding-top: 20px;
    line-height: 2;
}

.footer-text p {
    margin: 10px 0;
}

.copylight {
    font-size: 0.9em;
    padding: 10px 0;
}

/* 
===========================================
エラー表示
===========================================
*/
.error-message {
    color: var(--error-color);
    font-size: 0.9em;
    margin-top: 5px;
    display: none;
}

.input-error {
    border-color: var(--error-color) !important;
    background-color: rgba(211, 47, 47, 0.05);
}

/* 
===========================================
レスポンシブデザイン
===========================================
*/
@media (max-width: 480px) {

    .step{
        padding: 20px 0;
    }

    .step__item__number {
        width: 35px;
        height: 35px;
        font-size: 1em;
    }

    .step__item__text {
        font-size: 8px;
    }

    .payment-method {
        padding: 10px;
    }

    .fee-table th,
    .fee-table td {
        padding: 8px 5px;
        font-size: 0.9em;
    }

    .quantity-btn {
        width: 35px;
        height: 35px;
    }

    .quantity-selector input {
        width: 50px;
    }

    .button-group .button--submit,
    .button-group .btn {
        width: 80%;
        padding: 16px;
    }

    .button-group {
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    #postal-code,#billing-postal-code{
        width: 65%;
    }

    /* SP時の料金タイトルの改行調整 */
    .fee-title {
        line-height: 1.4;
    }

    .fee-title .period_text {
        display: block;
        margin-top: 4px;
        font-size: 0.9em;
    }

    /* SP時の割引名テキストの改行調整 */
    #discount-name {
        line-height: 1.3;
        font-size: 0.85em;
        word-break: break-all;
    }

    /* SP時の改行スタイル調整 */
    .sp-break {
        display: inline;
    }

    /* SP時の料金表示調整 */
    .billing-item {
        font-size: 14px;
        padding: 6px 0;
        flex-wrap: nowrap;
    }

    .billing-label {
        min-width: 60px;
        margin-right: 0;
        font-size: 14px;
    }

    .billing-amount {
        font-size: 14px;
        white-space: nowrap;
    }
    .total-fee {
        font-size: 14px;
    }
}

/* 
===========================================
施設名入力関連のスタイル
===========================================
*/
/* 施設入力行のレイアウト */
.facility-input-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.facility-input-container {
    flex: 1;
}

.facility-name {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

/* 代行オプションコンテナ */
.agency-option-container {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.agency-option {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.agency-option-container label {
    cursor: pointer;
    font-size: 14px;
    margin: 0;
}

/* 
===========================================
クレジット決済ページ専用スタイル
===========================================
*/
#credit-payment-page {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - 120px); /* ヘッダーとフッターの高さを考慮 */
}

#credit-payment-page .form {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px;
}

#credit-payment-page .text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* 
===========================================
レスポンシブデザイン
===========================================
*/

@media (max-width: 480px) {

    #credit-payment-page h2{
        font-size: 1.2em;
    }

    #credit-payment-page .form {
        padding: 20px 0;
    }
    #credit-payment-page .text {
        font-size: 12px!important;
        line-height: 2;
    }
    #credit-payment-page .button-group {
        margin: 20px 0;
    }
}