.form-loading-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.form-loading-overlay.is-visible {
  opacity: 1;
}

.form-loading-overlay[hidden] {
  display: none;
}

.form-loading-overlay__content {
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.75);
  padding: 24px 32px;
  border-radius: 12px;
  min-width: 260px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.form-loading-overlay__spinner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  display: inline-block;
  animation: form-loading-spin 0.8s linear infinite;
  margin-bottom: 12px;
}

@keyframes form-loading-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
/* =========================
   Base / Layout
========================= */
@charset "utf-8";

body {
  font-family:
    -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Helvetica,
    "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo,
    sans-serif;
}

header {
  padding: 1em;
  border-bottom: 1px solid #dadada;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  background: #fff;
  z-index: 100;
}
@media (max-width: 767px) {
  footer {
    padding: 3em 0!important;
  }
}

.header-logo img { max-width: 150px; height: auto; }
@media (max-width: 767px) { .header-logo img { width: 73px; height: auto; } }

main {
  background-color: #f8f8f8;
  padding: 5em 1em 1em;
}
.main-inner {
  background-color: #fff;
  border-radius: 10px;
  padding: 2em 1em;
}

/* PC 2カラム */
@media (min-width: 1024px) {
  .main-inner {
    display: flex;
    gap: 3em;
    width: 100%;
    max-width: 1200px;
    margin: 4em auto;
    padding: 3em;
  }
  .form-info-box, .form-content-box { flex: 1; }
}

/* SP縦積み（初期） */
@media (max-width: 1023px) {
  .main-inner { display: block; }
  .form-info-box, .form-content-box { margin-bottom: 1.5em; }
}

/* =========================
   Modal（一本化・画像は影/アニメなし）
========================= */
.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.7);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.modal.show { opacity: 1; pointer-events: auto; }

.modal-box h2 {
  text-align: center;
  font-weight: bold;
  font-size: 1.5em;
  margin-bottom: 2em;
}
.modal-box img { margin-bottom: 2em; }

.modal-content {
  position: relative;
  width: min(800px, calc(100% - 40px));
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: #fff;
  border-radius: 8px;
  padding: 60px 60px 45px 60px;
}

/* モーダル内画像：影なし・アニメなし・即表示 */
.modal-content img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: none;
  transform: none;
  opacity: 1;
  transition: none;
}

/* 閉じるボタン（右上の○×） */
.modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  inline-size: 36px;
  block-size: 36px;
  border-radius: 50%;
  background: #e8e8ed;
  border: 1px solid #e8e8ed;
  cursor: pointer;
}
.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 18px; height: 2px;
  background: #333;
  transform-origin: center;
}
.modal-close::before { transform: translate(-50%,-50%) rotate(45deg); }
.modal-close::after  { transform: translate(-50%,-50%) rotate(-45deg); }

/* =========================
   Headings / Bubble badge
========================= */
h1 {
  position: relative;
  font-size: 1.6em;
  line-height: 1.3;
  margin-bottom: 1em;
  letter-spacing: -0.07em;
}
h2 {
  font-size: 1.1em;
  font-weight: normal;
  margin-bottom: 1em;
  letter-spacing: -0.07em;
  line-height: 1.1;
}
p { font-size: .8em; margin-bottom: 1em; }

#building-image { transition: opacity .5s ease; opacity: 1; }
#building-image.fade-out { opacity: 0; }

/* 「無料」吹き出し */
.badge-bubble {
  position: absolute;
  top: -1.8em;
  left: .6em;
  background: #0078d4;
  color: #fff;
  padding: .2em .6em;
  font-size: .5em;
  border-radius: 1em;
  font-weight: bold;
  white-space: nowrap;
  letter-spacing: .1em;
  z-index: 2; /* 見切れ防止 */
}
.badge-bubble::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 15px;
  border-width: 6px 6px 0 6px;
  border-style: solid;
  border-color: #0078d4 transparent transparent transparent;
}

/* =========================
   Form basics
========================= */
fieldset { margin-bottom: 1.5em; }
legend { font-size: .9em; margin-bottom: .8em; font-weight: bold; }
legend span { font-size: .7em; padding: 0 .5em; }

.badge {
  font-size: .7em;
  border-radius: 3px;
  margin-right: .8em;
  vertical-align: 1px;
  border: 1px solid currentColor;
}
.badge--required { color: #e43b00; }
.badge--optional { color: #777; }

.radio-btn {
  display: inline-block; line-height: 1.2;
  border: 1px solid #dadada;
  margin-right: 1em;
  padding: .4em 1em .5em .5em;
  border-radius: 5px;
  cursor: pointer;
}

input[type="radio"] {
  appearance: none; -webkit-appearance: none;
  width: 18px; height: 18px;
  border: 1px solid #999;
  border-radius: 50%;
  cursor: pointer; position: relative;
  vertical-align: middle; margin: 0 .3em 0 0;
}
input[type="radio"]:checked { border-color: #0078d4; }
input[type="radio"]:checked::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 10px; height: 10px; background: #0078d4;
  border-radius: 50%; transform: translate(-50%, -50%);
}

input[type="file"]::file-selector-button {
  background-color: #0078d4; color: #fff; font-weight: bold;
  border: none; padding: .5em 1em .6em; border-radius: 4px;
  cursor: pointer; font-size: .9em;
}
input[type="file"]::file-selector-button:hover { background-color: #005a9e; }

/* iPhoneのSafariで表示される元々のサムネイルを非表示 */
/* ファイル名のテキストのみ透明にして非表示（ボタンは表示） */
input[type="file"] {
  /* ファイル名のテキストを非表示（ボタンは表示） */
  color: transparent;
  /* ファイル名のテキスト部分のみ透明にする */
  font-size: 1em; /* ボタンが表示されるように font-size を設定 */
}
/* ファイル名のテキストを非表示にしつつ、ボタンのテキストは表示 */
input[type="file"]::file-selector-button {
  color: #fff !important;
  font-size: .9em !important;
}
input[type="file"]::-webkit-file-upload-button {
  /* WebKit系ブラウザのボタンテキストは白色を維持 */
  color: #fff;
  font-size: .9em; /* WebKit系でもフォントサイズを明示 */
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select {
  border: 1px solid #dadada;
  border-radius: 4px;
  padding: .6em .8em;
  font-size: 1em;
  width: 100%;
  box-sizing: border-box;
  background-color: #fff;
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
textarea:focus {
  border-color: #0078d4;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0,120,212,0.2);
}
input::placeholder, textarea::placeholder { color: #aaa; font-size: .9em; }

/* select の▼ */
select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath fill='%23999' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .7em center;
  background-size: 1em;
  padding-right: 2em;
}
select:focus {
  border-color: #0078d4;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0,120,212,0.2);
}

/* 送信ボタン */
.form-submit { text-align: center; margin-top: 1.5em; }
.form-submit button {
  background: #e43b00; color: #fff; border: none;
  padding: .8em 1.5em; font-size: 1em; border-radius: 4px; cursor: pointer;
}

/* 利用規約 */
.agree-fieldset .agree-wrap { text-align: center; }
.agree-fieldset .agree-wrap label {
  display: inline-flex; align-items: center; gap: .4em;
}
.agree-fieldset .agree-wrap input[type="checkbox"] {
  margin: 0; vertical-align: middle;
}

/* =========================
   Valid / Error UI
========================= */
.form-row { position: relative; }
fieldset.form-row { position: relative; }

/* 緑のOKアイコン（デフォ非表示） */
.valid-indicator {
  position: absolute; right: .6em; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  opacity: 0; pointer-events: none;
  transition: opacity .15s ease;
  background: no-repeat center/contain
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><circle cx='10' cy='10' r='9' fill='%2328a745'/><path d='M5 10.5l3 3 7-7' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}
/* ラジオ用の位置微調整（legend 行に合わせる） */
fieldset.form-row > .valid-indicator { top: .9em; transform: none; }

/* is-valid のときだけ表示 */
.form-row.is-valid > .valid-indicator,
fieldset.form-row.is-valid > .valid-indicator { opacity: 1; }

/* エラー時の枠線 */
.form-row.is-error input,
.form-row.is-error select,
.form-row.is-error textarea,
fieldset.form-row.is-error input,
fieldset.form-row.is-error select,
fieldset.form-row.is-error textarea {
  border-color: #e43b00;
  box-shadow: 0 0 0 2px rgba(228,59,0,.15);
}

/* エラーメッセージ */
.form-row .error-message,
fieldset.form-row .error-message {
  display: none;
  margin-top: .4em;
  font-size: .85em;
  color: #e43b00;
}
.form-row.is-error .error-message,
fieldset.form-row.is-error .error-message { display: 1block; }

/* モーダル余白（SP） */
@media (max-width: 767px) {
  .modal-content { padding: 1em; }
  .modal-close { top: 10px; right: 10px; }
}

/* フッター */
footer {
  font-size: .6em;
  border-bottom: 3px solid #dadada;
  color: #9a9a9a;
  text-align: center;
  padding: 5em 0;
}

/* =========================
   Contact box
========================= */
.contact-box {
  border: 3px solid #dadada;
  padding: 2em 2em 1em;
  border-radius: 10px;
}
.contact-box h2 { margin-bottom: .3em; }
.contact-box h3 {
  margin-bottom: .3em !important;
  font-size: 1em;
  text-align: center;
  font-weight: normal;
}
.contact-box-line { text-align: center; margin-bottom: 1em; }
.contact-box-line img {
  display: block;
  margin: 0 auto;
  max-width: 180px;
  height: auto;
}

.contact-box-content ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
}
.contact-box-content li {
  width: 50%;
  text-align: center;
  box-sizing: border-box;
}
.contact-box a {
  color: #0078d4 !important;
  font-size: 1.6em !important;
  text-decoration: none;
  font-weight: bold;
}

/* PC時：左カラムをsticky（吹き出し見切れ防止済） */
@media (min-width: 1024px) {
  .form-info-box {
    /* position: sticky; *//* 固定解除中 */
    top: 7rem;               /* ヘッダー高さに合わせ調整 */
    align-self: flex-start;
    overflow: visible;
  }
}

/* =========================
   SP: contact-box を「★の位置」へ視覚移動
   - .main-inner を flex 縦積み
   - .form-info-box と その子 section を display: contents でフラット化
   - order で「見出し/説明 → フォーム → お問い合わせ」に並べ替え
========================= */
@media (max-width: 767px) {
  .main-inner {
    display: flex;
    flex-direction: column;
  }

  /* 二段階フラット化（これが肝） */
  .form-info-box { display: contents; }
  .form-info-box > section { display: contents; }

  /* 並び順：1) 見出し説明 → 2) フォーム → 3) お問い合わせ */
  .form-info-box > section { order: 1; margin-bottom: 1.5em; }
  .form-content-box { order: 2; margin-bottom: 4em; }
  .form-info-box .contact-box { order: 3; } /* sectionをcontents化したので兄弟として並べ替え可能 */

  /* 連絡先リストは縦並びに */
  .contact-box-content ul {
    flex-direction: column;
    align-items: center;
  }
  .contact-box-content li {
    width: 100%;
    margin-bottom: 1em;
  }

  /* SPで少し控えめ */
  .contact-box a { font-size: 1.3em !important; }
}

/* 完了画面 */
.complete-h2 {
  margin-bottom: .3em !important;
  font-size: 1.3em !important;
  font-weight:bold!important;
}  




/* 商品選定 */
.item-box {
  border: 3px solid #dadada;
  padding: 2em 2em 1em;
  border-radius: 10px;
  margin-bottom: 2em;
}
@media (max-width: 767px) {
  .item-box {
    padding: 1.2em 1em .4em;      /* 余白を少し狭く */
  }
}

.item-box h2 {
  text-align: center;
}
.item-box-img {
  text-align: center;       /* 中央寄せ */
  margin-bottom: 1em;
}
.item-box-img img {
  max-width: 100%;          /* 親要素の幅を超えない */
  height: auto;             /* 縦横比を維持 */
  display: inline-block;    /* text-align:center で中央寄せ */
}
.item-box h3 {
  font-size: .9em;
  font-weight: normal;
  margin-bottom: .5em;
}
.item-box-data dl {
  display: flex;
  flex-wrap: wrap;            /* 折り返し可能に */
  border: 1px solid #ddd;     /* 外枠 */
  border-radius: 6px;         /* 角丸 */
  overflow: hidden;           /* はみ出し防止 */
  background-color: #f9f9f9;  /* 全体の淡いグレー背景 */
  margin-bottom: 1em;
}

.item-box-data dt,
.item-box-data dd {
  padding: 0.8em 1em;         /* 余白 */
  border-bottom: 1px solid #ddd; /* 行の区切り */
  font-size: .8em;
}
@media (max-width: 767px) {
  .item-box-data dt {
    font-weight: bold;
    padding: 0.2em 1em;
  }
}
.item-box-data dt {
  width: 33%;                 /* 左カラムの幅 */
  background-color: #f2f2f2;  /* 少し濃いグレー */
  border-right: 1px solid #ddd; /* 区切り線 */
  box-sizing: border-box;
}

.item-box-data dd {
  width: 67%;                 /* 右カラム */
  box-sizing: border-box;
}

/* 最終行のボーダーを削除 */
.item-box-data dl dt:last-of-type,
.item-box-data dl dd:last-of-type {
  border-bottom: none;
}

/* スマホ時に縦並びに変更（任意） */
@media (max-width: 600px) {
  .item-box-data dt,
  .item-box-data dd {
    width: 100%;
    border-right: none;
  }
  .item-box-data dd {
    border-top: 1px solid #ddd;
  }
}

.item-box-price {
  font-weight: bold!important;
  font-size: 1.1em!important;
  margin-top: 1em!important;
  margin-bottom: 0.5em!important;
}

/* 右寄せ */
.item-box-price-text {
  text-align: right;
}

/* 金額部分を強調表示 */
.item-box-price-value {
  font-family: UniqloProRegular, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: .025rem;
  line-height: 1.2;
  font-weight: bold; /* 金額を太字に */
  display: inline-block;
  margin-left: 0.3em;
}

.sp {
  display: none;
}

/* スマホ（767px以下）では改行を有効化 */
@media (max-width: 767px) {
  .sp {
    display: inline;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  main {
    padding: 6.5em 1em 1em;
  }
}
.radio-btn:nth-child(-n+2) {
  margin-bottom: .6em!important;
}
@media (max-width: 767px) {
  /* 下の4つ目は余白なし */
  .form-row[data-group="select_option_1"] .radio-btn:last-child {
    margin-bottom: 0 !important;
  }

  /* 上3つには余白をつける */
  .form-row[data-group="select_option_1"] .radio-btn:nth-child(-n+3) {
    margin-bottom: .6em !important;
  }
}


.work-address-box {
  border-top: 2px solid #dadada;
  border-bottom: 2px solid #dadada;
  border-left: none;
  border-right: none;
  padding: 1em;
  margin-bottom: 1em;
  background-color: #f8f8f8;
}

/* 施工先住所アコーディオン */
.work-address-content {
  display: block;          /* JSで高さを制御 */
  overflow: hidden;
  max-height: 0;           /* 閉じ状態 */
  opacity: 0;              /* 閉じ状態の視覚 */
  transition: max-height .35s ease, opacity .25s ease;
}

/* 動画/アニメが苦手な人の設定に配慮 */
@media (prefers-reduced-motion: reduce) {
  .work-address-content {
    transition: none;
  }
}

/* ラジオボタン間の縦方向の余白を追加 */
fieldset[data-group="building_type"] .radio-btn {
  margin-bottom: 0.6em; /* 下方向の余白 */
}

/* スマホでは少し広めに（任意） */
@media (max-width: 767px) {
  fieldset[data-group="building_type"] .radio-btn {
    margin-bottom: 0.8em;
  }
}

/* カラー選択（select_option_1）のラジオボタンに縦方向の余白を追加 */
fieldset[data-group="select_option_1"] .radio-btn {
  margin-bottom: 0.6em; /* 折り返し行との間隔 */
}

/* スマホ時は余白を少し広げる（任意） */
@media (max-width: 767px) {
  fieldset[data-group="select_option_1"] .radio-btn {
    margin-bottom: 0.8em;
  }
}


/* =========================================
   名前（姓 → 左 / 名 → 右）横並び
   ※ SP でも常に 2 カラム
========================================= */
 
/* Form を2カラム化 */
#wh-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 1.5em;
}
 
/* 基本は全 fieldset を横幅100%（2カラムぶち抜き）で配置 */
#wh-form > fieldset {
  grid-column: 1 / -1;
}
 
/* ★ お名前（姓） → 左側（1カラム目） */
#wh-form > fieldset:has(#last_name) {
  grid-column: 1 / 2;
}
 
/* ★ お名前（名） → 右側（2カラム目） */
#wh-form > fieldset:has(#first_name) {
  grid-column: 2 / 3;
}
 
/* 名前欄の下余白を整える */
#wh-form > fieldset:has(#last_name),
#wh-form > fieldset:has(#first_name) {
  margin-bottom: 1.5em;
}

/* ★ お名前（姓） → 左側（1カラム目） */
#wh-form > fieldset:has(#last_name_kana) {
  grid-column: 1 / 2;
}
 
/* ★ お名前（名） → 右側（2カラム目） */
#wh-form > fieldset:has(#first_name_kana) {
  grid-column: 2 / 3;
}
 
/* 名前欄の下余白を整える */
#wh-form > fieldset:has(#last_name_kana),
#wh-form > fieldset:has(#first_name_kana) {
  margin-bottom: 1.5em;
}
 

 
/* =========================================
   施工先住所ブロック：フル幅＋名前だけ横並び
========================================= */
 
/* 施工先住所全体をフォームの全幅にする（#wh-form が grid のとき用） */
.work-address-box {
  grid-column: 1 / -1;
}
 
/* 施工先住所ブロック内を2カラムのグリッドにする */
.work-address-box {
  display: grid;
  grid-template-columns: 1fr 1fr;  /* 左右2カラム */
  grid-column-gap: 1.5em;         /* カラム間の余白 */
}
 
/* デフォルトでは、施工先住所内の各 fieldset は2カラムぶち抜き */
.work-address-box > fieldset {
  grid-column: 1 / -1;
}
 
/* 1つ目の fieldset（施工先のお名前・姓） → 左カラム */
.work-address-box > fieldset:nth-of-type(1) {
  grid-column: 1 / 2;
}
 
/* 2つ目の fieldset（施工先のお名前・名） → 右カラム */
.work-address-box > fieldset:nth-of-type(2) {
  grid-column: 2 / 3;
}
 
/* 施工先の姓・名の下の余白を少し広めに */
.work-address-box > fieldset:nth-of-type(1),
.work-address-box > fieldset:nth-of-type(2) {
  margin-bottom: 1.5em;
}
 
/* =========================================
   施工先住所ブロック 全体を2カラム化
========================================= */
 
.work-address-box {
  display: grid;
  grid-template-columns: 1fr 1fr;  /* 左右2カラム */
  grid-column-gap: 1.5em;
  grid-column: 1 / -1; /* フル幅 */
}
 
/* デフォルトは全部2カラムぶち抜き */
.work-address-box > fieldset {
  grid-column: 1 / -1;
}
 
/* -----------------------------------------
   1) 施工先のお名前（姓） → 左
   2) 施工先のお名前（名） → 右
----------------------------------------- */
.work-address-box > fieldset:nth-of-type(1) {
  grid-column: 1 / 2;
}
.work-address-box > fieldset:nth-of-type(2) {
  grid-column: 2 / 3;
}
 
/* -----------------------------------------
   3) 施工先の郵便番号 → 左
   4) 施工先の都道府県 → 右
----------------------------------------- */
.work-address-box > fieldset:nth-of-type(3) {
  grid-column: 1 / 2;
}
.work-address-box > fieldset:nth-of-type(4) {
  grid-column: 2 / 3;
}
 
/* 施工先のお名前 + 郵便番号 + 都道府県の下余白揃え */
.work-address-box > fieldset:nth-of-type(1),
.work-address-box > fieldset:nth-of-type(2),
.work-address-box > fieldset:nth-of-type(3),
.work-address-box > fieldset:nth-of-type(4) {
  margin-bottom: 1.5em;
}
 
 
/* =========================================
   お客様側（施工先ではない）住所欄の2カラム化
   ※ 姓・名／郵便番号・都道府県 を横並びにする
========================================= */
 
/* #wh-form の直下にある「お客様の住所関連 fieldset」を対象にする */
/* デフォルト：ぶち抜き（100%幅） */
#wh-form > fieldset {
  grid-column: 1 / -1;
}
 
/* -----------------------------------------
   1) お客様のお名前（姓） → 左
   2) お客様のお名前（名） → 右
----------------------------------------- */
#wh-form > fieldset:has(#last_name) {
  grid-column: 1 / 2;
}
 
#wh-form > fieldset:has(#first_name) {
  grid-column: 2 / 3;
}
 
/* -----------------------------------------
   3) 郵便番号 → 左
   4) 都道府県 → 右
----------------------------------------- */
#wh-form > fieldset:has(#zipcode) {
  grid-column: 1 / 2;
}
 
#wh-form > fieldset:has(#prefecture) {
  grid-column: 2 / 3;
}
 
/* 下余白を整える */
#wh-form > fieldset:has(#last_name),
#wh-form > fieldset:has(#first_name),
#wh-form > fieldset:has(#zipcode),
#wh-form > fieldset:has(#prefecture) {
  margin-bottom: 1.5em;
}
/* 施工先住所の説明文と見出しだけは100%幅に戻す */
.work-address-box > legend,
.work-address-box > p,
.work-address-box > .agree-wrap {
  grid-column: 1 / -1 !important;  /* 2カラムをまたいで全幅表示 */
  width: 100% !important;
}

/* =========================
   Spacing helpers
========================= */
.mb-xl { margin-bottom: 2.8rem !important; }
.mb-l  { margin-bottom: 1.8rem !important; }
.mb-m  { margin-bottom: 1.4rem !important; }
.mb-s  { margin-bottom: .75rem !important; }
.mb-xs { margin-bottom: .5rem !important; }
.mb-xxs{ margin-bottom: .3rem !important; }
.mb-0  { margin-bottom: 0 !important; }
