@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
  font-size: 1rem;
}

body * {
  /* 
      font-weightは<b>タグが機能しなくなるので指定しない。
      line-heightは余計に高さが効いてしまうので指定しない。 => bxi.cssで効いてる可能性あり。
      font-weightも指定しない。
  */
  font-family: Noto Serif JP, sans-serif;
  color: #111111;
  margin: 0;
}

img {
  vertical-align: bottom;
}

header#global_header {
  min-width: 0 !important;
  width: 100%;
}

#contents_wrap {
  min-width: 0 !important;
  width: 100%;
}

#contents {
  width: 100%;
}

#main {
  width: 100%;
}

#main #col_main {
  float: none;
  width: 100%;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
@media (max-width: 834.98px) {
  #main #col_main {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

a {
  text-decoration: none;
}

button {
  padding: 0;
  border: none;
  background-color: transparent;
}

img.imgL {
  max-width: 100%;
  margin-right: 0;
}

#contents_wrap {
  overflow-x: hidden;
}

.inner-full {
  margin: 0 calc(50% - 50vw);
}

@media (min-width: 0px) {
  .d-inline {
    display: inline !important;
  }
  .d-inline-block {
    display: inline-block !important;
  }
  .d-block {
    display: block !important;
  }
  .d-grid {
    display: grid !important;
  }
  .d-table {
    display: table !important;
  }
  .d-table-row {
    display: table-row !important;
  }
  .d-table-cell {
    display: table-cell !important;
  }
  .d-flex {
    display: flex !important;
  }
  .d-inline-flex {
    display: inline-flex !important;
  }
  .d-none {
    display: none !important;
  }
  .flex-row {
    flex-direction: row !important;
  }
  .flex-column {
    flex-direction: column !important;
  }
  .flex-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-wrap {
    flex-wrap: wrap !important;
  }
  .flex-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-start {
    justify-content: flex-start !important;
  }
  .justify-content-end {
    justify-content: flex-end !important;
  }
  .justify-content-center {
    justify-content: center !important;
  }
  .justify-content-between {
    justify-content: space-between !important;
  }
  .justify-content-around {
    justify-content: space-around !important;
  }
  .justify-content-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-start {
    align-items: flex-start !important;
  }
  .align-items-end {
    align-items: flex-end !important;
  }
  .align-items-center {
    align-items: center !important;
  }
  .align-items-baseline {
    align-items: baseline !important;
  }
  .align-items-stretch {
    align-items: stretch !important;
  }
  .m-0 {
    margin: 0 !important;
  }
  .m-1 {
    margin: 0.25rem !important;
  }
  .m-2 {
    margin: 0.5rem !important;
  }
  .m-3 {
    margin: 1rem !important;
  }
  .m-4 {
    margin: 1.5rem !important;
  }
  .m-5 {
    margin: 3rem !important;
  }
  .m-6 {
    margin: 4rem !important;
  }
  .m-7 {
    margin: 5rem !important;
  }
  .m-8 {
    margin: 6rem !important;
  }
  .m-auto {
    margin: auto !important;
  }
  .mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-6 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-7 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-8 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-6 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-7 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-8 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-0 {
    margin-top: 0 !important;
  }
  .mt-1 {
    margin-top: 0.25rem !important;
  }
  .mt-2 {
    margin-top: 0.5rem !important;
  }
  .mt-3 {
    margin-top: 1rem !important;
  }
  .mt-4 {
    margin-top: 1.5rem !important;
  }
  .mt-5 {
    margin-top: 3rem !important;
  }
  .mt-6 {
    margin-top: 4rem !important;
  }
  .mt-7 {
    margin-top: 5rem !important;
  }
  .mt-8 {
    margin-top: 6rem !important;
  }
  .mt-auto {
    margin-top: auto !important;
  }
  .me-0 {
    margin-right: 0 !important;
  }
  .me-1 {
    margin-right: 0.25rem !important;
  }
  .me-2 {
    margin-right: 0.5rem !important;
  }
  .me-3 {
    margin-right: 1rem !important;
  }
  .me-4 {
    margin-right: 1.5rem !important;
  }
  .me-5 {
    margin-right: 3rem !important;
  }
  .me-6 {
    margin-right: 4rem !important;
  }
  .me-7 {
    margin-right: 5rem !important;
  }
  .me-8 {
    margin-right: 6rem !important;
  }
  .me-auto {
    margin-right: auto !important;
  }
  .mb-0 {
    margin-bottom: 0 !important;
  }
  .mb-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-3 {
    margin-bottom: 1rem !important;
  }
  .mb-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-5 {
    margin-bottom: 3rem !important;
  }
  .mb-6 {
    margin-bottom: 4rem !important;
  }
  .mb-7 {
    margin-bottom: 5rem !important;
  }
  .mb-8 {
    margin-bottom: 6rem !important;
  }
  .mb-auto {
    margin-bottom: auto !important;
  }
  .ms-0 {
    margin-left: 0 !important;
  }
  .ms-1 {
    margin-left: 0.25rem !important;
  }
  .ms-2 {
    margin-left: 0.5rem !important;
  }
  .ms-3 {
    margin-left: 1rem !important;
  }
  .ms-4 {
    margin-left: 1.5rem !important;
  }
  .ms-5 {
    margin-left: 3rem !important;
  }
  .ms-6 {
    margin-left: 4rem !important;
  }
  .ms-7 {
    margin-left: 5rem !important;
  }
  .ms-8 {
    margin-left: 6rem !important;
  }
  .ms-auto {
    margin-left: auto !important;
  }
  .p-0 {
    padding: 0 !important;
  }
  .p-1 {
    padding: 0.25rem !important;
  }
  .p-2 {
    padding: 0.5rem !important;
  }
  .p-3 {
    padding: 1rem !important;
  }
  .p-4 {
    padding: 1.5rem !important;
  }
  .p-5 {
    padding: 3rem !important;
  }
  .p-6 {
    padding: 4rem !important;
  }
  .p-7 {
    padding: 5rem !important;
  }
  .p-8 {
    padding: 6rem !important;
  }
  .px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-6 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-7 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-8 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-7 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-8 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .pt-0 {
    padding-top: 0 !important;
  }
  .pt-1 {
    padding-top: 0.25rem !important;
  }
  .pt-2 {
    padding-top: 0.5rem !important;
  }
  .pt-3 {
    padding-top: 1rem !important;
  }
  .pt-4 {
    padding-top: 1.5rem !important;
  }
  .pt-5 {
    padding-top: 3rem !important;
  }
  .pt-6 {
    padding-top: 4rem !important;
  }
  .pt-7 {
    padding-top: 5rem !important;
  }
  .pt-8 {
    padding-top: 6rem !important;
  }
  .pe-0 {
    padding-right: 0 !important;
  }
  .pe-1 {
    padding-right: 0.25rem !important;
  }
  .pe-2 {
    padding-right: 0.5rem !important;
  }
  .pe-3 {
    padding-right: 1rem !important;
  }
  .pe-4 {
    padding-right: 1.5rem !important;
  }
  .pe-5 {
    padding-right: 3rem !important;
  }
  .pe-6 {
    padding-right: 4rem !important;
  }
  .pe-7 {
    padding-right: 5rem !important;
  }
  .pe-8 {
    padding-right: 6rem !important;
  }
  .pb-0 {
    padding-bottom: 0 !important;
  }
  .pb-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-3 {
    padding-bottom: 1rem !important;
  }
  .pb-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-5 {
    padding-bottom: 3rem !important;
  }
  .pb-6 {
    padding-bottom: 4rem !important;
  }
  .pb-7 {
    padding-bottom: 5rem !important;
  }
  .pb-8 {
    padding-bottom: 6rem !important;
  }
  .ps-0 {
    padding-left: 0 !important;
  }
  .ps-1 {
    padding-left: 0.25rem !important;
  }
  .ps-2 {
    padding-left: 0.5rem !important;
  }
  .ps-3 {
    padding-left: 1rem !important;
  }
  .ps-4 {
    padding-left: 1.5rem !important;
  }
  .ps-5 {
    padding-left: 3rem !important;
  }
  .ps-6 {
    padding-left: 4rem !important;
  }
  .ps-7 {
    padding-left: 5rem !important;
  }
  .ps-8 {
    padding-left: 6rem !important;
  }
}
@media (min-width: 641px) {
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-6 {
    margin: 4rem !important;
  }
  .m-sm-7 {
    margin: 5rem !important;
  }
  .m-sm-8 {
    margin: 6rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-6 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-sm-7 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-sm-8 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-6 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-sm-7 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-sm-8 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-6 {
    margin-top: 4rem !important;
  }
  .mt-sm-7 {
    margin-top: 5rem !important;
  }
  .mt-sm-8 {
    margin-top: 6rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-6 {
    margin-right: 4rem !important;
  }
  .me-sm-7 {
    margin-right: 5rem !important;
  }
  .me-sm-8 {
    margin-right: 6rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-6 {
    margin-bottom: 4rem !important;
  }
  .mb-sm-7 {
    margin-bottom: 5rem !important;
  }
  .mb-sm-8 {
    margin-bottom: 6rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-6 {
    margin-left: 4rem !important;
  }
  .ms-sm-7 {
    margin-left: 5rem !important;
  }
  .ms-sm-8 {
    margin-left: 6rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .p-sm-6 {
    padding: 4rem !important;
  }
  .p-sm-7 {
    padding: 5rem !important;
  }
  .p-sm-8 {
    padding: 6rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-sm-6 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-sm-7 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-sm-8 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-sm-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-sm-7 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-sm-8 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pt-sm-6 {
    padding-top: 4rem !important;
  }
  .pt-sm-7 {
    padding-top: 5rem !important;
  }
  .pt-sm-8 {
    padding-top: 6rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pe-sm-6 {
    padding-right: 4rem !important;
  }
  .pe-sm-7 {
    padding-right: 5rem !important;
  }
  .pe-sm-8 {
    padding-right: 6rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pb-sm-6 {
    padding-bottom: 4rem !important;
  }
  .pb-sm-7 {
    padding-bottom: 5rem !important;
  }
  .pb-sm-8 {
    padding-bottom: 6rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
  .ps-sm-6 {
    padding-left: 4rem !important;
  }
  .ps-sm-7 {
    padding-left: 5rem !important;
  }
  .ps-sm-8 {
    padding-left: 6rem !important;
  }
}
@media (min-width: 835px) {
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-6 {
    margin: 4rem !important;
  }
  .m-md-7 {
    margin: 5rem !important;
  }
  .m-md-8 {
    margin: 6rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-6 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-md-7 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-md-8 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-6 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-md-7 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-md-8 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-6 {
    margin-top: 4rem !important;
  }
  .mt-md-7 {
    margin-top: 5rem !important;
  }
  .mt-md-8 {
    margin-top: 6rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-6 {
    margin-right: 4rem !important;
  }
  .me-md-7 {
    margin-right: 5rem !important;
  }
  .me-md-8 {
    margin-right: 6rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-6 {
    margin-bottom: 4rem !important;
  }
  .mb-md-7 {
    margin-bottom: 5rem !important;
  }
  .mb-md-8 {
    margin-bottom: 6rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-6 {
    margin-left: 4rem !important;
  }
  .ms-md-7 {
    margin-left: 5rem !important;
  }
  .ms-md-8 {
    margin-left: 6rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .p-md-6 {
    padding: 4rem !important;
  }
  .p-md-7 {
    padding: 5rem !important;
  }
  .p-md-8 {
    padding: 6rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-md-6 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-md-7 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-md-8 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-md-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-md-7 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-md-8 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pt-md-6 {
    padding-top: 4rem !important;
  }
  .pt-md-7 {
    padding-top: 5rem !important;
  }
  .pt-md-8 {
    padding-top: 6rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pe-md-6 {
    padding-right: 4rem !important;
  }
  .pe-md-7 {
    padding-right: 5rem !important;
  }
  .pe-md-8 {
    padding-right: 6rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .pb-md-6 {
    padding-bottom: 4rem !important;
  }
  .pb-md-7 {
    padding-bottom: 5rem !important;
  }
  .pb-md-8 {
    padding-bottom: 6rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
  .ps-md-6 {
    padding-left: 4rem !important;
  }
  .ps-md-7 {
    padding-left: 5rem !important;
  }
  .ps-md-8 {
    padding-left: 6rem !important;
  }
}
@media (min-width: 1001px) {
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-6 {
    margin: 4rem !important;
  }
  .m-lg-7 {
    margin: 5rem !important;
  }
  .m-lg-8 {
    margin: 6rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-6 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-lg-7 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-lg-8 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-6 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-lg-7 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-lg-8 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-6 {
    margin-top: 4rem !important;
  }
  .mt-lg-7 {
    margin-top: 5rem !important;
  }
  .mt-lg-8 {
    margin-top: 6rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-6 {
    margin-right: 4rem !important;
  }
  .me-lg-7 {
    margin-right: 5rem !important;
  }
  .me-lg-8 {
    margin-right: 6rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-6 {
    margin-bottom: 4rem !important;
  }
  .mb-lg-7 {
    margin-bottom: 5rem !important;
  }
  .mb-lg-8 {
    margin-bottom: 6rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-6 {
    margin-left: 4rem !important;
  }
  .ms-lg-7 {
    margin-left: 5rem !important;
  }
  .ms-lg-8 {
    margin-left: 6rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .p-lg-6 {
    padding: 4rem !important;
  }
  .p-lg-7 {
    padding: 5rem !important;
  }
  .p-lg-8 {
    padding: 6rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-lg-6 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-lg-7 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-lg-8 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-lg-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-lg-7 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-lg-8 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pt-lg-6 {
    padding-top: 4rem !important;
  }
  .pt-lg-7 {
    padding-top: 5rem !important;
  }
  .pt-lg-8 {
    padding-top: 6rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pe-lg-6 {
    padding-right: 4rem !important;
  }
  .pe-lg-7 {
    padding-right: 5rem !important;
  }
  .pe-lg-8 {
    padding-right: 6rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pb-lg-6 {
    padding-bottom: 4rem !important;
  }
  .pb-lg-7 {
    padding-bottom: 5rem !important;
  }
  .pb-lg-8 {
    padding-bottom: 6rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
  .ps-lg-6 {
    padding-left: 4rem !important;
  }
  .ps-lg-7 {
    padding-left: 5rem !important;
  }
  .ps-lg-8 {
    padding-left: 6rem !important;
  }
}
@media (min-width: 1201px) {
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-6 {
    margin: 4rem !important;
  }
  .m-xl-7 {
    margin: 5rem !important;
  }
  .m-xl-8 {
    margin: 6rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-6 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-xl-7 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-xl-8 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-6 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-xl-7 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-xl-8 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-6 {
    margin-top: 4rem !important;
  }
  .mt-xl-7 {
    margin-top: 5rem !important;
  }
  .mt-xl-8 {
    margin-top: 6rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-6 {
    margin-right: 4rem !important;
  }
  .me-xl-7 {
    margin-right: 5rem !important;
  }
  .me-xl-8 {
    margin-right: 6rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-6 {
    margin-bottom: 4rem !important;
  }
  .mb-xl-7 {
    margin-bottom: 5rem !important;
  }
  .mb-xl-8 {
    margin-bottom: 6rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-6 {
    margin-left: 4rem !important;
  }
  .ms-xl-7 {
    margin-left: 5rem !important;
  }
  .ms-xl-8 {
    margin-left: 6rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .p-xl-6 {
    padding: 4rem !important;
  }
  .p-xl-7 {
    padding: 5rem !important;
  }
  .p-xl-8 {
    padding: 6rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xl-6 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-xl-7 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-xl-8 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xl-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-xl-7 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-xl-8 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pt-xl-6 {
    padding-top: 4rem !important;
  }
  .pt-xl-7 {
    padding-top: 5rem !important;
  }
  .pt-xl-8 {
    padding-top: 6rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pe-xl-6 {
    padding-right: 4rem !important;
  }
  .pe-xl-7 {
    padding-right: 5rem !important;
  }
  .pe-xl-8 {
    padding-right: 6rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pb-xl-6 {
    padding-bottom: 4rem !important;
  }
  .pb-xl-7 {
    padding-bottom: 5rem !important;
  }
  .pb-xl-8 {
    padding-bottom: 6rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
  .ps-xl-6 {
    padding-left: 4rem !important;
  }
  .ps-xl-7 {
    padding-left: 5rem !important;
  }
  .ps-xl-8 {
    padding-left: 6rem !important;
  }
}
@media (min-width: 1401px) {
  .d-ds-inline {
    display: inline !important;
  }
  .d-ds-inline-block {
    display: inline-block !important;
  }
  .d-ds-block {
    display: block !important;
  }
  .d-ds-grid {
    display: grid !important;
  }
  .d-ds-table {
    display: table !important;
  }
  .d-ds-table-row {
    display: table-row !important;
  }
  .d-ds-table-cell {
    display: table-cell !important;
  }
  .d-ds-flex {
    display: flex !important;
  }
  .d-ds-inline-flex {
    display: inline-flex !important;
  }
  .d-ds-none {
    display: none !important;
  }
  .flex-ds-row {
    flex-direction: row !important;
  }
  .flex-ds-column {
    flex-direction: column !important;
  }
  .flex-ds-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-ds-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-ds-wrap {
    flex-wrap: wrap !important;
  }
  .flex-ds-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-ds-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-ds-start {
    justify-content: flex-start !important;
  }
  .justify-content-ds-end {
    justify-content: flex-end !important;
  }
  .justify-content-ds-center {
    justify-content: center !important;
  }
  .justify-content-ds-between {
    justify-content: space-between !important;
  }
  .justify-content-ds-around {
    justify-content: space-around !important;
  }
  .justify-content-ds-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-ds-start {
    align-items: flex-start !important;
  }
  .align-items-ds-end {
    align-items: flex-end !important;
  }
  .align-items-ds-center {
    align-items: center !important;
  }
  .align-items-ds-baseline {
    align-items: baseline !important;
  }
  .align-items-ds-stretch {
    align-items: stretch !important;
  }
  .m-ds-0 {
    margin: 0 !important;
  }
  .m-ds-1 {
    margin: 0.25rem !important;
  }
  .m-ds-2 {
    margin: 0.5rem !important;
  }
  .m-ds-3 {
    margin: 1rem !important;
  }
  .m-ds-4 {
    margin: 1.5rem !important;
  }
  .m-ds-5 {
    margin: 3rem !important;
  }
  .m-ds-6 {
    margin: 4rem !important;
  }
  .m-ds-7 {
    margin: 5rem !important;
  }
  .m-ds-8 {
    margin: 6rem !important;
  }
  .m-ds-auto {
    margin: auto !important;
  }
  .mx-ds-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-ds-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-ds-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-ds-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-ds-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-ds-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-ds-6 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-ds-7 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-ds-8 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-ds-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-ds-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-ds-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-ds-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-ds-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-ds-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-ds-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-ds-6 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-ds-7 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-ds-8 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-ds-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-ds-0 {
    margin-top: 0 !important;
  }
  .mt-ds-1 {
    margin-top: 0.25rem !important;
  }
  .mt-ds-2 {
    margin-top: 0.5rem !important;
  }
  .mt-ds-3 {
    margin-top: 1rem !important;
  }
  .mt-ds-4 {
    margin-top: 1.5rem !important;
  }
  .mt-ds-5 {
    margin-top: 3rem !important;
  }
  .mt-ds-6 {
    margin-top: 4rem !important;
  }
  .mt-ds-7 {
    margin-top: 5rem !important;
  }
  .mt-ds-8 {
    margin-top: 6rem !important;
  }
  .mt-ds-auto {
    margin-top: auto !important;
  }
  .me-ds-0 {
    margin-right: 0 !important;
  }
  .me-ds-1 {
    margin-right: 0.25rem !important;
  }
  .me-ds-2 {
    margin-right: 0.5rem !important;
  }
  .me-ds-3 {
    margin-right: 1rem !important;
  }
  .me-ds-4 {
    margin-right: 1.5rem !important;
  }
  .me-ds-5 {
    margin-right: 3rem !important;
  }
  .me-ds-6 {
    margin-right: 4rem !important;
  }
  .me-ds-7 {
    margin-right: 5rem !important;
  }
  .me-ds-8 {
    margin-right: 6rem !important;
  }
  .me-ds-auto {
    margin-right: auto !important;
  }
  .mb-ds-0 {
    margin-bottom: 0 !important;
  }
  .mb-ds-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-ds-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-ds-3 {
    margin-bottom: 1rem !important;
  }
  .mb-ds-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-ds-5 {
    margin-bottom: 3rem !important;
  }
  .mb-ds-6 {
    margin-bottom: 4rem !important;
  }
  .mb-ds-7 {
    margin-bottom: 5rem !important;
  }
  .mb-ds-8 {
    margin-bottom: 6rem !important;
  }
  .mb-ds-auto {
    margin-bottom: auto !important;
  }
  .ms-ds-0 {
    margin-left: 0 !important;
  }
  .ms-ds-1 {
    margin-left: 0.25rem !important;
  }
  .ms-ds-2 {
    margin-left: 0.5rem !important;
  }
  .ms-ds-3 {
    margin-left: 1rem !important;
  }
  .ms-ds-4 {
    margin-left: 1.5rem !important;
  }
  .ms-ds-5 {
    margin-left: 3rem !important;
  }
  .ms-ds-6 {
    margin-left: 4rem !important;
  }
  .ms-ds-7 {
    margin-left: 5rem !important;
  }
  .ms-ds-8 {
    margin-left: 6rem !important;
  }
  .ms-ds-auto {
    margin-left: auto !important;
  }
  .p-ds-0 {
    padding: 0 !important;
  }
  .p-ds-1 {
    padding: 0.25rem !important;
  }
  .p-ds-2 {
    padding: 0.5rem !important;
  }
  .p-ds-3 {
    padding: 1rem !important;
  }
  .p-ds-4 {
    padding: 1.5rem !important;
  }
  .p-ds-5 {
    padding: 3rem !important;
  }
  .p-ds-6 {
    padding: 4rem !important;
  }
  .p-ds-7 {
    padding: 5rem !important;
  }
  .p-ds-8 {
    padding: 6rem !important;
  }
  .px-ds-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-ds-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-ds-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-ds-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-ds-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-ds-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-ds-6 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-ds-7 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-ds-8 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .py-ds-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-ds-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-ds-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-ds-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-ds-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-ds-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-ds-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-ds-7 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-ds-8 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .pt-ds-0 {
    padding-top: 0 !important;
  }
  .pt-ds-1 {
    padding-top: 0.25rem !important;
  }
  .pt-ds-2 {
    padding-top: 0.5rem !important;
  }
  .pt-ds-3 {
    padding-top: 1rem !important;
  }
  .pt-ds-4 {
    padding-top: 1.5rem !important;
  }
  .pt-ds-5 {
    padding-top: 3rem !important;
  }
  .pt-ds-6 {
    padding-top: 4rem !important;
  }
  .pt-ds-7 {
    padding-top: 5rem !important;
  }
  .pt-ds-8 {
    padding-top: 6rem !important;
  }
  .pe-ds-0 {
    padding-right: 0 !important;
  }
  .pe-ds-1 {
    padding-right: 0.25rem !important;
  }
  .pe-ds-2 {
    padding-right: 0.5rem !important;
  }
  .pe-ds-3 {
    padding-right: 1rem !important;
  }
  .pe-ds-4 {
    padding-right: 1.5rem !important;
  }
  .pe-ds-5 {
    padding-right: 3rem !important;
  }
  .pe-ds-6 {
    padding-right: 4rem !important;
  }
  .pe-ds-7 {
    padding-right: 5rem !important;
  }
  .pe-ds-8 {
    padding-right: 6rem !important;
  }
  .pb-ds-0 {
    padding-bottom: 0 !important;
  }
  .pb-ds-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-ds-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-ds-3 {
    padding-bottom: 1rem !important;
  }
  .pb-ds-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-ds-5 {
    padding-bottom: 3rem !important;
  }
  .pb-ds-6 {
    padding-bottom: 4rem !important;
  }
  .pb-ds-7 {
    padding-bottom: 5rem !important;
  }
  .pb-ds-8 {
    padding-bottom: 6rem !important;
  }
  .ps-ds-0 {
    padding-left: 0 !important;
  }
  .ps-ds-1 {
    padding-left: 0.25rem !important;
  }
  .ps-ds-2 {
    padding-left: 0.5rem !important;
  }
  .ps-ds-3 {
    padding-left: 1rem !important;
  }
  .ps-ds-4 {
    padding-left: 1.5rem !important;
  }
  .ps-ds-5 {
    padding-left: 3rem !important;
  }
  .ps-ds-6 {
    padding-left: 4rem !important;
  }
  .ps-ds-7 {
    padding-left: 5rem !important;
  }
  .ps-ds-8 {
    padding-left: 6rem !important;
  }
}
@media (min-width: 1601px) {
  .d-dm-inline {
    display: inline !important;
  }
  .d-dm-inline-block {
    display: inline-block !important;
  }
  .d-dm-block {
    display: block !important;
  }
  .d-dm-grid {
    display: grid !important;
  }
  .d-dm-table {
    display: table !important;
  }
  .d-dm-table-row {
    display: table-row !important;
  }
  .d-dm-table-cell {
    display: table-cell !important;
  }
  .d-dm-flex {
    display: flex !important;
  }
  .d-dm-inline-flex {
    display: inline-flex !important;
  }
  .d-dm-none {
    display: none !important;
  }
  .flex-dm-row {
    flex-direction: row !important;
  }
  .flex-dm-column {
    flex-direction: column !important;
  }
  .flex-dm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-dm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-dm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-dm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-dm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-dm-start {
    justify-content: flex-start !important;
  }
  .justify-content-dm-end {
    justify-content: flex-end !important;
  }
  .justify-content-dm-center {
    justify-content: center !important;
  }
  .justify-content-dm-between {
    justify-content: space-between !important;
  }
  .justify-content-dm-around {
    justify-content: space-around !important;
  }
  .justify-content-dm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-dm-start {
    align-items: flex-start !important;
  }
  .align-items-dm-end {
    align-items: flex-end !important;
  }
  .align-items-dm-center {
    align-items: center !important;
  }
  .align-items-dm-baseline {
    align-items: baseline !important;
  }
  .align-items-dm-stretch {
    align-items: stretch !important;
  }
  .m-dm-0 {
    margin: 0 !important;
  }
  .m-dm-1 {
    margin: 0.25rem !important;
  }
  .m-dm-2 {
    margin: 0.5rem !important;
  }
  .m-dm-3 {
    margin: 1rem !important;
  }
  .m-dm-4 {
    margin: 1.5rem !important;
  }
  .m-dm-5 {
    margin: 3rem !important;
  }
  .m-dm-6 {
    margin: 4rem !important;
  }
  .m-dm-7 {
    margin: 5rem !important;
  }
  .m-dm-8 {
    margin: 6rem !important;
  }
  .m-dm-auto {
    margin: auto !important;
  }
  .mx-dm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-dm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-dm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-dm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-dm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-dm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-dm-6 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-dm-7 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-dm-8 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-dm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-dm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-dm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-dm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-dm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-dm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-dm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-dm-6 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-dm-7 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-dm-8 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-dm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-dm-0 {
    margin-top: 0 !important;
  }
  .mt-dm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-dm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-dm-3 {
    margin-top: 1rem !important;
  }
  .mt-dm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-dm-5 {
    margin-top: 3rem !important;
  }
  .mt-dm-6 {
    margin-top: 4rem !important;
  }
  .mt-dm-7 {
    margin-top: 5rem !important;
  }
  .mt-dm-8 {
    margin-top: 6rem !important;
  }
  .mt-dm-auto {
    margin-top: auto !important;
  }
  .me-dm-0 {
    margin-right: 0 !important;
  }
  .me-dm-1 {
    margin-right: 0.25rem !important;
  }
  .me-dm-2 {
    margin-right: 0.5rem !important;
  }
  .me-dm-3 {
    margin-right: 1rem !important;
  }
  .me-dm-4 {
    margin-right: 1.5rem !important;
  }
  .me-dm-5 {
    margin-right: 3rem !important;
  }
  .me-dm-6 {
    margin-right: 4rem !important;
  }
  .me-dm-7 {
    margin-right: 5rem !important;
  }
  .me-dm-8 {
    margin-right: 6rem !important;
  }
  .me-dm-auto {
    margin-right: auto !important;
  }
  .mb-dm-0 {
    margin-bottom: 0 !important;
  }
  .mb-dm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-dm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-dm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-dm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-dm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-dm-6 {
    margin-bottom: 4rem !important;
  }
  .mb-dm-7 {
    margin-bottom: 5rem !important;
  }
  .mb-dm-8 {
    margin-bottom: 6rem !important;
  }
  .mb-dm-auto {
    margin-bottom: auto !important;
  }
  .ms-dm-0 {
    margin-left: 0 !important;
  }
  .ms-dm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-dm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-dm-3 {
    margin-left: 1rem !important;
  }
  .ms-dm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-dm-5 {
    margin-left: 3rem !important;
  }
  .ms-dm-6 {
    margin-left: 4rem !important;
  }
  .ms-dm-7 {
    margin-left: 5rem !important;
  }
  .ms-dm-8 {
    margin-left: 6rem !important;
  }
  .ms-dm-auto {
    margin-left: auto !important;
  }
  .p-dm-0 {
    padding: 0 !important;
  }
  .p-dm-1 {
    padding: 0.25rem !important;
  }
  .p-dm-2 {
    padding: 0.5rem !important;
  }
  .p-dm-3 {
    padding: 1rem !important;
  }
  .p-dm-4 {
    padding: 1.5rem !important;
  }
  .p-dm-5 {
    padding: 3rem !important;
  }
  .p-dm-6 {
    padding: 4rem !important;
  }
  .p-dm-7 {
    padding: 5rem !important;
  }
  .p-dm-8 {
    padding: 6rem !important;
  }
  .px-dm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-dm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-dm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-dm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-dm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-dm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-dm-6 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-dm-7 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-dm-8 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .py-dm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-dm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-dm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-dm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-dm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-dm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-dm-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-dm-7 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-dm-8 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .pt-dm-0 {
    padding-top: 0 !important;
  }
  .pt-dm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-dm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-dm-3 {
    padding-top: 1rem !important;
  }
  .pt-dm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-dm-5 {
    padding-top: 3rem !important;
  }
  .pt-dm-6 {
    padding-top: 4rem !important;
  }
  .pt-dm-7 {
    padding-top: 5rem !important;
  }
  .pt-dm-8 {
    padding-top: 6rem !important;
  }
  .pe-dm-0 {
    padding-right: 0 !important;
  }
  .pe-dm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-dm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-dm-3 {
    padding-right: 1rem !important;
  }
  .pe-dm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-dm-5 {
    padding-right: 3rem !important;
  }
  .pe-dm-6 {
    padding-right: 4rem !important;
  }
  .pe-dm-7 {
    padding-right: 5rem !important;
  }
  .pe-dm-8 {
    padding-right: 6rem !important;
  }
  .pb-dm-0 {
    padding-bottom: 0 !important;
  }
  .pb-dm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-dm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-dm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-dm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-dm-5 {
    padding-bottom: 3rem !important;
  }
  .pb-dm-6 {
    padding-bottom: 4rem !important;
  }
  .pb-dm-7 {
    padding-bottom: 5rem !important;
  }
  .pb-dm-8 {
    padding-bottom: 6rem !important;
  }
  .ps-dm-0 {
    padding-left: 0 !important;
  }
  .ps-dm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-dm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-dm-3 {
    padding-left: 1rem !important;
  }
  .ps-dm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-dm-5 {
    padding-left: 3rem !important;
  }
  .ps-dm-6 {
    padding-left: 4rem !important;
  }
  .ps-dm-7 {
    padding-left: 5rem !important;
  }
  .ps-dm-8 {
    padding-left: 6rem !important;
  }
}
@media (min-width: 1921px) {
  .d-dl-inline {
    display: inline !important;
  }
  .d-dl-inline-block {
    display: inline-block !important;
  }
  .d-dl-block {
    display: block !important;
  }
  .d-dl-grid {
    display: grid !important;
  }
  .d-dl-table {
    display: table !important;
  }
  .d-dl-table-row {
    display: table-row !important;
  }
  .d-dl-table-cell {
    display: table-cell !important;
  }
  .d-dl-flex {
    display: flex !important;
  }
  .d-dl-inline-flex {
    display: inline-flex !important;
  }
  .d-dl-none {
    display: none !important;
  }
  .flex-dl-row {
    flex-direction: row !important;
  }
  .flex-dl-column {
    flex-direction: column !important;
  }
  .flex-dl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-dl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-dl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-dl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-dl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-dl-start {
    justify-content: flex-start !important;
  }
  .justify-content-dl-end {
    justify-content: flex-end !important;
  }
  .justify-content-dl-center {
    justify-content: center !important;
  }
  .justify-content-dl-between {
    justify-content: space-between !important;
  }
  .justify-content-dl-around {
    justify-content: space-around !important;
  }
  .justify-content-dl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-dl-start {
    align-items: flex-start !important;
  }
  .align-items-dl-end {
    align-items: flex-end !important;
  }
  .align-items-dl-center {
    align-items: center !important;
  }
  .align-items-dl-baseline {
    align-items: baseline !important;
  }
  .align-items-dl-stretch {
    align-items: stretch !important;
  }
  .m-dl-0 {
    margin: 0 !important;
  }
  .m-dl-1 {
    margin: 0.25rem !important;
  }
  .m-dl-2 {
    margin: 0.5rem !important;
  }
  .m-dl-3 {
    margin: 1rem !important;
  }
  .m-dl-4 {
    margin: 1.5rem !important;
  }
  .m-dl-5 {
    margin: 3rem !important;
  }
  .m-dl-6 {
    margin: 4rem !important;
  }
  .m-dl-7 {
    margin: 5rem !important;
  }
  .m-dl-8 {
    margin: 6rem !important;
  }
  .m-dl-auto {
    margin: auto !important;
  }
  .mx-dl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-dl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-dl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-dl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-dl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-dl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-dl-6 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-dl-7 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-dl-8 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-dl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-dl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-dl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-dl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-dl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-dl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-dl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-dl-6 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-dl-7 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-dl-8 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-dl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-dl-0 {
    margin-top: 0 !important;
  }
  .mt-dl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-dl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-dl-3 {
    margin-top: 1rem !important;
  }
  .mt-dl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-dl-5 {
    margin-top: 3rem !important;
  }
  .mt-dl-6 {
    margin-top: 4rem !important;
  }
  .mt-dl-7 {
    margin-top: 5rem !important;
  }
  .mt-dl-8 {
    margin-top: 6rem !important;
  }
  .mt-dl-auto {
    margin-top: auto !important;
  }
  .me-dl-0 {
    margin-right: 0 !important;
  }
  .me-dl-1 {
    margin-right: 0.25rem !important;
  }
  .me-dl-2 {
    margin-right: 0.5rem !important;
  }
  .me-dl-3 {
    margin-right: 1rem !important;
  }
  .me-dl-4 {
    margin-right: 1.5rem !important;
  }
  .me-dl-5 {
    margin-right: 3rem !important;
  }
  .me-dl-6 {
    margin-right: 4rem !important;
  }
  .me-dl-7 {
    margin-right: 5rem !important;
  }
  .me-dl-8 {
    margin-right: 6rem !important;
  }
  .me-dl-auto {
    margin-right: auto !important;
  }
  .mb-dl-0 {
    margin-bottom: 0 !important;
  }
  .mb-dl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-dl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-dl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-dl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-dl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-dl-6 {
    margin-bottom: 4rem !important;
  }
  .mb-dl-7 {
    margin-bottom: 5rem !important;
  }
  .mb-dl-8 {
    margin-bottom: 6rem !important;
  }
  .mb-dl-auto {
    margin-bottom: auto !important;
  }
  .ms-dl-0 {
    margin-left: 0 !important;
  }
  .ms-dl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-dl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-dl-3 {
    margin-left: 1rem !important;
  }
  .ms-dl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-dl-5 {
    margin-left: 3rem !important;
  }
  .ms-dl-6 {
    margin-left: 4rem !important;
  }
  .ms-dl-7 {
    margin-left: 5rem !important;
  }
  .ms-dl-8 {
    margin-left: 6rem !important;
  }
  .ms-dl-auto {
    margin-left: auto !important;
  }
  .p-dl-0 {
    padding: 0 !important;
  }
  .p-dl-1 {
    padding: 0.25rem !important;
  }
  .p-dl-2 {
    padding: 0.5rem !important;
  }
  .p-dl-3 {
    padding: 1rem !important;
  }
  .p-dl-4 {
    padding: 1.5rem !important;
  }
  .p-dl-5 {
    padding: 3rem !important;
  }
  .p-dl-6 {
    padding: 4rem !important;
  }
  .p-dl-7 {
    padding: 5rem !important;
  }
  .p-dl-8 {
    padding: 6rem !important;
  }
  .px-dl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-dl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-dl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-dl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-dl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-dl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-dl-6 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-dl-7 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-dl-8 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .py-dl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-dl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-dl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-dl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-dl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-dl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-dl-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-dl-7 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-dl-8 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .pt-dl-0 {
    padding-top: 0 !important;
  }
  .pt-dl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-dl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-dl-3 {
    padding-top: 1rem !important;
  }
  .pt-dl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-dl-5 {
    padding-top: 3rem !important;
  }
  .pt-dl-6 {
    padding-top: 4rem !important;
  }
  .pt-dl-7 {
    padding-top: 5rem !important;
  }
  .pt-dl-8 {
    padding-top: 6rem !important;
  }
  .pe-dl-0 {
    padding-right: 0 !important;
  }
  .pe-dl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-dl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-dl-3 {
    padding-right: 1rem !important;
  }
  .pe-dl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-dl-5 {
    padding-right: 3rem !important;
  }
  .pe-dl-6 {
    padding-right: 4rem !important;
  }
  .pe-dl-7 {
    padding-right: 5rem !important;
  }
  .pe-dl-8 {
    padding-right: 6rem !important;
  }
  .pb-dl-0 {
    padding-bottom: 0 !important;
  }
  .pb-dl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-dl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-dl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-dl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-dl-5 {
    padding-bottom: 3rem !important;
  }
  .pb-dl-6 {
    padding-bottom: 4rem !important;
  }
  .pb-dl-7 {
    padding-bottom: 5rem !important;
  }
  .pb-dl-8 {
    padding-bottom: 6rem !important;
  }
  .ps-dl-0 {
    padding-left: 0 !important;
  }
  .ps-dl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-dl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-dl-3 {
    padding-left: 1rem !important;
  }
  .ps-dl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-dl-5 {
    padding-left: 3rem !important;
  }
  .ps-dl-6 {
    padding-left: 4rem !important;
  }
  .ps-dl-7 {
    padding-left: 5rem !important;
  }
  .ps-dl-8 {
    padding-left: 6rem !important;
  }
}
@media (min-width: 1201px) {
  .d-dr-inline {
    display: inline !important;
  }
  .d-dr-inline-block {
    display: inline-block !important;
  }
  .d-dr-block {
    display: block !important;
  }
  .d-dr-grid {
    display: grid !important;
  }
  .d-dr-table {
    display: table !important;
  }
  .d-dr-table-row {
    display: table-row !important;
  }
  .d-dr-table-cell {
    display: table-cell !important;
  }
  .d-dr-flex {
    display: flex !important;
  }
  .d-dr-inline-flex {
    display: inline-flex !important;
  }
  .d-dr-none {
    display: none !important;
  }
  .flex-dr-row {
    flex-direction: row !important;
  }
  .flex-dr-column {
    flex-direction: column !important;
  }
  .flex-dr-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-dr-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-dr-wrap {
    flex-wrap: wrap !important;
  }
  .flex-dr-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-dr-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-dr-start {
    justify-content: flex-start !important;
  }
  .justify-content-dr-end {
    justify-content: flex-end !important;
  }
  .justify-content-dr-center {
    justify-content: center !important;
  }
  .justify-content-dr-between {
    justify-content: space-between !important;
  }
  .justify-content-dr-around {
    justify-content: space-around !important;
  }
  .justify-content-dr-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-dr-start {
    align-items: flex-start !important;
  }
  .align-items-dr-end {
    align-items: flex-end !important;
  }
  .align-items-dr-center {
    align-items: center !important;
  }
  .align-items-dr-baseline {
    align-items: baseline !important;
  }
  .align-items-dr-stretch {
    align-items: stretch !important;
  }
  .m-dr-0 {
    margin: 0 !important;
  }
  .m-dr-1 {
    margin: 0.25rem !important;
  }
  .m-dr-2 {
    margin: 0.5rem !important;
  }
  .m-dr-3 {
    margin: 1rem !important;
  }
  .m-dr-4 {
    margin: 1.5rem !important;
  }
  .m-dr-5 {
    margin: 3rem !important;
  }
  .m-dr-6 {
    margin: 4rem !important;
  }
  .m-dr-7 {
    margin: 5rem !important;
  }
  .m-dr-8 {
    margin: 6rem !important;
  }
  .m-dr-auto {
    margin: auto !important;
  }
  .mx-dr-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-dr-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-dr-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-dr-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-dr-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-dr-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-dr-6 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-dr-7 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-dr-8 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-dr-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-dr-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-dr-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-dr-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-dr-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-dr-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-dr-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-dr-6 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-dr-7 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-dr-8 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-dr-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-dr-0 {
    margin-top: 0 !important;
  }
  .mt-dr-1 {
    margin-top: 0.25rem !important;
  }
  .mt-dr-2 {
    margin-top: 0.5rem !important;
  }
  .mt-dr-3 {
    margin-top: 1rem !important;
  }
  .mt-dr-4 {
    margin-top: 1.5rem !important;
  }
  .mt-dr-5 {
    margin-top: 3rem !important;
  }
  .mt-dr-6 {
    margin-top: 4rem !important;
  }
  .mt-dr-7 {
    margin-top: 5rem !important;
  }
  .mt-dr-8 {
    margin-top: 6rem !important;
  }
  .mt-dr-auto {
    margin-top: auto !important;
  }
  .me-dr-0 {
    margin-right: 0 !important;
  }
  .me-dr-1 {
    margin-right: 0.25rem !important;
  }
  .me-dr-2 {
    margin-right: 0.5rem !important;
  }
  .me-dr-3 {
    margin-right: 1rem !important;
  }
  .me-dr-4 {
    margin-right: 1.5rem !important;
  }
  .me-dr-5 {
    margin-right: 3rem !important;
  }
  .me-dr-6 {
    margin-right: 4rem !important;
  }
  .me-dr-7 {
    margin-right: 5rem !important;
  }
  .me-dr-8 {
    margin-right: 6rem !important;
  }
  .me-dr-auto {
    margin-right: auto !important;
  }
  .mb-dr-0 {
    margin-bottom: 0 !important;
  }
  .mb-dr-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-dr-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-dr-3 {
    margin-bottom: 1rem !important;
  }
  .mb-dr-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-dr-5 {
    margin-bottom: 3rem !important;
  }
  .mb-dr-6 {
    margin-bottom: 4rem !important;
  }
  .mb-dr-7 {
    margin-bottom: 5rem !important;
  }
  .mb-dr-8 {
    margin-bottom: 6rem !important;
  }
  .mb-dr-auto {
    margin-bottom: auto !important;
  }
  .ms-dr-0 {
    margin-left: 0 !important;
  }
  .ms-dr-1 {
    margin-left: 0.25rem !important;
  }
  .ms-dr-2 {
    margin-left: 0.5rem !important;
  }
  .ms-dr-3 {
    margin-left: 1rem !important;
  }
  .ms-dr-4 {
    margin-left: 1.5rem !important;
  }
  .ms-dr-5 {
    margin-left: 3rem !important;
  }
  .ms-dr-6 {
    margin-left: 4rem !important;
  }
  .ms-dr-7 {
    margin-left: 5rem !important;
  }
  .ms-dr-8 {
    margin-left: 6rem !important;
  }
  .ms-dr-auto {
    margin-left: auto !important;
  }
  .p-dr-0 {
    padding: 0 !important;
  }
  .p-dr-1 {
    padding: 0.25rem !important;
  }
  .p-dr-2 {
    padding: 0.5rem !important;
  }
  .p-dr-3 {
    padding: 1rem !important;
  }
  .p-dr-4 {
    padding: 1.5rem !important;
  }
  .p-dr-5 {
    padding: 3rem !important;
  }
  .p-dr-6 {
    padding: 4rem !important;
  }
  .p-dr-7 {
    padding: 5rem !important;
  }
  .p-dr-8 {
    padding: 6rem !important;
  }
  .px-dr-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-dr-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-dr-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-dr-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-dr-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-dr-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-dr-6 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-dr-7 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-dr-8 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .py-dr-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-dr-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-dr-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-dr-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-dr-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-dr-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-dr-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-dr-7 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-dr-8 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .pt-dr-0 {
    padding-top: 0 !important;
  }
  .pt-dr-1 {
    padding-top: 0.25rem !important;
  }
  .pt-dr-2 {
    padding-top: 0.5rem !important;
  }
  .pt-dr-3 {
    padding-top: 1rem !important;
  }
  .pt-dr-4 {
    padding-top: 1.5rem !important;
  }
  .pt-dr-5 {
    padding-top: 3rem !important;
  }
  .pt-dr-6 {
    padding-top: 4rem !important;
  }
  .pt-dr-7 {
    padding-top: 5rem !important;
  }
  .pt-dr-8 {
    padding-top: 6rem !important;
  }
  .pe-dr-0 {
    padding-right: 0 !important;
  }
  .pe-dr-1 {
    padding-right: 0.25rem !important;
  }
  .pe-dr-2 {
    padding-right: 0.5rem !important;
  }
  .pe-dr-3 {
    padding-right: 1rem !important;
  }
  .pe-dr-4 {
    padding-right: 1.5rem !important;
  }
  .pe-dr-5 {
    padding-right: 3rem !important;
  }
  .pe-dr-6 {
    padding-right: 4rem !important;
  }
  .pe-dr-7 {
    padding-right: 5rem !important;
  }
  .pe-dr-8 {
    padding-right: 6rem !important;
  }
  .pb-dr-0 {
    padding-bottom: 0 !important;
  }
  .pb-dr-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-dr-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-dr-3 {
    padding-bottom: 1rem !important;
  }
  .pb-dr-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-dr-5 {
    padding-bottom: 3rem !important;
  }
  .pb-dr-6 {
    padding-bottom: 4rem !important;
  }
  .pb-dr-7 {
    padding-bottom: 5rem !important;
  }
  .pb-dr-8 {
    padding-bottom: 6rem !important;
  }
  .ps-dr-0 {
    padding-left: 0 !important;
  }
  .ps-dr-1 {
    padding-left: 0.25rem !important;
  }
  .ps-dr-2 {
    padding-left: 0.5rem !important;
  }
  .ps-dr-3 {
    padding-left: 1rem !important;
  }
  .ps-dr-4 {
    padding-left: 1.5rem !important;
  }
  .ps-dr-5 {
    padding-left: 3rem !important;
  }
  .ps-dr-6 {
    padding-left: 4rem !important;
  }
  .ps-dr-7 {
    padding-left: 5rem !important;
  }
  .ps-dr-8 {
    padding-left: 6rem !important;
  }
}
@media (min-width: 835px) {
  .d-fl-inline {
    display: inline !important;
  }
  .d-fl-inline-block {
    display: inline-block !important;
  }
  .d-fl-block {
    display: block !important;
  }
  .d-fl-grid {
    display: grid !important;
  }
  .d-fl-table {
    display: table !important;
  }
  .d-fl-table-row {
    display: table-row !important;
  }
  .d-fl-table-cell {
    display: table-cell !important;
  }
  .d-fl-flex {
    display: flex !important;
  }
  .d-fl-inline-flex {
    display: inline-flex !important;
  }
  .d-fl-none {
    display: none !important;
  }
  .flex-fl-row {
    flex-direction: row !important;
  }
  .flex-fl-column {
    flex-direction: column !important;
  }
  .flex-fl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-fl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-fl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-fl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-fl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-fl-start {
    justify-content: flex-start !important;
  }
  .justify-content-fl-end {
    justify-content: flex-end !important;
  }
  .justify-content-fl-center {
    justify-content: center !important;
  }
  .justify-content-fl-between {
    justify-content: space-between !important;
  }
  .justify-content-fl-around {
    justify-content: space-around !important;
  }
  .justify-content-fl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-fl-start {
    align-items: flex-start !important;
  }
  .align-items-fl-end {
    align-items: flex-end !important;
  }
  .align-items-fl-center {
    align-items: center !important;
  }
  .align-items-fl-baseline {
    align-items: baseline !important;
  }
  .align-items-fl-stretch {
    align-items: stretch !important;
  }
  .m-fl-0 {
    margin: 0 !important;
  }
  .m-fl-1 {
    margin: 0.25rem !important;
  }
  .m-fl-2 {
    margin: 0.5rem !important;
  }
  .m-fl-3 {
    margin: 1rem !important;
  }
  .m-fl-4 {
    margin: 1.5rem !important;
  }
  .m-fl-5 {
    margin: 3rem !important;
  }
  .m-fl-6 {
    margin: 4rem !important;
  }
  .m-fl-7 {
    margin: 5rem !important;
  }
  .m-fl-8 {
    margin: 6rem !important;
  }
  .m-fl-auto {
    margin: auto !important;
  }
  .mx-fl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-fl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-fl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-fl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-fl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-fl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-fl-6 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-fl-7 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-fl-8 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-fl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-fl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-fl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-fl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-fl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-fl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-fl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-fl-6 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-fl-7 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-fl-8 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-fl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-fl-0 {
    margin-top: 0 !important;
  }
  .mt-fl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-fl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-fl-3 {
    margin-top: 1rem !important;
  }
  .mt-fl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-fl-5 {
    margin-top: 3rem !important;
  }
  .mt-fl-6 {
    margin-top: 4rem !important;
  }
  .mt-fl-7 {
    margin-top: 5rem !important;
  }
  .mt-fl-8 {
    margin-top: 6rem !important;
  }
  .mt-fl-auto {
    margin-top: auto !important;
  }
  .me-fl-0 {
    margin-right: 0 !important;
  }
  .me-fl-1 {
    margin-right: 0.25rem !important;
  }
  .me-fl-2 {
    margin-right: 0.5rem !important;
  }
  .me-fl-3 {
    margin-right: 1rem !important;
  }
  .me-fl-4 {
    margin-right: 1.5rem !important;
  }
  .me-fl-5 {
    margin-right: 3rem !important;
  }
  .me-fl-6 {
    margin-right: 4rem !important;
  }
  .me-fl-7 {
    margin-right: 5rem !important;
  }
  .me-fl-8 {
    margin-right: 6rem !important;
  }
  .me-fl-auto {
    margin-right: auto !important;
  }
  .mb-fl-0 {
    margin-bottom: 0 !important;
  }
  .mb-fl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-fl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-fl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-fl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-fl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-fl-6 {
    margin-bottom: 4rem !important;
  }
  .mb-fl-7 {
    margin-bottom: 5rem !important;
  }
  .mb-fl-8 {
    margin-bottom: 6rem !important;
  }
  .mb-fl-auto {
    margin-bottom: auto !important;
  }
  .ms-fl-0 {
    margin-left: 0 !important;
  }
  .ms-fl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-fl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-fl-3 {
    margin-left: 1rem !important;
  }
  .ms-fl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-fl-5 {
    margin-left: 3rem !important;
  }
  .ms-fl-6 {
    margin-left: 4rem !important;
  }
  .ms-fl-7 {
    margin-left: 5rem !important;
  }
  .ms-fl-8 {
    margin-left: 6rem !important;
  }
  .ms-fl-auto {
    margin-left: auto !important;
  }
  .p-fl-0 {
    padding: 0 !important;
  }
  .p-fl-1 {
    padding: 0.25rem !important;
  }
  .p-fl-2 {
    padding: 0.5rem !important;
  }
  .p-fl-3 {
    padding: 1rem !important;
  }
  .p-fl-4 {
    padding: 1.5rem !important;
  }
  .p-fl-5 {
    padding: 3rem !important;
  }
  .p-fl-6 {
    padding: 4rem !important;
  }
  .p-fl-7 {
    padding: 5rem !important;
  }
  .p-fl-8 {
    padding: 6rem !important;
  }
  .px-fl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-fl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-fl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-fl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-fl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-fl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-fl-6 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-fl-7 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-fl-8 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .py-fl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-fl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-fl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-fl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-fl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-fl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-fl-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-fl-7 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-fl-8 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .pt-fl-0 {
    padding-top: 0 !important;
  }
  .pt-fl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-fl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-fl-3 {
    padding-top: 1rem !important;
  }
  .pt-fl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-fl-5 {
    padding-top: 3rem !important;
  }
  .pt-fl-6 {
    padding-top: 4rem !important;
  }
  .pt-fl-7 {
    padding-top: 5rem !important;
  }
  .pt-fl-8 {
    padding-top: 6rem !important;
  }
  .pe-fl-0 {
    padding-right: 0 !important;
  }
  .pe-fl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-fl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-fl-3 {
    padding-right: 1rem !important;
  }
  .pe-fl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-fl-5 {
    padding-right: 3rem !important;
  }
  .pe-fl-6 {
    padding-right: 4rem !important;
  }
  .pe-fl-7 {
    padding-right: 5rem !important;
  }
  .pe-fl-8 {
    padding-right: 6rem !important;
  }
  .pb-fl-0 {
    padding-bottom: 0 !important;
  }
  .pb-fl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-fl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-fl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-fl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-fl-5 {
    padding-bottom: 3rem !important;
  }
  .pb-fl-6 {
    padding-bottom: 4rem !important;
  }
  .pb-fl-7 {
    padding-bottom: 5rem !important;
  }
  .pb-fl-8 {
    padding-bottom: 6rem !important;
  }
  .ps-fl-0 {
    padding-left: 0 !important;
  }
  .ps-fl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-fl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-fl-3 {
    padding-left: 1rem !important;
  }
  .ps-fl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-fl-5 {
    padding-left: 3rem !important;
  }
  .ps-fl-6 {
    padding-left: 4rem !important;
  }
  .ps-fl-7 {
    padding-left: 5rem !important;
  }
  .ps-fl-8 {
    padding-left: 6rem !important;
  }
}
@media (min-width: 835px) {
  .d-ct-inline {
    display: inline !important;
  }
  .d-ct-inline-block {
    display: inline-block !important;
  }
  .d-ct-block {
    display: block !important;
  }
  .d-ct-grid {
    display: grid !important;
  }
  .d-ct-table {
    display: table !important;
  }
  .d-ct-table-row {
    display: table-row !important;
  }
  .d-ct-table-cell {
    display: table-cell !important;
  }
  .d-ct-flex {
    display: flex !important;
  }
  .d-ct-inline-flex {
    display: inline-flex !important;
  }
  .d-ct-none {
    display: none !important;
  }
  .flex-ct-row {
    flex-direction: row !important;
  }
  .flex-ct-column {
    flex-direction: column !important;
  }
  .flex-ct-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-ct-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-ct-wrap {
    flex-wrap: wrap !important;
  }
  .flex-ct-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-ct-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-ct-start {
    justify-content: flex-start !important;
  }
  .justify-content-ct-end {
    justify-content: flex-end !important;
  }
  .justify-content-ct-center {
    justify-content: center !important;
  }
  .justify-content-ct-between {
    justify-content: space-between !important;
  }
  .justify-content-ct-around {
    justify-content: space-around !important;
  }
  .justify-content-ct-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-ct-start {
    align-items: flex-start !important;
  }
  .align-items-ct-end {
    align-items: flex-end !important;
  }
  .align-items-ct-center {
    align-items: center !important;
  }
  .align-items-ct-baseline {
    align-items: baseline !important;
  }
  .align-items-ct-stretch {
    align-items: stretch !important;
  }
  .m-ct-0 {
    margin: 0 !important;
  }
  .m-ct-1 {
    margin: 0.25rem !important;
  }
  .m-ct-2 {
    margin: 0.5rem !important;
  }
  .m-ct-3 {
    margin: 1rem !important;
  }
  .m-ct-4 {
    margin: 1.5rem !important;
  }
  .m-ct-5 {
    margin: 3rem !important;
  }
  .m-ct-6 {
    margin: 4rem !important;
  }
  .m-ct-7 {
    margin: 5rem !important;
  }
  .m-ct-8 {
    margin: 6rem !important;
  }
  .m-ct-auto {
    margin: auto !important;
  }
  .mx-ct-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-ct-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-ct-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-ct-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-ct-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-ct-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-ct-6 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-ct-7 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-ct-8 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-ct-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-ct-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-ct-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-ct-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-ct-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-ct-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-ct-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-ct-6 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-ct-7 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-ct-8 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-ct-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-ct-0 {
    margin-top: 0 !important;
  }
  .mt-ct-1 {
    margin-top: 0.25rem !important;
  }
  .mt-ct-2 {
    margin-top: 0.5rem !important;
  }
  .mt-ct-3 {
    margin-top: 1rem !important;
  }
  .mt-ct-4 {
    margin-top: 1.5rem !important;
  }
  .mt-ct-5 {
    margin-top: 3rem !important;
  }
  .mt-ct-6 {
    margin-top: 4rem !important;
  }
  .mt-ct-7 {
    margin-top: 5rem !important;
  }
  .mt-ct-8 {
    margin-top: 6rem !important;
  }
  .mt-ct-auto {
    margin-top: auto !important;
  }
  .me-ct-0 {
    margin-right: 0 !important;
  }
  .me-ct-1 {
    margin-right: 0.25rem !important;
  }
  .me-ct-2 {
    margin-right: 0.5rem !important;
  }
  .me-ct-3 {
    margin-right: 1rem !important;
  }
  .me-ct-4 {
    margin-right: 1.5rem !important;
  }
  .me-ct-5 {
    margin-right: 3rem !important;
  }
  .me-ct-6 {
    margin-right: 4rem !important;
  }
  .me-ct-7 {
    margin-right: 5rem !important;
  }
  .me-ct-8 {
    margin-right: 6rem !important;
  }
  .me-ct-auto {
    margin-right: auto !important;
  }
  .mb-ct-0 {
    margin-bottom: 0 !important;
  }
  .mb-ct-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-ct-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-ct-3 {
    margin-bottom: 1rem !important;
  }
  .mb-ct-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-ct-5 {
    margin-bottom: 3rem !important;
  }
  .mb-ct-6 {
    margin-bottom: 4rem !important;
  }
  .mb-ct-7 {
    margin-bottom: 5rem !important;
  }
  .mb-ct-8 {
    margin-bottom: 6rem !important;
  }
  .mb-ct-auto {
    margin-bottom: auto !important;
  }
  .ms-ct-0 {
    margin-left: 0 !important;
  }
  .ms-ct-1 {
    margin-left: 0.25rem !important;
  }
  .ms-ct-2 {
    margin-left: 0.5rem !important;
  }
  .ms-ct-3 {
    margin-left: 1rem !important;
  }
  .ms-ct-4 {
    margin-left: 1.5rem !important;
  }
  .ms-ct-5 {
    margin-left: 3rem !important;
  }
  .ms-ct-6 {
    margin-left: 4rem !important;
  }
  .ms-ct-7 {
    margin-left: 5rem !important;
  }
  .ms-ct-8 {
    margin-left: 6rem !important;
  }
  .ms-ct-auto {
    margin-left: auto !important;
  }
  .p-ct-0 {
    padding: 0 !important;
  }
  .p-ct-1 {
    padding: 0.25rem !important;
  }
  .p-ct-2 {
    padding: 0.5rem !important;
  }
  .p-ct-3 {
    padding: 1rem !important;
  }
  .p-ct-4 {
    padding: 1.5rem !important;
  }
  .p-ct-5 {
    padding: 3rem !important;
  }
  .p-ct-6 {
    padding: 4rem !important;
  }
  .p-ct-7 {
    padding: 5rem !important;
  }
  .p-ct-8 {
    padding: 6rem !important;
  }
  .px-ct-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-ct-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-ct-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-ct-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-ct-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-ct-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-ct-6 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-ct-7 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-ct-8 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .py-ct-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-ct-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-ct-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-ct-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-ct-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-ct-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-ct-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-ct-7 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-ct-8 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .pt-ct-0 {
    padding-top: 0 !important;
  }
  .pt-ct-1 {
    padding-top: 0.25rem !important;
  }
  .pt-ct-2 {
    padding-top: 0.5rem !important;
  }
  .pt-ct-3 {
    padding-top: 1rem !important;
  }
  .pt-ct-4 {
    padding-top: 1.5rem !important;
  }
  .pt-ct-5 {
    padding-top: 3rem !important;
  }
  .pt-ct-6 {
    padding-top: 4rem !important;
  }
  .pt-ct-7 {
    padding-top: 5rem !important;
  }
  .pt-ct-8 {
    padding-top: 6rem !important;
  }
  .pe-ct-0 {
    padding-right: 0 !important;
  }
  .pe-ct-1 {
    padding-right: 0.25rem !important;
  }
  .pe-ct-2 {
    padding-right: 0.5rem !important;
  }
  .pe-ct-3 {
    padding-right: 1rem !important;
  }
  .pe-ct-4 {
    padding-right: 1.5rem !important;
  }
  .pe-ct-5 {
    padding-right: 3rem !important;
  }
  .pe-ct-6 {
    padding-right: 4rem !important;
  }
  .pe-ct-7 {
    padding-right: 5rem !important;
  }
  .pe-ct-8 {
    padding-right: 6rem !important;
  }
  .pb-ct-0 {
    padding-bottom: 0 !important;
  }
  .pb-ct-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-ct-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-ct-3 {
    padding-bottom: 1rem !important;
  }
  .pb-ct-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-ct-5 {
    padding-bottom: 3rem !important;
  }
  .pb-ct-6 {
    padding-bottom: 4rem !important;
  }
  .pb-ct-7 {
    padding-bottom: 5rem !important;
  }
  .pb-ct-8 {
    padding-bottom: 6rem !important;
  }
  .ps-ct-0 {
    padding-left: 0 !important;
  }
  .ps-ct-1 {
    padding-left: 0.25rem !important;
  }
  .ps-ct-2 {
    padding-left: 0.5rem !important;
  }
  .ps-ct-3 {
    padding-left: 1rem !important;
  }
  .ps-ct-4 {
    padding-left: 1.5rem !important;
  }
  .ps-ct-5 {
    padding-left: 3rem !important;
  }
  .ps-ct-6 {
    padding-left: 4rem !important;
  }
  .ps-ct-7 {
    padding-left: 5rem !important;
  }
  .ps-ct-8 {
    padding-left: 6rem !important;
  }
}
.row-cols {
  --bxi-gutter-x: 1.5rem;
  --bxi-gutter-y: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bxi-gutter-y) * -1);
  margin-left: calc(var(--bxi-gutter-x) * -1);
}
.row-cols .box {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-top: var(--bxi-gutter-y);
  padding-left: calc(var(--bxi-gutter-x) * 1);
}

@media (min-width: 0px) {
  .row-cols-1 .box {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-2 .box {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-3 .box {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-4 .box {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-5 .box {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-6 .box {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .g-0,
  .gx-0 {
    --bxi-gutter-x: 0;
  }
  .g-0,
  .gy-0 {
    --bxi-gutter-y: 0;
  }
  .g-1,
  .gx-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .g-1,
  .gy-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .g-2,
  .gx-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .g-2,
  .gy-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .g-3,
  .gx-3 {
    --bxi-gutter-x: 1rem;
  }
  .g-3,
  .gy-3 {
    --bxi-gutter-y: 1rem;
  }
  .g-4,
  .gx-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .g-4,
  .gy-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .g-5,
  .gx-5 {
    --bxi-gutter-x: 3rem;
  }
  .g-5,
  .gy-5 {
    --bxi-gutter-y: 3rem;
  }
  .g-6,
  .gx-6 {
    --bxi-gutter-x: 4rem;
  }
  .g-6,
  .gy-6 {
    --bxi-gutter-y: 4rem;
  }
  .g-7,
  .gx-7 {
    --bxi-gutter-x: 5rem;
  }
  .g-7,
  .gy-7 {
    --bxi-gutter-y: 5rem;
  }
  .g-8,
  .gx-8 {
    --bxi-gutter-x: 6rem;
  }
  .g-8,
  .gy-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 641px) {
  .row-cols-sm-1 .box {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 .box {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 .box {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 .box {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 .box {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 .box {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bxi-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bxi-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bxi-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bxi-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bxi-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bxi-gutter-y: 3rem;
  }
  .g-sm-6,
  .gx-sm-6 {
    --bxi-gutter-x: 4rem;
  }
  .g-sm-6,
  .gy-sm-6 {
    --bxi-gutter-y: 4rem;
  }
  .g-sm-7,
  .gx-sm-7 {
    --bxi-gutter-x: 5rem;
  }
  .g-sm-7,
  .gy-sm-7 {
    --bxi-gutter-y: 5rem;
  }
  .g-sm-8,
  .gx-sm-8 {
    --bxi-gutter-x: 6rem;
  }
  .g-sm-8,
  .gy-sm-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 835px) {
  .row-cols-md-1 .box {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 .box {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 .box {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 .box {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 .box {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 .box {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bxi-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bxi-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bxi-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bxi-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bxi-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bxi-gutter-y: 3rem;
  }
  .g-md-6,
  .gx-md-6 {
    --bxi-gutter-x: 4rem;
  }
  .g-md-6,
  .gy-md-6 {
    --bxi-gutter-y: 4rem;
  }
  .g-md-7,
  .gx-md-7 {
    --bxi-gutter-x: 5rem;
  }
  .g-md-7,
  .gy-md-7 {
    --bxi-gutter-y: 5rem;
  }
  .g-md-8,
  .gx-md-8 {
    --bxi-gutter-x: 6rem;
  }
  .g-md-8,
  .gy-md-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1001px) {
  .row-cols-lg-1 .box {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 .box {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 .box {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 .box {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 .box {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 .box {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bxi-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bxi-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bxi-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bxi-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bxi-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bxi-gutter-y: 3rem;
  }
  .g-lg-6,
  .gx-lg-6 {
    --bxi-gutter-x: 4rem;
  }
  .g-lg-6,
  .gy-lg-6 {
    --bxi-gutter-y: 4rem;
  }
  .g-lg-7,
  .gx-lg-7 {
    --bxi-gutter-x: 5rem;
  }
  .g-lg-7,
  .gy-lg-7 {
    --bxi-gutter-y: 5rem;
  }
  .g-lg-8,
  .gx-lg-8 {
    --bxi-gutter-x: 6rem;
  }
  .g-lg-8,
  .gy-lg-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1201px) {
  .row-cols-xl-1 .box {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 .box {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 .box {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 .box {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 .box {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 .box {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bxi-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bxi-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bxi-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bxi-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bxi-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bxi-gutter-y: 3rem;
  }
  .g-xl-6,
  .gx-xl-6 {
    --bxi-gutter-x: 4rem;
  }
  .g-xl-6,
  .gy-xl-6 {
    --bxi-gutter-y: 4rem;
  }
  .g-xl-7,
  .gx-xl-7 {
    --bxi-gutter-x: 5rem;
  }
  .g-xl-7,
  .gy-xl-7 {
    --bxi-gutter-y: 5rem;
  }
  .g-xl-8,
  .gx-xl-8 {
    --bxi-gutter-x: 6rem;
  }
  .g-xl-8,
  .gy-xl-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1401px) {
  .row-cols-ds-1 .box {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-ds-2 .box {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-ds-3 .box {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-ds-4 .box {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-ds-5 .box {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-ds-6 .box {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .g-ds-0,
  .gx-ds-0 {
    --bxi-gutter-x: 0;
  }
  .g-ds-0,
  .gy-ds-0 {
    --bxi-gutter-y: 0;
  }
  .g-ds-1,
  .gx-ds-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .g-ds-1,
  .gy-ds-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .g-ds-2,
  .gx-ds-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .g-ds-2,
  .gy-ds-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .g-ds-3,
  .gx-ds-3 {
    --bxi-gutter-x: 1rem;
  }
  .g-ds-3,
  .gy-ds-3 {
    --bxi-gutter-y: 1rem;
  }
  .g-ds-4,
  .gx-ds-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .g-ds-4,
  .gy-ds-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .g-ds-5,
  .gx-ds-5 {
    --bxi-gutter-x: 3rem;
  }
  .g-ds-5,
  .gy-ds-5 {
    --bxi-gutter-y: 3rem;
  }
  .g-ds-6,
  .gx-ds-6 {
    --bxi-gutter-x: 4rem;
  }
  .g-ds-6,
  .gy-ds-6 {
    --bxi-gutter-y: 4rem;
  }
  .g-ds-7,
  .gx-ds-7 {
    --bxi-gutter-x: 5rem;
  }
  .g-ds-7,
  .gy-ds-7 {
    --bxi-gutter-y: 5rem;
  }
  .g-ds-8,
  .gx-ds-8 {
    --bxi-gutter-x: 6rem;
  }
  .g-ds-8,
  .gy-ds-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1601px) {
  .row-cols-dm-1 .box {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-dm-2 .box {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-dm-3 .box {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-dm-4 .box {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-dm-5 .box {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-dm-6 .box {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .g-dm-0,
  .gx-dm-0 {
    --bxi-gutter-x: 0;
  }
  .g-dm-0,
  .gy-dm-0 {
    --bxi-gutter-y: 0;
  }
  .g-dm-1,
  .gx-dm-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .g-dm-1,
  .gy-dm-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .g-dm-2,
  .gx-dm-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .g-dm-2,
  .gy-dm-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .g-dm-3,
  .gx-dm-3 {
    --bxi-gutter-x: 1rem;
  }
  .g-dm-3,
  .gy-dm-3 {
    --bxi-gutter-y: 1rem;
  }
  .g-dm-4,
  .gx-dm-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .g-dm-4,
  .gy-dm-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .g-dm-5,
  .gx-dm-5 {
    --bxi-gutter-x: 3rem;
  }
  .g-dm-5,
  .gy-dm-5 {
    --bxi-gutter-y: 3rem;
  }
  .g-dm-6,
  .gx-dm-6 {
    --bxi-gutter-x: 4rem;
  }
  .g-dm-6,
  .gy-dm-6 {
    --bxi-gutter-y: 4rem;
  }
  .g-dm-7,
  .gx-dm-7 {
    --bxi-gutter-x: 5rem;
  }
  .g-dm-7,
  .gy-dm-7 {
    --bxi-gutter-y: 5rem;
  }
  .g-dm-8,
  .gx-dm-8 {
    --bxi-gutter-x: 6rem;
  }
  .g-dm-8,
  .gy-dm-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1921px) {
  .row-cols-dl-1 .box {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-dl-2 .box {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-dl-3 .box {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-dl-4 .box {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-dl-5 .box {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-dl-6 .box {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .g-dl-0,
  .gx-dl-0 {
    --bxi-gutter-x: 0;
  }
  .g-dl-0,
  .gy-dl-0 {
    --bxi-gutter-y: 0;
  }
  .g-dl-1,
  .gx-dl-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .g-dl-1,
  .gy-dl-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .g-dl-2,
  .gx-dl-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .g-dl-2,
  .gy-dl-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .g-dl-3,
  .gx-dl-3 {
    --bxi-gutter-x: 1rem;
  }
  .g-dl-3,
  .gy-dl-3 {
    --bxi-gutter-y: 1rem;
  }
  .g-dl-4,
  .gx-dl-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .g-dl-4,
  .gy-dl-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .g-dl-5,
  .gx-dl-5 {
    --bxi-gutter-x: 3rem;
  }
  .g-dl-5,
  .gy-dl-5 {
    --bxi-gutter-y: 3rem;
  }
  .g-dl-6,
  .gx-dl-6 {
    --bxi-gutter-x: 4rem;
  }
  .g-dl-6,
  .gy-dl-6 {
    --bxi-gutter-y: 4rem;
  }
  .g-dl-7,
  .gx-dl-7 {
    --bxi-gutter-x: 5rem;
  }
  .g-dl-7,
  .gy-dl-7 {
    --bxi-gutter-y: 5rem;
  }
  .g-dl-8,
  .gx-dl-8 {
    --bxi-gutter-x: 6rem;
  }
  .g-dl-8,
  .gy-dl-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1201px) {
  .row-cols-dr-1 .box {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-dr-2 .box {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-dr-3 .box {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-dr-4 .box {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-dr-5 .box {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-dr-6 .box {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .g-dr-0,
  .gx-dr-0 {
    --bxi-gutter-x: 0;
  }
  .g-dr-0,
  .gy-dr-0 {
    --bxi-gutter-y: 0;
  }
  .g-dr-1,
  .gx-dr-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .g-dr-1,
  .gy-dr-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .g-dr-2,
  .gx-dr-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .g-dr-2,
  .gy-dr-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .g-dr-3,
  .gx-dr-3 {
    --bxi-gutter-x: 1rem;
  }
  .g-dr-3,
  .gy-dr-3 {
    --bxi-gutter-y: 1rem;
  }
  .g-dr-4,
  .gx-dr-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .g-dr-4,
  .gy-dr-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .g-dr-5,
  .gx-dr-5 {
    --bxi-gutter-x: 3rem;
  }
  .g-dr-5,
  .gy-dr-5 {
    --bxi-gutter-y: 3rem;
  }
  .g-dr-6,
  .gx-dr-6 {
    --bxi-gutter-x: 4rem;
  }
  .g-dr-6,
  .gy-dr-6 {
    --bxi-gutter-y: 4rem;
  }
  .g-dr-7,
  .gx-dr-7 {
    --bxi-gutter-x: 5rem;
  }
  .g-dr-7,
  .gy-dr-7 {
    --bxi-gutter-y: 5rem;
  }
  .g-dr-8,
  .gx-dr-8 {
    --bxi-gutter-x: 6rem;
  }
  .g-dr-8,
  .gy-dr-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 835px) {
  .row-cols-fl-1 .box {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-fl-2 .box {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-fl-3 .box {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-fl-4 .box {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-fl-5 .box {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-fl-6 .box {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .g-fl-0,
  .gx-fl-0 {
    --bxi-gutter-x: 0;
  }
  .g-fl-0,
  .gy-fl-0 {
    --bxi-gutter-y: 0;
  }
  .g-fl-1,
  .gx-fl-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .g-fl-1,
  .gy-fl-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .g-fl-2,
  .gx-fl-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .g-fl-2,
  .gy-fl-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .g-fl-3,
  .gx-fl-3 {
    --bxi-gutter-x: 1rem;
  }
  .g-fl-3,
  .gy-fl-3 {
    --bxi-gutter-y: 1rem;
  }
  .g-fl-4,
  .gx-fl-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .g-fl-4,
  .gy-fl-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .g-fl-5,
  .gx-fl-5 {
    --bxi-gutter-x: 3rem;
  }
  .g-fl-5,
  .gy-fl-5 {
    --bxi-gutter-y: 3rem;
  }
  .g-fl-6,
  .gx-fl-6 {
    --bxi-gutter-x: 4rem;
  }
  .g-fl-6,
  .gy-fl-6 {
    --bxi-gutter-y: 4rem;
  }
  .g-fl-7,
  .gx-fl-7 {
    --bxi-gutter-x: 5rem;
  }
  .g-fl-7,
  .gy-fl-7 {
    --bxi-gutter-y: 5rem;
  }
  .g-fl-8,
  .gx-fl-8 {
    --bxi-gutter-x: 6rem;
  }
  .g-fl-8,
  .gy-fl-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 835px) {
  .row-cols-ct-1 .box {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-ct-2 .box {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-ct-3 .box {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-ct-4 .box {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-ct-5 .box {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-ct-6 .box {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .g-ct-0,
  .gx-ct-0 {
    --bxi-gutter-x: 0;
  }
  .g-ct-0,
  .gy-ct-0 {
    --bxi-gutter-y: 0;
  }
  .g-ct-1,
  .gx-ct-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .g-ct-1,
  .gy-ct-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .g-ct-2,
  .gx-ct-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .g-ct-2,
  .gy-ct-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .g-ct-3,
  .gx-ct-3 {
    --bxi-gutter-x: 1rem;
  }
  .g-ct-3,
  .gy-ct-3 {
    --bxi-gutter-y: 1rem;
  }
  .g-ct-4,
  .gx-ct-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .g-ct-4,
  .gy-ct-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .g-ct-5,
  .gx-ct-5 {
    --bxi-gutter-x: 3rem;
  }
  .g-ct-5,
  .gy-ct-5 {
    --bxi-gutter-y: 3rem;
  }
  .g-ct-6,
  .gx-ct-6 {
    --bxi-gutter-x: 4rem;
  }
  .g-ct-6,
  .gy-ct-6 {
    --bxi-gutter-y: 4rem;
  }
  .g-ct-7,
  .gx-ct-7 {
    --bxi-gutter-x: 5rem;
  }
  .g-ct-7,
  .gy-ct-7 {
    --bxi-gutter-y: 5rem;
  }
  .g-ct-8,
  .gx-ct-8 {
    --bxi-gutter-x: 6rem;
  }
  .g-ct-8,
  .gy-ct-8 {
    --bxi-gutter-y: 6rem;
  }
}
.nth-cols {
  --bxi-gutter-x: 1.5rem;
  --bxi-gutter-y: 1.5rem;
  margin-bottom: calc(var(--bxi-gutter-y) * -1);
}
.nth-cols .box {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  margin-right: var(--bxi-gutter-x);
  margin-bottom: var(--bxi-gutter-y);
}

@media (min-width: 0px) {
  .nth-cols-1 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1);
  }
  .nth-cols-1 .box:nth-child(1n) {
    margin-right: 0;
  }
  .nth-cols-1 .box:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-2 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2);
  }
  .nth-cols-2 .box:nth-child(2n) {
    margin-right: 0;
  }
  .nth-cols-2 .box:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-3 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3);
  }
  .nth-cols-3 .box:nth-child(3n) {
    margin-right: 0;
  }
  .nth-cols-3 .box:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-4 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4);
  }
  .nth-cols-4 .box:nth-child(4n) {
    margin-right: 0;
  }
  .nth-cols-4 .box:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-5 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5);
  }
  .nth-cols-5 .box:nth-child(5n) {
    margin-right: 0;
  }
  .nth-cols-5 .box:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-6 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6);
  }
  .nth-cols-6 .box:nth-child(6n) {
    margin-right: 0;
  }
  .nth-cols-6 .box:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .ng-0,
  .ngx-0 {
    --bxi-gutter-x: 0.01px;
  }
  .ng-0,
  .ngy-0 {
    --bxi-gutter-y: 0.01px;
  }
  .ng-1,
  .ngx-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .ng-1,
  .ngy-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .ng-2,
  .ngx-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .ng-2,
  .ngy-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .ng-3,
  .ngx-3 {
    --bxi-gutter-x: 1rem;
  }
  .ng-3,
  .ngy-3 {
    --bxi-gutter-y: 1rem;
  }
  .ng-4,
  .ngx-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .ng-4,
  .ngy-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .ng-5,
  .ngx-5 {
    --bxi-gutter-x: 3rem;
  }
  .ng-5,
  .ngy-5 {
    --bxi-gutter-y: 3rem;
  }
  .ng-6,
  .ngx-6 {
    --bxi-gutter-x: 4rem;
  }
  .ng-6,
  .ngy-6 {
    --bxi-gutter-y: 4rem;
  }
  .ng-7,
  .ngx-7 {
    --bxi-gutter-x: 5rem;
  }
  .ng-7,
  .ngy-7 {
    --bxi-gutter-y: 5rem;
  }
  .ng-8,
  .ngx-8 {
    --bxi-gutter-x: 6rem;
  }
  .ng-8,
  .ngy-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 641px) {
  .nth-cols-sm-1 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1);
  }
  .nth-cols-sm-1 .box:nth-child(1n) {
    margin-right: 0;
  }
  .nth-cols-sm-1 .box:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-sm-2 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2);
  }
  .nth-cols-sm-2 .box:nth-child(2n) {
    margin-right: 0;
  }
  .nth-cols-sm-2 .box:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-sm-3 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3);
  }
  .nth-cols-sm-3 .box:nth-child(3n) {
    margin-right: 0;
  }
  .nth-cols-sm-3 .box:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-sm-4 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4);
  }
  .nth-cols-sm-4 .box:nth-child(4n) {
    margin-right: 0;
  }
  .nth-cols-sm-4 .box:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-sm-5 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5);
  }
  .nth-cols-sm-5 .box:nth-child(5n) {
    margin-right: 0;
  }
  .nth-cols-sm-5 .box:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-sm-6 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6);
  }
  .nth-cols-sm-6 .box:nth-child(6n) {
    margin-right: 0;
  }
  .nth-cols-sm-6 .box:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .ng-sm-0,
  .ngx-sm-0 {
    --bxi-gutter-x: 0.01px;
  }
  .ng-sm-0,
  .ngy-sm-0 {
    --bxi-gutter-y: 0.01px;
  }
  .ng-sm-1,
  .ngx-sm-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .ng-sm-1,
  .ngy-sm-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .ng-sm-2,
  .ngx-sm-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .ng-sm-2,
  .ngy-sm-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .ng-sm-3,
  .ngx-sm-3 {
    --bxi-gutter-x: 1rem;
  }
  .ng-sm-3,
  .ngy-sm-3 {
    --bxi-gutter-y: 1rem;
  }
  .ng-sm-4,
  .ngx-sm-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .ng-sm-4,
  .ngy-sm-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .ng-sm-5,
  .ngx-sm-5 {
    --bxi-gutter-x: 3rem;
  }
  .ng-sm-5,
  .ngy-sm-5 {
    --bxi-gutter-y: 3rem;
  }
  .ng-sm-6,
  .ngx-sm-6 {
    --bxi-gutter-x: 4rem;
  }
  .ng-sm-6,
  .ngy-sm-6 {
    --bxi-gutter-y: 4rem;
  }
  .ng-sm-7,
  .ngx-sm-7 {
    --bxi-gutter-x: 5rem;
  }
  .ng-sm-7,
  .ngy-sm-7 {
    --bxi-gutter-y: 5rem;
  }
  .ng-sm-8,
  .ngx-sm-8 {
    --bxi-gutter-x: 6rem;
  }
  .ng-sm-8,
  .ngy-sm-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 835px) {
  .nth-cols-md-1 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1);
  }
  .nth-cols-md-1 .box:nth-child(1n) {
    margin-right: 0;
  }
  .nth-cols-md-1 .box:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-md-2 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2);
  }
  .nth-cols-md-2 .box:nth-child(2n) {
    margin-right: 0;
  }
  .nth-cols-md-2 .box:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-md-3 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3);
  }
  .nth-cols-md-3 .box:nth-child(3n) {
    margin-right: 0;
  }
  .nth-cols-md-3 .box:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-md-4 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4);
  }
  .nth-cols-md-4 .box:nth-child(4n) {
    margin-right: 0;
  }
  .nth-cols-md-4 .box:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-md-5 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5);
  }
  .nth-cols-md-5 .box:nth-child(5n) {
    margin-right: 0;
  }
  .nth-cols-md-5 .box:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-md-6 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6);
  }
  .nth-cols-md-6 .box:nth-child(6n) {
    margin-right: 0;
  }
  .nth-cols-md-6 .box:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .ng-md-0,
  .ngx-md-0 {
    --bxi-gutter-x: 0.01px;
  }
  .ng-md-0,
  .ngy-md-0 {
    --bxi-gutter-y: 0.01px;
  }
  .ng-md-1,
  .ngx-md-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .ng-md-1,
  .ngy-md-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .ng-md-2,
  .ngx-md-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .ng-md-2,
  .ngy-md-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .ng-md-3,
  .ngx-md-3 {
    --bxi-gutter-x: 1rem;
  }
  .ng-md-3,
  .ngy-md-3 {
    --bxi-gutter-y: 1rem;
  }
  .ng-md-4,
  .ngx-md-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .ng-md-4,
  .ngy-md-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .ng-md-5,
  .ngx-md-5 {
    --bxi-gutter-x: 3rem;
  }
  .ng-md-5,
  .ngy-md-5 {
    --bxi-gutter-y: 3rem;
  }
  .ng-md-6,
  .ngx-md-6 {
    --bxi-gutter-x: 4rem;
  }
  .ng-md-6,
  .ngy-md-6 {
    --bxi-gutter-y: 4rem;
  }
  .ng-md-7,
  .ngx-md-7 {
    --bxi-gutter-x: 5rem;
  }
  .ng-md-7,
  .ngy-md-7 {
    --bxi-gutter-y: 5rem;
  }
  .ng-md-8,
  .ngx-md-8 {
    --bxi-gutter-x: 6rem;
  }
  .ng-md-8,
  .ngy-md-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1001px) {
  .nth-cols-lg-1 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1);
  }
  .nth-cols-lg-1 .box:nth-child(1n) {
    margin-right: 0;
  }
  .nth-cols-lg-1 .box:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-lg-2 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2);
  }
  .nth-cols-lg-2 .box:nth-child(2n) {
    margin-right: 0;
  }
  .nth-cols-lg-2 .box:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-lg-3 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3);
  }
  .nth-cols-lg-3 .box:nth-child(3n) {
    margin-right: 0;
  }
  .nth-cols-lg-3 .box:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-lg-4 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4);
  }
  .nth-cols-lg-4 .box:nth-child(4n) {
    margin-right: 0;
  }
  .nth-cols-lg-4 .box:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-lg-5 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5);
  }
  .nth-cols-lg-5 .box:nth-child(5n) {
    margin-right: 0;
  }
  .nth-cols-lg-5 .box:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-lg-6 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6);
  }
  .nth-cols-lg-6 .box:nth-child(6n) {
    margin-right: 0;
  }
  .nth-cols-lg-6 .box:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .ng-lg-0,
  .ngx-lg-0 {
    --bxi-gutter-x: 0.01px;
  }
  .ng-lg-0,
  .ngy-lg-0 {
    --bxi-gutter-y: 0.01px;
  }
  .ng-lg-1,
  .ngx-lg-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .ng-lg-1,
  .ngy-lg-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .ng-lg-2,
  .ngx-lg-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .ng-lg-2,
  .ngy-lg-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .ng-lg-3,
  .ngx-lg-3 {
    --bxi-gutter-x: 1rem;
  }
  .ng-lg-3,
  .ngy-lg-3 {
    --bxi-gutter-y: 1rem;
  }
  .ng-lg-4,
  .ngx-lg-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .ng-lg-4,
  .ngy-lg-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .ng-lg-5,
  .ngx-lg-5 {
    --bxi-gutter-x: 3rem;
  }
  .ng-lg-5,
  .ngy-lg-5 {
    --bxi-gutter-y: 3rem;
  }
  .ng-lg-6,
  .ngx-lg-6 {
    --bxi-gutter-x: 4rem;
  }
  .ng-lg-6,
  .ngy-lg-6 {
    --bxi-gutter-y: 4rem;
  }
  .ng-lg-7,
  .ngx-lg-7 {
    --bxi-gutter-x: 5rem;
  }
  .ng-lg-7,
  .ngy-lg-7 {
    --bxi-gutter-y: 5rem;
  }
  .ng-lg-8,
  .ngx-lg-8 {
    --bxi-gutter-x: 6rem;
  }
  .ng-lg-8,
  .ngy-lg-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1201px) {
  .nth-cols-xl-1 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1);
  }
  .nth-cols-xl-1 .box:nth-child(1n) {
    margin-right: 0;
  }
  .nth-cols-xl-1 .box:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-xl-2 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2);
  }
  .nth-cols-xl-2 .box:nth-child(2n) {
    margin-right: 0;
  }
  .nth-cols-xl-2 .box:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-xl-3 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3);
  }
  .nth-cols-xl-3 .box:nth-child(3n) {
    margin-right: 0;
  }
  .nth-cols-xl-3 .box:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-xl-4 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4);
  }
  .nth-cols-xl-4 .box:nth-child(4n) {
    margin-right: 0;
  }
  .nth-cols-xl-4 .box:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-xl-5 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5);
  }
  .nth-cols-xl-5 .box:nth-child(5n) {
    margin-right: 0;
  }
  .nth-cols-xl-5 .box:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-xl-6 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6);
  }
  .nth-cols-xl-6 .box:nth-child(6n) {
    margin-right: 0;
  }
  .nth-cols-xl-6 .box:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .ng-xl-0,
  .ngx-xl-0 {
    --bxi-gutter-x: 0.01px;
  }
  .ng-xl-0,
  .ngy-xl-0 {
    --bxi-gutter-y: 0.01px;
  }
  .ng-xl-1,
  .ngx-xl-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .ng-xl-1,
  .ngy-xl-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .ng-xl-2,
  .ngx-xl-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .ng-xl-2,
  .ngy-xl-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .ng-xl-3,
  .ngx-xl-3 {
    --bxi-gutter-x: 1rem;
  }
  .ng-xl-3,
  .ngy-xl-3 {
    --bxi-gutter-y: 1rem;
  }
  .ng-xl-4,
  .ngx-xl-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .ng-xl-4,
  .ngy-xl-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .ng-xl-5,
  .ngx-xl-5 {
    --bxi-gutter-x: 3rem;
  }
  .ng-xl-5,
  .ngy-xl-5 {
    --bxi-gutter-y: 3rem;
  }
  .ng-xl-6,
  .ngx-xl-6 {
    --bxi-gutter-x: 4rem;
  }
  .ng-xl-6,
  .ngy-xl-6 {
    --bxi-gutter-y: 4rem;
  }
  .ng-xl-7,
  .ngx-xl-7 {
    --bxi-gutter-x: 5rem;
  }
  .ng-xl-7,
  .ngy-xl-7 {
    --bxi-gutter-y: 5rem;
  }
  .ng-xl-8,
  .ngx-xl-8 {
    --bxi-gutter-x: 6rem;
  }
  .ng-xl-8,
  .ngy-xl-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1401px) {
  .nth-cols-ds-1 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1);
  }
  .nth-cols-ds-1 .box:nth-child(1n) {
    margin-right: 0;
  }
  .nth-cols-ds-1 .box:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-ds-2 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2);
  }
  .nth-cols-ds-2 .box:nth-child(2n) {
    margin-right: 0;
  }
  .nth-cols-ds-2 .box:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-ds-3 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3);
  }
  .nth-cols-ds-3 .box:nth-child(3n) {
    margin-right: 0;
  }
  .nth-cols-ds-3 .box:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-ds-4 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4);
  }
  .nth-cols-ds-4 .box:nth-child(4n) {
    margin-right: 0;
  }
  .nth-cols-ds-4 .box:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-ds-5 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5);
  }
  .nth-cols-ds-5 .box:nth-child(5n) {
    margin-right: 0;
  }
  .nth-cols-ds-5 .box:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-ds-6 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6);
  }
  .nth-cols-ds-6 .box:nth-child(6n) {
    margin-right: 0;
  }
  .nth-cols-ds-6 .box:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .ng-ds-0,
  .ngx-ds-0 {
    --bxi-gutter-x: 0.01px;
  }
  .ng-ds-0,
  .ngy-ds-0 {
    --bxi-gutter-y: 0.01px;
  }
  .ng-ds-1,
  .ngx-ds-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .ng-ds-1,
  .ngy-ds-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .ng-ds-2,
  .ngx-ds-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .ng-ds-2,
  .ngy-ds-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .ng-ds-3,
  .ngx-ds-3 {
    --bxi-gutter-x: 1rem;
  }
  .ng-ds-3,
  .ngy-ds-3 {
    --bxi-gutter-y: 1rem;
  }
  .ng-ds-4,
  .ngx-ds-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .ng-ds-4,
  .ngy-ds-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .ng-ds-5,
  .ngx-ds-5 {
    --bxi-gutter-x: 3rem;
  }
  .ng-ds-5,
  .ngy-ds-5 {
    --bxi-gutter-y: 3rem;
  }
  .ng-ds-6,
  .ngx-ds-6 {
    --bxi-gutter-x: 4rem;
  }
  .ng-ds-6,
  .ngy-ds-6 {
    --bxi-gutter-y: 4rem;
  }
  .ng-ds-7,
  .ngx-ds-7 {
    --bxi-gutter-x: 5rem;
  }
  .ng-ds-7,
  .ngy-ds-7 {
    --bxi-gutter-y: 5rem;
  }
  .ng-ds-8,
  .ngx-ds-8 {
    --bxi-gutter-x: 6rem;
  }
  .ng-ds-8,
  .ngy-ds-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1601px) {
  .nth-cols-dm-1 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1);
  }
  .nth-cols-dm-1 .box:nth-child(1n) {
    margin-right: 0;
  }
  .nth-cols-dm-1 .box:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-dm-2 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2);
  }
  .nth-cols-dm-2 .box:nth-child(2n) {
    margin-right: 0;
  }
  .nth-cols-dm-2 .box:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-dm-3 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3);
  }
  .nth-cols-dm-3 .box:nth-child(3n) {
    margin-right: 0;
  }
  .nth-cols-dm-3 .box:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-dm-4 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4);
  }
  .nth-cols-dm-4 .box:nth-child(4n) {
    margin-right: 0;
  }
  .nth-cols-dm-4 .box:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-dm-5 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5);
  }
  .nth-cols-dm-5 .box:nth-child(5n) {
    margin-right: 0;
  }
  .nth-cols-dm-5 .box:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-dm-6 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6);
  }
  .nth-cols-dm-6 .box:nth-child(6n) {
    margin-right: 0;
  }
  .nth-cols-dm-6 .box:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .ng-dm-0,
  .ngx-dm-0 {
    --bxi-gutter-x: 0.01px;
  }
  .ng-dm-0,
  .ngy-dm-0 {
    --bxi-gutter-y: 0.01px;
  }
  .ng-dm-1,
  .ngx-dm-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .ng-dm-1,
  .ngy-dm-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .ng-dm-2,
  .ngx-dm-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .ng-dm-2,
  .ngy-dm-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .ng-dm-3,
  .ngx-dm-3 {
    --bxi-gutter-x: 1rem;
  }
  .ng-dm-3,
  .ngy-dm-3 {
    --bxi-gutter-y: 1rem;
  }
  .ng-dm-4,
  .ngx-dm-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .ng-dm-4,
  .ngy-dm-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .ng-dm-5,
  .ngx-dm-5 {
    --bxi-gutter-x: 3rem;
  }
  .ng-dm-5,
  .ngy-dm-5 {
    --bxi-gutter-y: 3rem;
  }
  .ng-dm-6,
  .ngx-dm-6 {
    --bxi-gutter-x: 4rem;
  }
  .ng-dm-6,
  .ngy-dm-6 {
    --bxi-gutter-y: 4rem;
  }
  .ng-dm-7,
  .ngx-dm-7 {
    --bxi-gutter-x: 5rem;
  }
  .ng-dm-7,
  .ngy-dm-7 {
    --bxi-gutter-y: 5rem;
  }
  .ng-dm-8,
  .ngx-dm-8 {
    --bxi-gutter-x: 6rem;
  }
  .ng-dm-8,
  .ngy-dm-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1921px) {
  .nth-cols-dl-1 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1);
  }
  .nth-cols-dl-1 .box:nth-child(1n) {
    margin-right: 0;
  }
  .nth-cols-dl-1 .box:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-dl-2 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2);
  }
  .nth-cols-dl-2 .box:nth-child(2n) {
    margin-right: 0;
  }
  .nth-cols-dl-2 .box:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-dl-3 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3);
  }
  .nth-cols-dl-3 .box:nth-child(3n) {
    margin-right: 0;
  }
  .nth-cols-dl-3 .box:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-dl-4 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4);
  }
  .nth-cols-dl-4 .box:nth-child(4n) {
    margin-right: 0;
  }
  .nth-cols-dl-4 .box:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-dl-5 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5);
  }
  .nth-cols-dl-5 .box:nth-child(5n) {
    margin-right: 0;
  }
  .nth-cols-dl-5 .box:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-dl-6 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6);
  }
  .nth-cols-dl-6 .box:nth-child(6n) {
    margin-right: 0;
  }
  .nth-cols-dl-6 .box:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .ng-dl-0,
  .ngx-dl-0 {
    --bxi-gutter-x: 0.01px;
  }
  .ng-dl-0,
  .ngy-dl-0 {
    --bxi-gutter-y: 0.01px;
  }
  .ng-dl-1,
  .ngx-dl-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .ng-dl-1,
  .ngy-dl-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .ng-dl-2,
  .ngx-dl-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .ng-dl-2,
  .ngy-dl-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .ng-dl-3,
  .ngx-dl-3 {
    --bxi-gutter-x: 1rem;
  }
  .ng-dl-3,
  .ngy-dl-3 {
    --bxi-gutter-y: 1rem;
  }
  .ng-dl-4,
  .ngx-dl-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .ng-dl-4,
  .ngy-dl-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .ng-dl-5,
  .ngx-dl-5 {
    --bxi-gutter-x: 3rem;
  }
  .ng-dl-5,
  .ngy-dl-5 {
    --bxi-gutter-y: 3rem;
  }
  .ng-dl-6,
  .ngx-dl-6 {
    --bxi-gutter-x: 4rem;
  }
  .ng-dl-6,
  .ngy-dl-6 {
    --bxi-gutter-y: 4rem;
  }
  .ng-dl-7,
  .ngx-dl-7 {
    --bxi-gutter-x: 5rem;
  }
  .ng-dl-7,
  .ngy-dl-7 {
    --bxi-gutter-y: 5rem;
  }
  .ng-dl-8,
  .ngx-dl-8 {
    --bxi-gutter-x: 6rem;
  }
  .ng-dl-8,
  .ngy-dl-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1201px) {
  .nth-cols-dr-1 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1);
  }
  .nth-cols-dr-1 .box:nth-child(1n) {
    margin-right: 0;
  }
  .nth-cols-dr-1 .box:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-dr-2 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2);
  }
  .nth-cols-dr-2 .box:nth-child(2n) {
    margin-right: 0;
  }
  .nth-cols-dr-2 .box:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-dr-3 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3);
  }
  .nth-cols-dr-3 .box:nth-child(3n) {
    margin-right: 0;
  }
  .nth-cols-dr-3 .box:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-dr-4 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4);
  }
  .nth-cols-dr-4 .box:nth-child(4n) {
    margin-right: 0;
  }
  .nth-cols-dr-4 .box:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-dr-5 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5);
  }
  .nth-cols-dr-5 .box:nth-child(5n) {
    margin-right: 0;
  }
  .nth-cols-dr-5 .box:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-dr-6 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6);
  }
  .nth-cols-dr-6 .box:nth-child(6n) {
    margin-right: 0;
  }
  .nth-cols-dr-6 .box:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .ng-dr-0,
  .ngx-dr-0 {
    --bxi-gutter-x: 0.01px;
  }
  .ng-dr-0,
  .ngy-dr-0 {
    --bxi-gutter-y: 0.01px;
  }
  .ng-dr-1,
  .ngx-dr-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .ng-dr-1,
  .ngy-dr-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .ng-dr-2,
  .ngx-dr-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .ng-dr-2,
  .ngy-dr-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .ng-dr-3,
  .ngx-dr-3 {
    --bxi-gutter-x: 1rem;
  }
  .ng-dr-3,
  .ngy-dr-3 {
    --bxi-gutter-y: 1rem;
  }
  .ng-dr-4,
  .ngx-dr-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .ng-dr-4,
  .ngy-dr-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .ng-dr-5,
  .ngx-dr-5 {
    --bxi-gutter-x: 3rem;
  }
  .ng-dr-5,
  .ngy-dr-5 {
    --bxi-gutter-y: 3rem;
  }
  .ng-dr-6,
  .ngx-dr-6 {
    --bxi-gutter-x: 4rem;
  }
  .ng-dr-6,
  .ngy-dr-6 {
    --bxi-gutter-y: 4rem;
  }
  .ng-dr-7,
  .ngx-dr-7 {
    --bxi-gutter-x: 5rem;
  }
  .ng-dr-7,
  .ngy-dr-7 {
    --bxi-gutter-y: 5rem;
  }
  .ng-dr-8,
  .ngx-dr-8 {
    --bxi-gutter-x: 6rem;
  }
  .ng-dr-8,
  .ngy-dr-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 835px) {
  .nth-cols-fl-1 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1);
  }
  .nth-cols-fl-1 .box:nth-child(1n) {
    margin-right: 0;
  }
  .nth-cols-fl-1 .box:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-fl-2 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2);
  }
  .nth-cols-fl-2 .box:nth-child(2n) {
    margin-right: 0;
  }
  .nth-cols-fl-2 .box:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-fl-3 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3);
  }
  .nth-cols-fl-3 .box:nth-child(3n) {
    margin-right: 0;
  }
  .nth-cols-fl-3 .box:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-fl-4 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4);
  }
  .nth-cols-fl-4 .box:nth-child(4n) {
    margin-right: 0;
  }
  .nth-cols-fl-4 .box:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-fl-5 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5);
  }
  .nth-cols-fl-5 .box:nth-child(5n) {
    margin-right: 0;
  }
  .nth-cols-fl-5 .box:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-fl-6 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6);
  }
  .nth-cols-fl-6 .box:nth-child(6n) {
    margin-right: 0;
  }
  .nth-cols-fl-6 .box:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .ng-fl-0,
  .ngx-fl-0 {
    --bxi-gutter-x: 0.01px;
  }
  .ng-fl-0,
  .ngy-fl-0 {
    --bxi-gutter-y: 0.01px;
  }
  .ng-fl-1,
  .ngx-fl-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .ng-fl-1,
  .ngy-fl-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .ng-fl-2,
  .ngx-fl-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .ng-fl-2,
  .ngy-fl-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .ng-fl-3,
  .ngx-fl-3 {
    --bxi-gutter-x: 1rem;
  }
  .ng-fl-3,
  .ngy-fl-3 {
    --bxi-gutter-y: 1rem;
  }
  .ng-fl-4,
  .ngx-fl-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .ng-fl-4,
  .ngy-fl-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .ng-fl-5,
  .ngx-fl-5 {
    --bxi-gutter-x: 3rem;
  }
  .ng-fl-5,
  .ngy-fl-5 {
    --bxi-gutter-y: 3rem;
  }
  .ng-fl-6,
  .ngx-fl-6 {
    --bxi-gutter-x: 4rem;
  }
  .ng-fl-6,
  .ngy-fl-6 {
    --bxi-gutter-y: 4rem;
  }
  .ng-fl-7,
  .ngx-fl-7 {
    --bxi-gutter-x: 5rem;
  }
  .ng-fl-7,
  .ngy-fl-7 {
    --bxi-gutter-y: 5rem;
  }
  .ng-fl-8,
  .ngx-fl-8 {
    --bxi-gutter-x: 6rem;
  }
  .ng-fl-8,
  .ngy-fl-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 835px) {
  .nth-cols-ct-1 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1);
  }
  .nth-cols-ct-1 .box:nth-child(1n) {
    margin-right: 0;
  }
  .nth-cols-ct-1 .box:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-ct-2 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2);
  }
  .nth-cols-ct-2 .box:nth-child(2n) {
    margin-right: 0;
  }
  .nth-cols-ct-2 .box:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-ct-3 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3);
  }
  .nth-cols-ct-3 .box:nth-child(3n) {
    margin-right: 0;
  }
  .nth-cols-ct-3 .box:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-ct-4 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4);
  }
  .nth-cols-ct-4 .box:nth-child(4n) {
    margin-right: 0;
  }
  .nth-cols-ct-4 .box:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-ct-5 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5);
  }
  .nth-cols-ct-5 .box:nth-child(5n) {
    margin-right: 0;
  }
  .nth-cols-ct-5 .box:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-ct-6 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6);
  }
  .nth-cols-ct-6 .box:nth-child(6n) {
    margin-right: 0;
  }
  .nth-cols-ct-6 .box:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .ng-ct-0,
  .ngx-ct-0 {
    --bxi-gutter-x: 0.01px;
  }
  .ng-ct-0,
  .ngy-ct-0 {
    --bxi-gutter-y: 0.01px;
  }
  .ng-ct-1,
  .ngx-ct-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .ng-ct-1,
  .ngy-ct-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .ng-ct-2,
  .ngx-ct-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .ng-ct-2,
  .ngy-ct-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .ng-ct-3,
  .ngx-ct-3 {
    --bxi-gutter-x: 1rem;
  }
  .ng-ct-3,
  .ngy-ct-3 {
    --bxi-gutter-y: 1rem;
  }
  .ng-ct-4,
  .ngx-ct-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .ng-ct-4,
  .ngy-ct-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .ng-ct-5,
  .ngx-ct-5 {
    --bxi-gutter-x: 3rem;
  }
  .ng-ct-5,
  .ngy-ct-5 {
    --bxi-gutter-y: 3rem;
  }
  .ng-ct-6,
  .ngx-ct-6 {
    --bxi-gutter-x: 4rem;
  }
  .ng-ct-6,
  .ngy-ct-6 {
    --bxi-gutter-y: 4rem;
  }
  .ng-ct-7,
  .ngx-ct-7 {
    --bxi-gutter-x: 5rem;
  }
  .ng-ct-7,
  .ngy-ct-7 {
    --bxi-gutter-y: 5rem;
  }
  .ng-ct-8,
  .ngx-ct-8 {
    --bxi-gutter-x: 6rem;
  }
  .ng-ct-8,
  .ngy-ct-8 {
    --bxi-gutter-y: 6rem;
  }
}
.sns-cols {
  --bxi-gutter-x: 1.5rem;
  --bxi-gutter-y: 1.5rem;
  margin-bottom: calc(var(--bxi-gutter-y) * -1);
}
.sns-cols .sns_list {
  flex-direction: row;
  flex-wrap: wrap;
}
.sns-cols .sns_list__list {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  margin-right: var(--bxi-gutter-x);
  margin-bottom: var(--bxi-gutter-y);
}

@media (min-width: 0px) {
  .sns-cols-1 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1) !important;
  }
  .sns-cols-1 .sns_list__list:nth-child(1n) {
    margin-right: 0;
  }
  .sns-cols-1 .sns_list__list:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-2 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2) !important;
  }
  .sns-cols-2 .sns_list__list:nth-child(2n) {
    margin-right: 0;
  }
  .sns-cols-2 .sns_list__list:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-3 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3) !important;
  }
  .sns-cols-3 .sns_list__list:nth-child(3n) {
    margin-right: 0;
  }
  .sns-cols-3 .sns_list__list:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-4 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4) !important;
  }
  .sns-cols-4 .sns_list__list:nth-child(4n) {
    margin-right: 0;
  }
  .sns-cols-4 .sns_list__list:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-5 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5) !important;
  }
  .sns-cols-5 .sns_list__list:nth-child(5n) {
    margin-right: 0;
  }
  .sns-cols-5 .sns_list__list:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-6 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6) !important;
  }
  .sns-cols-6 .sns_list__list:nth-child(6n) {
    margin-right: 0;
  }
  .sns-cols-6 .sns_list__list:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sg-0,
  .sgx-0 {
    --bxi-gutter-x: 0.01px;
  }
  .sg-0,
  .sgy-0 {
    --bxi-gutter-y: 0.01px;
  }
  .sg-1,
  .sgx-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .sg-1,
  .sgy-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .sg-2,
  .sgx-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .sg-2,
  .sgy-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .sg-3,
  .sgx-3 {
    --bxi-gutter-x: 1rem;
  }
  .sg-3,
  .sgy-3 {
    --bxi-gutter-y: 1rem;
  }
  .sg-4,
  .sgx-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .sg-4,
  .sgy-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .sg-5,
  .sgx-5 {
    --bxi-gutter-x: 3rem;
  }
  .sg-5,
  .sgy-5 {
    --bxi-gutter-y: 3rem;
  }
  .sg-6,
  .sgx-6 {
    --bxi-gutter-x: 4rem;
  }
  .sg-6,
  .sgy-6 {
    --bxi-gutter-y: 4rem;
  }
  .sg-7,
  .sgx-7 {
    --bxi-gutter-x: 5rem;
  }
  .sg-7,
  .sgy-7 {
    --bxi-gutter-y: 5rem;
  }
  .sg-8,
  .sgx-8 {
    --bxi-gutter-x: 6rem;
  }
  .sg-8,
  .sgy-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 641px) {
  .sns-cols-sm-1 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1) !important;
  }
  .sns-cols-sm-1 .sns_list__list:nth-child(1n) {
    margin-right: 0;
  }
  .sns-cols-sm-1 .sns_list__list:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-sm-2 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2) !important;
  }
  .sns-cols-sm-2 .sns_list__list:nth-child(2n) {
    margin-right: 0;
  }
  .sns-cols-sm-2 .sns_list__list:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-sm-3 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3) !important;
  }
  .sns-cols-sm-3 .sns_list__list:nth-child(3n) {
    margin-right: 0;
  }
  .sns-cols-sm-3 .sns_list__list:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-sm-4 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4) !important;
  }
  .sns-cols-sm-4 .sns_list__list:nth-child(4n) {
    margin-right: 0;
  }
  .sns-cols-sm-4 .sns_list__list:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-sm-5 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5) !important;
  }
  .sns-cols-sm-5 .sns_list__list:nth-child(5n) {
    margin-right: 0;
  }
  .sns-cols-sm-5 .sns_list__list:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-sm-6 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6) !important;
  }
  .sns-cols-sm-6 .sns_list__list:nth-child(6n) {
    margin-right: 0;
  }
  .sns-cols-sm-6 .sns_list__list:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sg-sm-0,
  .sgx-sm-0 {
    --bxi-gutter-x: 0.01px;
  }
  .sg-sm-0,
  .sgy-sm-0 {
    --bxi-gutter-y: 0.01px;
  }
  .sg-sm-1,
  .sgx-sm-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .sg-sm-1,
  .sgy-sm-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .sg-sm-2,
  .sgx-sm-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .sg-sm-2,
  .sgy-sm-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .sg-sm-3,
  .sgx-sm-3 {
    --bxi-gutter-x: 1rem;
  }
  .sg-sm-3,
  .sgy-sm-3 {
    --bxi-gutter-y: 1rem;
  }
  .sg-sm-4,
  .sgx-sm-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .sg-sm-4,
  .sgy-sm-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .sg-sm-5,
  .sgx-sm-5 {
    --bxi-gutter-x: 3rem;
  }
  .sg-sm-5,
  .sgy-sm-5 {
    --bxi-gutter-y: 3rem;
  }
  .sg-sm-6,
  .sgx-sm-6 {
    --bxi-gutter-x: 4rem;
  }
  .sg-sm-6,
  .sgy-sm-6 {
    --bxi-gutter-y: 4rem;
  }
  .sg-sm-7,
  .sgx-sm-7 {
    --bxi-gutter-x: 5rem;
  }
  .sg-sm-7,
  .sgy-sm-7 {
    --bxi-gutter-y: 5rem;
  }
  .sg-sm-8,
  .sgx-sm-8 {
    --bxi-gutter-x: 6rem;
  }
  .sg-sm-8,
  .sgy-sm-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 835px) {
  .sns-cols-md-1 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1) !important;
  }
  .sns-cols-md-1 .sns_list__list:nth-child(1n) {
    margin-right: 0;
  }
  .sns-cols-md-1 .sns_list__list:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-md-2 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2) !important;
  }
  .sns-cols-md-2 .sns_list__list:nth-child(2n) {
    margin-right: 0;
  }
  .sns-cols-md-2 .sns_list__list:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-md-3 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3) !important;
  }
  .sns-cols-md-3 .sns_list__list:nth-child(3n) {
    margin-right: 0;
  }
  .sns-cols-md-3 .sns_list__list:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-md-4 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4) !important;
  }
  .sns-cols-md-4 .sns_list__list:nth-child(4n) {
    margin-right: 0;
  }
  .sns-cols-md-4 .sns_list__list:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-md-5 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5) !important;
  }
  .sns-cols-md-5 .sns_list__list:nth-child(5n) {
    margin-right: 0;
  }
  .sns-cols-md-5 .sns_list__list:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-md-6 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6) !important;
  }
  .sns-cols-md-6 .sns_list__list:nth-child(6n) {
    margin-right: 0;
  }
  .sns-cols-md-6 .sns_list__list:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sg-md-0,
  .sgx-md-0 {
    --bxi-gutter-x: 0.01px;
  }
  .sg-md-0,
  .sgy-md-0 {
    --bxi-gutter-y: 0.01px;
  }
  .sg-md-1,
  .sgx-md-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .sg-md-1,
  .sgy-md-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .sg-md-2,
  .sgx-md-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .sg-md-2,
  .sgy-md-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .sg-md-3,
  .sgx-md-3 {
    --bxi-gutter-x: 1rem;
  }
  .sg-md-3,
  .sgy-md-3 {
    --bxi-gutter-y: 1rem;
  }
  .sg-md-4,
  .sgx-md-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .sg-md-4,
  .sgy-md-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .sg-md-5,
  .sgx-md-5 {
    --bxi-gutter-x: 3rem;
  }
  .sg-md-5,
  .sgy-md-5 {
    --bxi-gutter-y: 3rem;
  }
  .sg-md-6,
  .sgx-md-6 {
    --bxi-gutter-x: 4rem;
  }
  .sg-md-6,
  .sgy-md-6 {
    --bxi-gutter-y: 4rem;
  }
  .sg-md-7,
  .sgx-md-7 {
    --bxi-gutter-x: 5rem;
  }
  .sg-md-7,
  .sgy-md-7 {
    --bxi-gutter-y: 5rem;
  }
  .sg-md-8,
  .sgx-md-8 {
    --bxi-gutter-x: 6rem;
  }
  .sg-md-8,
  .sgy-md-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1001px) {
  .sns-cols-lg-1 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1) !important;
  }
  .sns-cols-lg-1 .sns_list__list:nth-child(1n) {
    margin-right: 0;
  }
  .sns-cols-lg-1 .sns_list__list:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-lg-2 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2) !important;
  }
  .sns-cols-lg-2 .sns_list__list:nth-child(2n) {
    margin-right: 0;
  }
  .sns-cols-lg-2 .sns_list__list:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-lg-3 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3) !important;
  }
  .sns-cols-lg-3 .sns_list__list:nth-child(3n) {
    margin-right: 0;
  }
  .sns-cols-lg-3 .sns_list__list:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-lg-4 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4) !important;
  }
  .sns-cols-lg-4 .sns_list__list:nth-child(4n) {
    margin-right: 0;
  }
  .sns-cols-lg-4 .sns_list__list:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-lg-5 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5) !important;
  }
  .sns-cols-lg-5 .sns_list__list:nth-child(5n) {
    margin-right: 0;
  }
  .sns-cols-lg-5 .sns_list__list:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-lg-6 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6) !important;
  }
  .sns-cols-lg-6 .sns_list__list:nth-child(6n) {
    margin-right: 0;
  }
  .sns-cols-lg-6 .sns_list__list:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sg-lg-0,
  .sgx-lg-0 {
    --bxi-gutter-x: 0.01px;
  }
  .sg-lg-0,
  .sgy-lg-0 {
    --bxi-gutter-y: 0.01px;
  }
  .sg-lg-1,
  .sgx-lg-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .sg-lg-1,
  .sgy-lg-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .sg-lg-2,
  .sgx-lg-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .sg-lg-2,
  .sgy-lg-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .sg-lg-3,
  .sgx-lg-3 {
    --bxi-gutter-x: 1rem;
  }
  .sg-lg-3,
  .sgy-lg-3 {
    --bxi-gutter-y: 1rem;
  }
  .sg-lg-4,
  .sgx-lg-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .sg-lg-4,
  .sgy-lg-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .sg-lg-5,
  .sgx-lg-5 {
    --bxi-gutter-x: 3rem;
  }
  .sg-lg-5,
  .sgy-lg-5 {
    --bxi-gutter-y: 3rem;
  }
  .sg-lg-6,
  .sgx-lg-6 {
    --bxi-gutter-x: 4rem;
  }
  .sg-lg-6,
  .sgy-lg-6 {
    --bxi-gutter-y: 4rem;
  }
  .sg-lg-7,
  .sgx-lg-7 {
    --bxi-gutter-x: 5rem;
  }
  .sg-lg-7,
  .sgy-lg-7 {
    --bxi-gutter-y: 5rem;
  }
  .sg-lg-8,
  .sgx-lg-8 {
    --bxi-gutter-x: 6rem;
  }
  .sg-lg-8,
  .sgy-lg-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1201px) {
  .sns-cols-xl-1 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1) !important;
  }
  .sns-cols-xl-1 .sns_list__list:nth-child(1n) {
    margin-right: 0;
  }
  .sns-cols-xl-1 .sns_list__list:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-xl-2 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2) !important;
  }
  .sns-cols-xl-2 .sns_list__list:nth-child(2n) {
    margin-right: 0;
  }
  .sns-cols-xl-2 .sns_list__list:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-xl-3 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3) !important;
  }
  .sns-cols-xl-3 .sns_list__list:nth-child(3n) {
    margin-right: 0;
  }
  .sns-cols-xl-3 .sns_list__list:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-xl-4 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4) !important;
  }
  .sns-cols-xl-4 .sns_list__list:nth-child(4n) {
    margin-right: 0;
  }
  .sns-cols-xl-4 .sns_list__list:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-xl-5 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5) !important;
  }
  .sns-cols-xl-5 .sns_list__list:nth-child(5n) {
    margin-right: 0;
  }
  .sns-cols-xl-5 .sns_list__list:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-xl-6 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6) !important;
  }
  .sns-cols-xl-6 .sns_list__list:nth-child(6n) {
    margin-right: 0;
  }
  .sns-cols-xl-6 .sns_list__list:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sg-xl-0,
  .sgx-xl-0 {
    --bxi-gutter-x: 0.01px;
  }
  .sg-xl-0,
  .sgy-xl-0 {
    --bxi-gutter-y: 0.01px;
  }
  .sg-xl-1,
  .sgx-xl-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .sg-xl-1,
  .sgy-xl-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .sg-xl-2,
  .sgx-xl-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .sg-xl-2,
  .sgy-xl-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .sg-xl-3,
  .sgx-xl-3 {
    --bxi-gutter-x: 1rem;
  }
  .sg-xl-3,
  .sgy-xl-3 {
    --bxi-gutter-y: 1rem;
  }
  .sg-xl-4,
  .sgx-xl-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .sg-xl-4,
  .sgy-xl-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .sg-xl-5,
  .sgx-xl-5 {
    --bxi-gutter-x: 3rem;
  }
  .sg-xl-5,
  .sgy-xl-5 {
    --bxi-gutter-y: 3rem;
  }
  .sg-xl-6,
  .sgx-xl-6 {
    --bxi-gutter-x: 4rem;
  }
  .sg-xl-6,
  .sgy-xl-6 {
    --bxi-gutter-y: 4rem;
  }
  .sg-xl-7,
  .sgx-xl-7 {
    --bxi-gutter-x: 5rem;
  }
  .sg-xl-7,
  .sgy-xl-7 {
    --bxi-gutter-y: 5rem;
  }
  .sg-xl-8,
  .sgx-xl-8 {
    --bxi-gutter-x: 6rem;
  }
  .sg-xl-8,
  .sgy-xl-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1401px) {
  .sns-cols-ds-1 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1) !important;
  }
  .sns-cols-ds-1 .sns_list__list:nth-child(1n) {
    margin-right: 0;
  }
  .sns-cols-ds-1 .sns_list__list:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-ds-2 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2) !important;
  }
  .sns-cols-ds-2 .sns_list__list:nth-child(2n) {
    margin-right: 0;
  }
  .sns-cols-ds-2 .sns_list__list:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-ds-3 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3) !important;
  }
  .sns-cols-ds-3 .sns_list__list:nth-child(3n) {
    margin-right: 0;
  }
  .sns-cols-ds-3 .sns_list__list:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-ds-4 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4) !important;
  }
  .sns-cols-ds-4 .sns_list__list:nth-child(4n) {
    margin-right: 0;
  }
  .sns-cols-ds-4 .sns_list__list:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-ds-5 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5) !important;
  }
  .sns-cols-ds-5 .sns_list__list:nth-child(5n) {
    margin-right: 0;
  }
  .sns-cols-ds-5 .sns_list__list:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-ds-6 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6) !important;
  }
  .sns-cols-ds-6 .sns_list__list:nth-child(6n) {
    margin-right: 0;
  }
  .sns-cols-ds-6 .sns_list__list:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sg-ds-0,
  .sgx-ds-0 {
    --bxi-gutter-x: 0.01px;
  }
  .sg-ds-0,
  .sgy-ds-0 {
    --bxi-gutter-y: 0.01px;
  }
  .sg-ds-1,
  .sgx-ds-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .sg-ds-1,
  .sgy-ds-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .sg-ds-2,
  .sgx-ds-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .sg-ds-2,
  .sgy-ds-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .sg-ds-3,
  .sgx-ds-3 {
    --bxi-gutter-x: 1rem;
  }
  .sg-ds-3,
  .sgy-ds-3 {
    --bxi-gutter-y: 1rem;
  }
  .sg-ds-4,
  .sgx-ds-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .sg-ds-4,
  .sgy-ds-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .sg-ds-5,
  .sgx-ds-5 {
    --bxi-gutter-x: 3rem;
  }
  .sg-ds-5,
  .sgy-ds-5 {
    --bxi-gutter-y: 3rem;
  }
  .sg-ds-6,
  .sgx-ds-6 {
    --bxi-gutter-x: 4rem;
  }
  .sg-ds-6,
  .sgy-ds-6 {
    --bxi-gutter-y: 4rem;
  }
  .sg-ds-7,
  .sgx-ds-7 {
    --bxi-gutter-x: 5rem;
  }
  .sg-ds-7,
  .sgy-ds-7 {
    --bxi-gutter-y: 5rem;
  }
  .sg-ds-8,
  .sgx-ds-8 {
    --bxi-gutter-x: 6rem;
  }
  .sg-ds-8,
  .sgy-ds-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1601px) {
  .sns-cols-dm-1 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1) !important;
  }
  .sns-cols-dm-1 .sns_list__list:nth-child(1n) {
    margin-right: 0;
  }
  .sns-cols-dm-1 .sns_list__list:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-dm-2 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2) !important;
  }
  .sns-cols-dm-2 .sns_list__list:nth-child(2n) {
    margin-right: 0;
  }
  .sns-cols-dm-2 .sns_list__list:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-dm-3 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3) !important;
  }
  .sns-cols-dm-3 .sns_list__list:nth-child(3n) {
    margin-right: 0;
  }
  .sns-cols-dm-3 .sns_list__list:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-dm-4 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4) !important;
  }
  .sns-cols-dm-4 .sns_list__list:nth-child(4n) {
    margin-right: 0;
  }
  .sns-cols-dm-4 .sns_list__list:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-dm-5 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5) !important;
  }
  .sns-cols-dm-5 .sns_list__list:nth-child(5n) {
    margin-right: 0;
  }
  .sns-cols-dm-5 .sns_list__list:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-dm-6 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6) !important;
  }
  .sns-cols-dm-6 .sns_list__list:nth-child(6n) {
    margin-right: 0;
  }
  .sns-cols-dm-6 .sns_list__list:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sg-dm-0,
  .sgx-dm-0 {
    --bxi-gutter-x: 0.01px;
  }
  .sg-dm-0,
  .sgy-dm-0 {
    --bxi-gutter-y: 0.01px;
  }
  .sg-dm-1,
  .sgx-dm-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .sg-dm-1,
  .sgy-dm-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .sg-dm-2,
  .sgx-dm-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .sg-dm-2,
  .sgy-dm-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .sg-dm-3,
  .sgx-dm-3 {
    --bxi-gutter-x: 1rem;
  }
  .sg-dm-3,
  .sgy-dm-3 {
    --bxi-gutter-y: 1rem;
  }
  .sg-dm-4,
  .sgx-dm-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .sg-dm-4,
  .sgy-dm-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .sg-dm-5,
  .sgx-dm-5 {
    --bxi-gutter-x: 3rem;
  }
  .sg-dm-5,
  .sgy-dm-5 {
    --bxi-gutter-y: 3rem;
  }
  .sg-dm-6,
  .sgx-dm-6 {
    --bxi-gutter-x: 4rem;
  }
  .sg-dm-6,
  .sgy-dm-6 {
    --bxi-gutter-y: 4rem;
  }
  .sg-dm-7,
  .sgx-dm-7 {
    --bxi-gutter-x: 5rem;
  }
  .sg-dm-7,
  .sgy-dm-7 {
    --bxi-gutter-y: 5rem;
  }
  .sg-dm-8,
  .sgx-dm-8 {
    --bxi-gutter-x: 6rem;
  }
  .sg-dm-8,
  .sgy-dm-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1921px) {
  .sns-cols-dl-1 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1) !important;
  }
  .sns-cols-dl-1 .sns_list__list:nth-child(1n) {
    margin-right: 0;
  }
  .sns-cols-dl-1 .sns_list__list:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-dl-2 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2) !important;
  }
  .sns-cols-dl-2 .sns_list__list:nth-child(2n) {
    margin-right: 0;
  }
  .sns-cols-dl-2 .sns_list__list:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-dl-3 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3) !important;
  }
  .sns-cols-dl-3 .sns_list__list:nth-child(3n) {
    margin-right: 0;
  }
  .sns-cols-dl-3 .sns_list__list:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-dl-4 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4) !important;
  }
  .sns-cols-dl-4 .sns_list__list:nth-child(4n) {
    margin-right: 0;
  }
  .sns-cols-dl-4 .sns_list__list:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-dl-5 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5) !important;
  }
  .sns-cols-dl-5 .sns_list__list:nth-child(5n) {
    margin-right: 0;
  }
  .sns-cols-dl-5 .sns_list__list:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-dl-6 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6) !important;
  }
  .sns-cols-dl-6 .sns_list__list:nth-child(6n) {
    margin-right: 0;
  }
  .sns-cols-dl-6 .sns_list__list:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sg-dl-0,
  .sgx-dl-0 {
    --bxi-gutter-x: 0.01px;
  }
  .sg-dl-0,
  .sgy-dl-0 {
    --bxi-gutter-y: 0.01px;
  }
  .sg-dl-1,
  .sgx-dl-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .sg-dl-1,
  .sgy-dl-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .sg-dl-2,
  .sgx-dl-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .sg-dl-2,
  .sgy-dl-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .sg-dl-3,
  .sgx-dl-3 {
    --bxi-gutter-x: 1rem;
  }
  .sg-dl-3,
  .sgy-dl-3 {
    --bxi-gutter-y: 1rem;
  }
  .sg-dl-4,
  .sgx-dl-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .sg-dl-4,
  .sgy-dl-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .sg-dl-5,
  .sgx-dl-5 {
    --bxi-gutter-x: 3rem;
  }
  .sg-dl-5,
  .sgy-dl-5 {
    --bxi-gutter-y: 3rem;
  }
  .sg-dl-6,
  .sgx-dl-6 {
    --bxi-gutter-x: 4rem;
  }
  .sg-dl-6,
  .sgy-dl-6 {
    --bxi-gutter-y: 4rem;
  }
  .sg-dl-7,
  .sgx-dl-7 {
    --bxi-gutter-x: 5rem;
  }
  .sg-dl-7,
  .sgy-dl-7 {
    --bxi-gutter-y: 5rem;
  }
  .sg-dl-8,
  .sgx-dl-8 {
    --bxi-gutter-x: 6rem;
  }
  .sg-dl-8,
  .sgy-dl-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1201px) {
  .sns-cols-dr-1 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1) !important;
  }
  .sns-cols-dr-1 .sns_list__list:nth-child(1n) {
    margin-right: 0;
  }
  .sns-cols-dr-1 .sns_list__list:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-dr-2 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2) !important;
  }
  .sns-cols-dr-2 .sns_list__list:nth-child(2n) {
    margin-right: 0;
  }
  .sns-cols-dr-2 .sns_list__list:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-dr-3 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3) !important;
  }
  .sns-cols-dr-3 .sns_list__list:nth-child(3n) {
    margin-right: 0;
  }
  .sns-cols-dr-3 .sns_list__list:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-dr-4 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4) !important;
  }
  .sns-cols-dr-4 .sns_list__list:nth-child(4n) {
    margin-right: 0;
  }
  .sns-cols-dr-4 .sns_list__list:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-dr-5 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5) !important;
  }
  .sns-cols-dr-5 .sns_list__list:nth-child(5n) {
    margin-right: 0;
  }
  .sns-cols-dr-5 .sns_list__list:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-dr-6 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6) !important;
  }
  .sns-cols-dr-6 .sns_list__list:nth-child(6n) {
    margin-right: 0;
  }
  .sns-cols-dr-6 .sns_list__list:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sg-dr-0,
  .sgx-dr-0 {
    --bxi-gutter-x: 0.01px;
  }
  .sg-dr-0,
  .sgy-dr-0 {
    --bxi-gutter-y: 0.01px;
  }
  .sg-dr-1,
  .sgx-dr-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .sg-dr-1,
  .sgy-dr-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .sg-dr-2,
  .sgx-dr-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .sg-dr-2,
  .sgy-dr-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .sg-dr-3,
  .sgx-dr-3 {
    --bxi-gutter-x: 1rem;
  }
  .sg-dr-3,
  .sgy-dr-3 {
    --bxi-gutter-y: 1rem;
  }
  .sg-dr-4,
  .sgx-dr-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .sg-dr-4,
  .sgy-dr-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .sg-dr-5,
  .sgx-dr-5 {
    --bxi-gutter-x: 3rem;
  }
  .sg-dr-5,
  .sgy-dr-5 {
    --bxi-gutter-y: 3rem;
  }
  .sg-dr-6,
  .sgx-dr-6 {
    --bxi-gutter-x: 4rem;
  }
  .sg-dr-6,
  .sgy-dr-6 {
    --bxi-gutter-y: 4rem;
  }
  .sg-dr-7,
  .sgx-dr-7 {
    --bxi-gutter-x: 5rem;
  }
  .sg-dr-7,
  .sgy-dr-7 {
    --bxi-gutter-y: 5rem;
  }
  .sg-dr-8,
  .sgx-dr-8 {
    --bxi-gutter-x: 6rem;
  }
  .sg-dr-8,
  .sgy-dr-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 835px) {
  .sns-cols-fl-1 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1) !important;
  }
  .sns-cols-fl-1 .sns_list__list:nth-child(1n) {
    margin-right: 0;
  }
  .sns-cols-fl-1 .sns_list__list:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-fl-2 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2) !important;
  }
  .sns-cols-fl-2 .sns_list__list:nth-child(2n) {
    margin-right: 0;
  }
  .sns-cols-fl-2 .sns_list__list:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-fl-3 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3) !important;
  }
  .sns-cols-fl-3 .sns_list__list:nth-child(3n) {
    margin-right: 0;
  }
  .sns-cols-fl-3 .sns_list__list:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-fl-4 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4) !important;
  }
  .sns-cols-fl-4 .sns_list__list:nth-child(4n) {
    margin-right: 0;
  }
  .sns-cols-fl-4 .sns_list__list:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-fl-5 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5) !important;
  }
  .sns-cols-fl-5 .sns_list__list:nth-child(5n) {
    margin-right: 0;
  }
  .sns-cols-fl-5 .sns_list__list:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-fl-6 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6) !important;
  }
  .sns-cols-fl-6 .sns_list__list:nth-child(6n) {
    margin-right: 0;
  }
  .sns-cols-fl-6 .sns_list__list:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sg-fl-0,
  .sgx-fl-0 {
    --bxi-gutter-x: 0.01px;
  }
  .sg-fl-0,
  .sgy-fl-0 {
    --bxi-gutter-y: 0.01px;
  }
  .sg-fl-1,
  .sgx-fl-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .sg-fl-1,
  .sgy-fl-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .sg-fl-2,
  .sgx-fl-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .sg-fl-2,
  .sgy-fl-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .sg-fl-3,
  .sgx-fl-3 {
    --bxi-gutter-x: 1rem;
  }
  .sg-fl-3,
  .sgy-fl-3 {
    --bxi-gutter-y: 1rem;
  }
  .sg-fl-4,
  .sgx-fl-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .sg-fl-4,
  .sgy-fl-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .sg-fl-5,
  .sgx-fl-5 {
    --bxi-gutter-x: 3rem;
  }
  .sg-fl-5,
  .sgy-fl-5 {
    --bxi-gutter-y: 3rem;
  }
  .sg-fl-6,
  .sgx-fl-6 {
    --bxi-gutter-x: 4rem;
  }
  .sg-fl-6,
  .sgy-fl-6 {
    --bxi-gutter-y: 4rem;
  }
  .sg-fl-7,
  .sgx-fl-7 {
    --bxi-gutter-x: 5rem;
  }
  .sg-fl-7,
  .sgy-fl-7 {
    --bxi-gutter-y: 5rem;
  }
  .sg-fl-8,
  .sgx-fl-8 {
    --bxi-gutter-x: 6rem;
  }
  .sg-fl-8,
  .sgy-fl-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 835px) {
  .sns-cols-ct-1 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1) !important;
  }
  .sns-cols-ct-1 .sns_list__list:nth-child(1n) {
    margin-right: 0;
  }
  .sns-cols-ct-1 .sns_list__list:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-ct-2 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2) !important;
  }
  .sns-cols-ct-2 .sns_list__list:nth-child(2n) {
    margin-right: 0;
  }
  .sns-cols-ct-2 .sns_list__list:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-ct-3 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3) !important;
  }
  .sns-cols-ct-3 .sns_list__list:nth-child(3n) {
    margin-right: 0;
  }
  .sns-cols-ct-3 .sns_list__list:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-ct-4 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4) !important;
  }
  .sns-cols-ct-4 .sns_list__list:nth-child(4n) {
    margin-right: 0;
  }
  .sns-cols-ct-4 .sns_list__list:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-ct-5 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5) !important;
  }
  .sns-cols-ct-5 .sns_list__list:nth-child(5n) {
    margin-right: 0;
  }
  .sns-cols-ct-5 .sns_list__list:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-ct-6 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6) !important;
  }
  .sns-cols-ct-6 .sns_list__list:nth-child(6n) {
    margin-right: 0;
  }
  .sns-cols-ct-6 .sns_list__list:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sg-ct-0,
  .sgx-ct-0 {
    --bxi-gutter-x: 0.01px;
  }
  .sg-ct-0,
  .sgy-ct-0 {
    --bxi-gutter-y: 0.01px;
  }
  .sg-ct-1,
  .sgx-ct-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .sg-ct-1,
  .sgy-ct-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .sg-ct-2,
  .sgx-ct-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .sg-ct-2,
  .sgy-ct-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .sg-ct-3,
  .sgx-ct-3 {
    --bxi-gutter-x: 1rem;
  }
  .sg-ct-3,
  .sgy-ct-3 {
    --bxi-gutter-y: 1rem;
  }
  .sg-ct-4,
  .sgx-ct-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .sg-ct-4,
  .sgy-ct-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .sg-ct-5,
  .sgx-ct-5 {
    --bxi-gutter-x: 3rem;
  }
  .sg-ct-5,
  .sgy-ct-5 {
    --bxi-gutter-y: 3rem;
  }
  .sg-ct-6,
  .sgx-ct-6 {
    --bxi-gutter-x: 4rem;
  }
  .sg-ct-6,
  .sgy-ct-6 {
    --bxi-gutter-y: 4rem;
  }
  .sg-ct-7,
  .sgx-ct-7 {
    --bxi-gutter-x: 5rem;
  }
  .sg-ct-7,
  .sgy-ct-7 {
    --bxi-gutter-y: 5rem;
  }
  .sg-ct-8,
  .sgx-ct-8 {
    --bxi-gutter-x: 6rem;
  }
  .sg-ct-8,
  .sgy-ct-8 {
    --bxi-gutter-y: 6rem;
  }
}
.flexbox-media {
  --bxi-gutter-y: 1.5rem;
}
.flexbox-media .box {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  margin-bottom: var(--bxi-gutter-y);
}

.flexbox-media .box {
  margin-bottom: var(--bxi-gutter-y);
}
.flexbox-media .box:last-child {
  margin-bottom: 0;
}

@media (min-width: 0px) {
  .flg-0,
  .flgx-0 {
    --bxi-gutter-x: 0.01px;
  }
  .flg-0,
  .flgy-0 {
    --bxi-gutter-y: 0.01px;
  }
  .flg-1,
  .flgx-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .flg-1,
  .flgy-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .flg-2,
  .flgx-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .flg-2,
  .flgy-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .flg-3,
  .flgx-3 {
    --bxi-gutter-x: 1rem;
  }
  .flg-3,
  .flgy-3 {
    --bxi-gutter-y: 1rem;
  }
  .flg-4,
  .flgx-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .flg-4,
  .flgy-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .flg-5,
  .flgx-5 {
    --bxi-gutter-x: 3rem;
  }
  .flg-5,
  .flgy-5 {
    --bxi-gutter-y: 3rem;
  }
  .flg-6,
  .flgx-6 {
    --bxi-gutter-x: 4rem;
  }
  .flg-6,
  .flgy-6 {
    --bxi-gutter-y: 4rem;
  }
  .flg-7,
  .flgx-7 {
    --bxi-gutter-x: 5rem;
  }
  .flg-7,
  .flgy-7 {
    --bxi-gutter-y: 5rem;
  }
  .flg-8,
  .flgx-8 {
    --bxi-gutter-x: 6rem;
  }
  .flg-8,
  .flgy-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 641px) {
  .flg-sm-0,
  .flgx-sm-0 {
    --bxi-gutter-x: 0.01px;
  }
  .flg-sm-0,
  .flgy-sm-0 {
    --bxi-gutter-y: 0.01px;
  }
  .flg-sm-1,
  .flgx-sm-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .flg-sm-1,
  .flgy-sm-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .flg-sm-2,
  .flgx-sm-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .flg-sm-2,
  .flgy-sm-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .flg-sm-3,
  .flgx-sm-3 {
    --bxi-gutter-x: 1rem;
  }
  .flg-sm-3,
  .flgy-sm-3 {
    --bxi-gutter-y: 1rem;
  }
  .flg-sm-4,
  .flgx-sm-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .flg-sm-4,
  .flgy-sm-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .flg-sm-5,
  .flgx-sm-5 {
    --bxi-gutter-x: 3rem;
  }
  .flg-sm-5,
  .flgy-sm-5 {
    --bxi-gutter-y: 3rem;
  }
  .flg-sm-6,
  .flgx-sm-6 {
    --bxi-gutter-x: 4rem;
  }
  .flg-sm-6,
  .flgy-sm-6 {
    --bxi-gutter-y: 4rem;
  }
  .flg-sm-7,
  .flgx-sm-7 {
    --bxi-gutter-x: 5rem;
  }
  .flg-sm-7,
  .flgy-sm-7 {
    --bxi-gutter-y: 5rem;
  }
  .flg-sm-8,
  .flgx-sm-8 {
    --bxi-gutter-x: 6rem;
  }
  .flg-sm-8,
  .flgy-sm-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 835px) {
  .flg-md-0,
  .flgx-md-0 {
    --bxi-gutter-x: 0.01px;
  }
  .flg-md-0,
  .flgy-md-0 {
    --bxi-gutter-y: 0.01px;
  }
  .flg-md-1,
  .flgx-md-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .flg-md-1,
  .flgy-md-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .flg-md-2,
  .flgx-md-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .flg-md-2,
  .flgy-md-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .flg-md-3,
  .flgx-md-3 {
    --bxi-gutter-x: 1rem;
  }
  .flg-md-3,
  .flgy-md-3 {
    --bxi-gutter-y: 1rem;
  }
  .flg-md-4,
  .flgx-md-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .flg-md-4,
  .flgy-md-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .flg-md-5,
  .flgx-md-5 {
    --bxi-gutter-x: 3rem;
  }
  .flg-md-5,
  .flgy-md-5 {
    --bxi-gutter-y: 3rem;
  }
  .flg-md-6,
  .flgx-md-6 {
    --bxi-gutter-x: 4rem;
  }
  .flg-md-6,
  .flgy-md-6 {
    --bxi-gutter-y: 4rem;
  }
  .flg-md-7,
  .flgx-md-7 {
    --bxi-gutter-x: 5rem;
  }
  .flg-md-7,
  .flgy-md-7 {
    --bxi-gutter-y: 5rem;
  }
  .flg-md-8,
  .flgx-md-8 {
    --bxi-gutter-x: 6rem;
  }
  .flg-md-8,
  .flgy-md-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1001px) {
  .flg-lg-0,
  .flgx-lg-0 {
    --bxi-gutter-x: 0.01px;
  }
  .flg-lg-0,
  .flgy-lg-0 {
    --bxi-gutter-y: 0.01px;
  }
  .flg-lg-1,
  .flgx-lg-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .flg-lg-1,
  .flgy-lg-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .flg-lg-2,
  .flgx-lg-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .flg-lg-2,
  .flgy-lg-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .flg-lg-3,
  .flgx-lg-3 {
    --bxi-gutter-x: 1rem;
  }
  .flg-lg-3,
  .flgy-lg-3 {
    --bxi-gutter-y: 1rem;
  }
  .flg-lg-4,
  .flgx-lg-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .flg-lg-4,
  .flgy-lg-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .flg-lg-5,
  .flgx-lg-5 {
    --bxi-gutter-x: 3rem;
  }
  .flg-lg-5,
  .flgy-lg-5 {
    --bxi-gutter-y: 3rem;
  }
  .flg-lg-6,
  .flgx-lg-6 {
    --bxi-gutter-x: 4rem;
  }
  .flg-lg-6,
  .flgy-lg-6 {
    --bxi-gutter-y: 4rem;
  }
  .flg-lg-7,
  .flgx-lg-7 {
    --bxi-gutter-x: 5rem;
  }
  .flg-lg-7,
  .flgy-lg-7 {
    --bxi-gutter-y: 5rem;
  }
  .flg-lg-8,
  .flgx-lg-8 {
    --bxi-gutter-x: 6rem;
  }
  .flg-lg-8,
  .flgy-lg-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1201px) {
  .flg-xl-0,
  .flgx-xl-0 {
    --bxi-gutter-x: 0.01px;
  }
  .flg-xl-0,
  .flgy-xl-0 {
    --bxi-gutter-y: 0.01px;
  }
  .flg-xl-1,
  .flgx-xl-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .flg-xl-1,
  .flgy-xl-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .flg-xl-2,
  .flgx-xl-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .flg-xl-2,
  .flgy-xl-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .flg-xl-3,
  .flgx-xl-3 {
    --bxi-gutter-x: 1rem;
  }
  .flg-xl-3,
  .flgy-xl-3 {
    --bxi-gutter-y: 1rem;
  }
  .flg-xl-4,
  .flgx-xl-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .flg-xl-4,
  .flgy-xl-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .flg-xl-5,
  .flgx-xl-5 {
    --bxi-gutter-x: 3rem;
  }
  .flg-xl-5,
  .flgy-xl-5 {
    --bxi-gutter-y: 3rem;
  }
  .flg-xl-6,
  .flgx-xl-6 {
    --bxi-gutter-x: 4rem;
  }
  .flg-xl-6,
  .flgy-xl-6 {
    --bxi-gutter-y: 4rem;
  }
  .flg-xl-7,
  .flgx-xl-7 {
    --bxi-gutter-x: 5rem;
  }
  .flg-xl-7,
  .flgy-xl-7 {
    --bxi-gutter-y: 5rem;
  }
  .flg-xl-8,
  .flgx-xl-8 {
    --bxi-gutter-x: 6rem;
  }
  .flg-xl-8,
  .flgy-xl-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1401px) {
  .flg-ds-0,
  .flgx-ds-0 {
    --bxi-gutter-x: 0.01px;
  }
  .flg-ds-0,
  .flgy-ds-0 {
    --bxi-gutter-y: 0.01px;
  }
  .flg-ds-1,
  .flgx-ds-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .flg-ds-1,
  .flgy-ds-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .flg-ds-2,
  .flgx-ds-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .flg-ds-2,
  .flgy-ds-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .flg-ds-3,
  .flgx-ds-3 {
    --bxi-gutter-x: 1rem;
  }
  .flg-ds-3,
  .flgy-ds-3 {
    --bxi-gutter-y: 1rem;
  }
  .flg-ds-4,
  .flgx-ds-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .flg-ds-4,
  .flgy-ds-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .flg-ds-5,
  .flgx-ds-5 {
    --bxi-gutter-x: 3rem;
  }
  .flg-ds-5,
  .flgy-ds-5 {
    --bxi-gutter-y: 3rem;
  }
  .flg-ds-6,
  .flgx-ds-6 {
    --bxi-gutter-x: 4rem;
  }
  .flg-ds-6,
  .flgy-ds-6 {
    --bxi-gutter-y: 4rem;
  }
  .flg-ds-7,
  .flgx-ds-7 {
    --bxi-gutter-x: 5rem;
  }
  .flg-ds-7,
  .flgy-ds-7 {
    --bxi-gutter-y: 5rem;
  }
  .flg-ds-8,
  .flgx-ds-8 {
    --bxi-gutter-x: 6rem;
  }
  .flg-ds-8,
  .flgy-ds-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1601px) {
  .flg-dm-0,
  .flgx-dm-0 {
    --bxi-gutter-x: 0.01px;
  }
  .flg-dm-0,
  .flgy-dm-0 {
    --bxi-gutter-y: 0.01px;
  }
  .flg-dm-1,
  .flgx-dm-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .flg-dm-1,
  .flgy-dm-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .flg-dm-2,
  .flgx-dm-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .flg-dm-2,
  .flgy-dm-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .flg-dm-3,
  .flgx-dm-3 {
    --bxi-gutter-x: 1rem;
  }
  .flg-dm-3,
  .flgy-dm-3 {
    --bxi-gutter-y: 1rem;
  }
  .flg-dm-4,
  .flgx-dm-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .flg-dm-4,
  .flgy-dm-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .flg-dm-5,
  .flgx-dm-5 {
    --bxi-gutter-x: 3rem;
  }
  .flg-dm-5,
  .flgy-dm-5 {
    --bxi-gutter-y: 3rem;
  }
  .flg-dm-6,
  .flgx-dm-6 {
    --bxi-gutter-x: 4rem;
  }
  .flg-dm-6,
  .flgy-dm-6 {
    --bxi-gutter-y: 4rem;
  }
  .flg-dm-7,
  .flgx-dm-7 {
    --bxi-gutter-x: 5rem;
  }
  .flg-dm-7,
  .flgy-dm-7 {
    --bxi-gutter-y: 5rem;
  }
  .flg-dm-8,
  .flgx-dm-8 {
    --bxi-gutter-x: 6rem;
  }
  .flg-dm-8,
  .flgy-dm-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1921px) {
  .flg-dl-0,
  .flgx-dl-0 {
    --bxi-gutter-x: 0.01px;
  }
  .flg-dl-0,
  .flgy-dl-0 {
    --bxi-gutter-y: 0.01px;
  }
  .flg-dl-1,
  .flgx-dl-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .flg-dl-1,
  .flgy-dl-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .flg-dl-2,
  .flgx-dl-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .flg-dl-2,
  .flgy-dl-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .flg-dl-3,
  .flgx-dl-3 {
    --bxi-gutter-x: 1rem;
  }
  .flg-dl-3,
  .flgy-dl-3 {
    --bxi-gutter-y: 1rem;
  }
  .flg-dl-4,
  .flgx-dl-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .flg-dl-4,
  .flgy-dl-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .flg-dl-5,
  .flgx-dl-5 {
    --bxi-gutter-x: 3rem;
  }
  .flg-dl-5,
  .flgy-dl-5 {
    --bxi-gutter-y: 3rem;
  }
  .flg-dl-6,
  .flgx-dl-6 {
    --bxi-gutter-x: 4rem;
  }
  .flg-dl-6,
  .flgy-dl-6 {
    --bxi-gutter-y: 4rem;
  }
  .flg-dl-7,
  .flgx-dl-7 {
    --bxi-gutter-x: 5rem;
  }
  .flg-dl-7,
  .flgy-dl-7 {
    --bxi-gutter-y: 5rem;
  }
  .flg-dl-8,
  .flgx-dl-8 {
    --bxi-gutter-x: 6rem;
  }
  .flg-dl-8,
  .flgy-dl-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1201px) {
  .flg-dr-0,
  .flgx-dr-0 {
    --bxi-gutter-x: 0.01px;
  }
  .flg-dr-0,
  .flgy-dr-0 {
    --bxi-gutter-y: 0.01px;
  }
  .flg-dr-1,
  .flgx-dr-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .flg-dr-1,
  .flgy-dr-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .flg-dr-2,
  .flgx-dr-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .flg-dr-2,
  .flgy-dr-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .flg-dr-3,
  .flgx-dr-3 {
    --bxi-gutter-x: 1rem;
  }
  .flg-dr-3,
  .flgy-dr-3 {
    --bxi-gutter-y: 1rem;
  }
  .flg-dr-4,
  .flgx-dr-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .flg-dr-4,
  .flgy-dr-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .flg-dr-5,
  .flgx-dr-5 {
    --bxi-gutter-x: 3rem;
  }
  .flg-dr-5,
  .flgy-dr-5 {
    --bxi-gutter-y: 3rem;
  }
  .flg-dr-6,
  .flgx-dr-6 {
    --bxi-gutter-x: 4rem;
  }
  .flg-dr-6,
  .flgy-dr-6 {
    --bxi-gutter-y: 4rem;
  }
  .flg-dr-7,
  .flgx-dr-7 {
    --bxi-gutter-x: 5rem;
  }
  .flg-dr-7,
  .flgy-dr-7 {
    --bxi-gutter-y: 5rem;
  }
  .flg-dr-8,
  .flgx-dr-8 {
    --bxi-gutter-x: 6rem;
  }
  .flg-dr-8,
  .flgy-dr-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 835px) {
  .flg-fl-0,
  .flgx-fl-0 {
    --bxi-gutter-x: 0.01px;
  }
  .flg-fl-0,
  .flgy-fl-0 {
    --bxi-gutter-y: 0.01px;
  }
  .flg-fl-1,
  .flgx-fl-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .flg-fl-1,
  .flgy-fl-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .flg-fl-2,
  .flgx-fl-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .flg-fl-2,
  .flgy-fl-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .flg-fl-3,
  .flgx-fl-3 {
    --bxi-gutter-x: 1rem;
  }
  .flg-fl-3,
  .flgy-fl-3 {
    --bxi-gutter-y: 1rem;
  }
  .flg-fl-4,
  .flgx-fl-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .flg-fl-4,
  .flgy-fl-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .flg-fl-5,
  .flgx-fl-5 {
    --bxi-gutter-x: 3rem;
  }
  .flg-fl-5,
  .flgy-fl-5 {
    --bxi-gutter-y: 3rem;
  }
  .flg-fl-6,
  .flgx-fl-6 {
    --bxi-gutter-x: 4rem;
  }
  .flg-fl-6,
  .flgy-fl-6 {
    --bxi-gutter-y: 4rem;
  }
  .flg-fl-7,
  .flgx-fl-7 {
    --bxi-gutter-x: 5rem;
  }
  .flg-fl-7,
  .flgy-fl-7 {
    --bxi-gutter-y: 5rem;
  }
  .flg-fl-8,
  .flgx-fl-8 {
    --bxi-gutter-x: 6rem;
  }
  .flg-fl-8,
  .flgy-fl-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 835px) {
  .flg-ct-0,
  .flgx-ct-0 {
    --bxi-gutter-x: 0.01px;
  }
  .flg-ct-0,
  .flgy-ct-0 {
    --bxi-gutter-y: 0.01px;
  }
  .flg-ct-1,
  .flgx-ct-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .flg-ct-1,
  .flgy-ct-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .flg-ct-2,
  .flgx-ct-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .flg-ct-2,
  .flgy-ct-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .flg-ct-3,
  .flgx-ct-3 {
    --bxi-gutter-x: 1rem;
  }
  .flg-ct-3,
  .flgy-ct-3 {
    --bxi-gutter-y: 1rem;
  }
  .flg-ct-4,
  .flgx-ct-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .flg-ct-4,
  .flgy-ct-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .flg-ct-5,
  .flgx-ct-5 {
    --bxi-gutter-x: 3rem;
  }
  .flg-ct-5,
  .flgy-ct-5 {
    --bxi-gutter-y: 3rem;
  }
  .flg-ct-6,
  .flgx-ct-6 {
    --bxi-gutter-x: 4rem;
  }
  .flg-ct-6,
  .flgy-ct-6 {
    --bxi-gutter-y: 4rem;
  }
  .flg-ct-7,
  .flgx-ct-7 {
    --bxi-gutter-x: 5rem;
  }
  .flg-ct-7,
  .flgy-ct-7 {
    --bxi-gutter-y: 5rem;
  }
  .flg-ct-8,
  .flgx-ct-8 {
    --bxi-gutter-x: 6rem;
  }
  .flg-ct-8,
  .flgy-ct-8 {
    --bxi-gutter-y: 6rem;
  }
}
.shop-cols {
  --bxi-gutter-x: 1.5rem;
  --bxi-gutter-y: 1.5rem;
  margin-bottom: calc(var(--bxi-gutter-y) * -1);
}
.shop-cols article {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  margin-right: var(--bxi-gutter-x) !important;
  margin-bottom: var(--bxi-gutter-y) !important;
}

@media (min-width: 0px) {
  .shop-cols-1 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1) !important;
  }
  .shop-cols-1 article:nth-child(1n) {
    margin-right: 0 !important;
  }
  .shop-cols-1 article:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-2 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2) !important;
  }
  .shop-cols-2 article:nth-child(2n) {
    margin-right: 0 !important;
  }
  .shop-cols-2 article:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-3 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3) !important;
  }
  .shop-cols-3 article:nth-child(3n) {
    margin-right: 0 !important;
  }
  .shop-cols-3 article:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-4 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4) !important;
  }
  .shop-cols-4 article:nth-child(4n) {
    margin-right: 0 !important;
  }
  .shop-cols-4 article:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-5 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5) !important;
  }
  .shop-cols-5 article:nth-child(5n) {
    margin-right: 0 !important;
  }
  .shop-cols-5 article:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-6 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6) !important;
  }
  .shop-cols-6 article:nth-child(6n) {
    margin-right: 0 !important;
  }
  .shop-cols-6 article:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shg-0,
  .shgx-0 {
    --bxi-gutter-x: 0.01px;
  }
  .shg-0,
  .shgy-0 {
    --bxi-gutter-y: 0.01px;
  }
  .shg-1,
  .shgx-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .shg-1,
  .shgy-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .shg-2,
  .shgx-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .shg-2,
  .shgy-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .shg-3,
  .shgx-3 {
    --bxi-gutter-x: 1rem;
  }
  .shg-3,
  .shgy-3 {
    --bxi-gutter-y: 1rem;
  }
  .shg-4,
  .shgx-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .shg-4,
  .shgy-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .shg-5,
  .shgx-5 {
    --bxi-gutter-x: 3rem;
  }
  .shg-5,
  .shgy-5 {
    --bxi-gutter-y: 3rem;
  }
  .shg-6,
  .shgx-6 {
    --bxi-gutter-x: 4rem;
  }
  .shg-6,
  .shgy-6 {
    --bxi-gutter-y: 4rem;
  }
  .shg-7,
  .shgx-7 {
    --bxi-gutter-x: 5rem;
  }
  .shg-7,
  .shgy-7 {
    --bxi-gutter-y: 5rem;
  }
  .shg-8,
  .shgx-8 {
    --bxi-gutter-x: 6rem;
  }
  .shg-8,
  .shgy-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 641px) {
  .shop-cols-sm-1 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1) !important;
  }
  .shop-cols-sm-1 article:nth-child(1n) {
    margin-right: 0 !important;
  }
  .shop-cols-sm-1 article:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-sm-2 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2) !important;
  }
  .shop-cols-sm-2 article:nth-child(2n) {
    margin-right: 0 !important;
  }
  .shop-cols-sm-2 article:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-sm-3 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3) !important;
  }
  .shop-cols-sm-3 article:nth-child(3n) {
    margin-right: 0 !important;
  }
  .shop-cols-sm-3 article:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-sm-4 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4) !important;
  }
  .shop-cols-sm-4 article:nth-child(4n) {
    margin-right: 0 !important;
  }
  .shop-cols-sm-4 article:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-sm-5 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5) !important;
  }
  .shop-cols-sm-5 article:nth-child(5n) {
    margin-right: 0 !important;
  }
  .shop-cols-sm-5 article:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-sm-6 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6) !important;
  }
  .shop-cols-sm-6 article:nth-child(6n) {
    margin-right: 0 !important;
  }
  .shop-cols-sm-6 article:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shg-sm-0,
  .shgx-sm-0 {
    --bxi-gutter-x: 0.01px;
  }
  .shg-sm-0,
  .shgy-sm-0 {
    --bxi-gutter-y: 0.01px;
  }
  .shg-sm-1,
  .shgx-sm-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .shg-sm-1,
  .shgy-sm-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .shg-sm-2,
  .shgx-sm-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .shg-sm-2,
  .shgy-sm-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .shg-sm-3,
  .shgx-sm-3 {
    --bxi-gutter-x: 1rem;
  }
  .shg-sm-3,
  .shgy-sm-3 {
    --bxi-gutter-y: 1rem;
  }
  .shg-sm-4,
  .shgx-sm-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .shg-sm-4,
  .shgy-sm-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .shg-sm-5,
  .shgx-sm-5 {
    --bxi-gutter-x: 3rem;
  }
  .shg-sm-5,
  .shgy-sm-5 {
    --bxi-gutter-y: 3rem;
  }
  .shg-sm-6,
  .shgx-sm-6 {
    --bxi-gutter-x: 4rem;
  }
  .shg-sm-6,
  .shgy-sm-6 {
    --bxi-gutter-y: 4rem;
  }
  .shg-sm-7,
  .shgx-sm-7 {
    --bxi-gutter-x: 5rem;
  }
  .shg-sm-7,
  .shgy-sm-7 {
    --bxi-gutter-y: 5rem;
  }
  .shg-sm-8,
  .shgx-sm-8 {
    --bxi-gutter-x: 6rem;
  }
  .shg-sm-8,
  .shgy-sm-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 835px) {
  .shop-cols-md-1 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1) !important;
  }
  .shop-cols-md-1 article:nth-child(1n) {
    margin-right: 0 !important;
  }
  .shop-cols-md-1 article:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-md-2 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2) !important;
  }
  .shop-cols-md-2 article:nth-child(2n) {
    margin-right: 0 !important;
  }
  .shop-cols-md-2 article:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-md-3 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3) !important;
  }
  .shop-cols-md-3 article:nth-child(3n) {
    margin-right: 0 !important;
  }
  .shop-cols-md-3 article:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-md-4 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4) !important;
  }
  .shop-cols-md-4 article:nth-child(4n) {
    margin-right: 0 !important;
  }
  .shop-cols-md-4 article:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-md-5 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5) !important;
  }
  .shop-cols-md-5 article:nth-child(5n) {
    margin-right: 0 !important;
  }
  .shop-cols-md-5 article:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-md-6 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6) !important;
  }
  .shop-cols-md-6 article:nth-child(6n) {
    margin-right: 0 !important;
  }
  .shop-cols-md-6 article:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shg-md-0,
  .shgx-md-0 {
    --bxi-gutter-x: 0.01px;
  }
  .shg-md-0,
  .shgy-md-0 {
    --bxi-gutter-y: 0.01px;
  }
  .shg-md-1,
  .shgx-md-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .shg-md-1,
  .shgy-md-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .shg-md-2,
  .shgx-md-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .shg-md-2,
  .shgy-md-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .shg-md-3,
  .shgx-md-3 {
    --bxi-gutter-x: 1rem;
  }
  .shg-md-3,
  .shgy-md-3 {
    --bxi-gutter-y: 1rem;
  }
  .shg-md-4,
  .shgx-md-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .shg-md-4,
  .shgy-md-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .shg-md-5,
  .shgx-md-5 {
    --bxi-gutter-x: 3rem;
  }
  .shg-md-5,
  .shgy-md-5 {
    --bxi-gutter-y: 3rem;
  }
  .shg-md-6,
  .shgx-md-6 {
    --bxi-gutter-x: 4rem;
  }
  .shg-md-6,
  .shgy-md-6 {
    --bxi-gutter-y: 4rem;
  }
  .shg-md-7,
  .shgx-md-7 {
    --bxi-gutter-x: 5rem;
  }
  .shg-md-7,
  .shgy-md-7 {
    --bxi-gutter-y: 5rem;
  }
  .shg-md-8,
  .shgx-md-8 {
    --bxi-gutter-x: 6rem;
  }
  .shg-md-8,
  .shgy-md-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1001px) {
  .shop-cols-lg-1 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1) !important;
  }
  .shop-cols-lg-1 article:nth-child(1n) {
    margin-right: 0 !important;
  }
  .shop-cols-lg-1 article:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-lg-2 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2) !important;
  }
  .shop-cols-lg-2 article:nth-child(2n) {
    margin-right: 0 !important;
  }
  .shop-cols-lg-2 article:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-lg-3 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3) !important;
  }
  .shop-cols-lg-3 article:nth-child(3n) {
    margin-right: 0 !important;
  }
  .shop-cols-lg-3 article:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-lg-4 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4) !important;
  }
  .shop-cols-lg-4 article:nth-child(4n) {
    margin-right: 0 !important;
  }
  .shop-cols-lg-4 article:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-lg-5 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5) !important;
  }
  .shop-cols-lg-5 article:nth-child(5n) {
    margin-right: 0 !important;
  }
  .shop-cols-lg-5 article:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-lg-6 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6) !important;
  }
  .shop-cols-lg-6 article:nth-child(6n) {
    margin-right: 0 !important;
  }
  .shop-cols-lg-6 article:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shg-lg-0,
  .shgx-lg-0 {
    --bxi-gutter-x: 0.01px;
  }
  .shg-lg-0,
  .shgy-lg-0 {
    --bxi-gutter-y: 0.01px;
  }
  .shg-lg-1,
  .shgx-lg-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .shg-lg-1,
  .shgy-lg-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .shg-lg-2,
  .shgx-lg-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .shg-lg-2,
  .shgy-lg-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .shg-lg-3,
  .shgx-lg-3 {
    --bxi-gutter-x: 1rem;
  }
  .shg-lg-3,
  .shgy-lg-3 {
    --bxi-gutter-y: 1rem;
  }
  .shg-lg-4,
  .shgx-lg-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .shg-lg-4,
  .shgy-lg-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .shg-lg-5,
  .shgx-lg-5 {
    --bxi-gutter-x: 3rem;
  }
  .shg-lg-5,
  .shgy-lg-5 {
    --bxi-gutter-y: 3rem;
  }
  .shg-lg-6,
  .shgx-lg-6 {
    --bxi-gutter-x: 4rem;
  }
  .shg-lg-6,
  .shgy-lg-6 {
    --bxi-gutter-y: 4rem;
  }
  .shg-lg-7,
  .shgx-lg-7 {
    --bxi-gutter-x: 5rem;
  }
  .shg-lg-7,
  .shgy-lg-7 {
    --bxi-gutter-y: 5rem;
  }
  .shg-lg-8,
  .shgx-lg-8 {
    --bxi-gutter-x: 6rem;
  }
  .shg-lg-8,
  .shgy-lg-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1201px) {
  .shop-cols-xl-1 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1) !important;
  }
  .shop-cols-xl-1 article:nth-child(1n) {
    margin-right: 0 !important;
  }
  .shop-cols-xl-1 article:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-xl-2 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2) !important;
  }
  .shop-cols-xl-2 article:nth-child(2n) {
    margin-right: 0 !important;
  }
  .shop-cols-xl-2 article:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-xl-3 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3) !important;
  }
  .shop-cols-xl-3 article:nth-child(3n) {
    margin-right: 0 !important;
  }
  .shop-cols-xl-3 article:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-xl-4 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4) !important;
  }
  .shop-cols-xl-4 article:nth-child(4n) {
    margin-right: 0 !important;
  }
  .shop-cols-xl-4 article:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-xl-5 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5) !important;
  }
  .shop-cols-xl-5 article:nth-child(5n) {
    margin-right: 0 !important;
  }
  .shop-cols-xl-5 article:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-xl-6 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6) !important;
  }
  .shop-cols-xl-6 article:nth-child(6n) {
    margin-right: 0 !important;
  }
  .shop-cols-xl-6 article:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shg-xl-0,
  .shgx-xl-0 {
    --bxi-gutter-x: 0.01px;
  }
  .shg-xl-0,
  .shgy-xl-0 {
    --bxi-gutter-y: 0.01px;
  }
  .shg-xl-1,
  .shgx-xl-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .shg-xl-1,
  .shgy-xl-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .shg-xl-2,
  .shgx-xl-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .shg-xl-2,
  .shgy-xl-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .shg-xl-3,
  .shgx-xl-3 {
    --bxi-gutter-x: 1rem;
  }
  .shg-xl-3,
  .shgy-xl-3 {
    --bxi-gutter-y: 1rem;
  }
  .shg-xl-4,
  .shgx-xl-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .shg-xl-4,
  .shgy-xl-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .shg-xl-5,
  .shgx-xl-5 {
    --bxi-gutter-x: 3rem;
  }
  .shg-xl-5,
  .shgy-xl-5 {
    --bxi-gutter-y: 3rem;
  }
  .shg-xl-6,
  .shgx-xl-6 {
    --bxi-gutter-x: 4rem;
  }
  .shg-xl-6,
  .shgy-xl-6 {
    --bxi-gutter-y: 4rem;
  }
  .shg-xl-7,
  .shgx-xl-7 {
    --bxi-gutter-x: 5rem;
  }
  .shg-xl-7,
  .shgy-xl-7 {
    --bxi-gutter-y: 5rem;
  }
  .shg-xl-8,
  .shgx-xl-8 {
    --bxi-gutter-x: 6rem;
  }
  .shg-xl-8,
  .shgy-xl-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1401px) {
  .shop-cols-ds-1 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1) !important;
  }
  .shop-cols-ds-1 article:nth-child(1n) {
    margin-right: 0 !important;
  }
  .shop-cols-ds-1 article:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-ds-2 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2) !important;
  }
  .shop-cols-ds-2 article:nth-child(2n) {
    margin-right: 0 !important;
  }
  .shop-cols-ds-2 article:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-ds-3 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3) !important;
  }
  .shop-cols-ds-3 article:nth-child(3n) {
    margin-right: 0 !important;
  }
  .shop-cols-ds-3 article:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-ds-4 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4) !important;
  }
  .shop-cols-ds-4 article:nth-child(4n) {
    margin-right: 0 !important;
  }
  .shop-cols-ds-4 article:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-ds-5 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5) !important;
  }
  .shop-cols-ds-5 article:nth-child(5n) {
    margin-right: 0 !important;
  }
  .shop-cols-ds-5 article:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-ds-6 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6) !important;
  }
  .shop-cols-ds-6 article:nth-child(6n) {
    margin-right: 0 !important;
  }
  .shop-cols-ds-6 article:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shg-ds-0,
  .shgx-ds-0 {
    --bxi-gutter-x: 0.01px;
  }
  .shg-ds-0,
  .shgy-ds-0 {
    --bxi-gutter-y: 0.01px;
  }
  .shg-ds-1,
  .shgx-ds-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .shg-ds-1,
  .shgy-ds-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .shg-ds-2,
  .shgx-ds-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .shg-ds-2,
  .shgy-ds-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .shg-ds-3,
  .shgx-ds-3 {
    --bxi-gutter-x: 1rem;
  }
  .shg-ds-3,
  .shgy-ds-3 {
    --bxi-gutter-y: 1rem;
  }
  .shg-ds-4,
  .shgx-ds-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .shg-ds-4,
  .shgy-ds-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .shg-ds-5,
  .shgx-ds-5 {
    --bxi-gutter-x: 3rem;
  }
  .shg-ds-5,
  .shgy-ds-5 {
    --bxi-gutter-y: 3rem;
  }
  .shg-ds-6,
  .shgx-ds-6 {
    --bxi-gutter-x: 4rem;
  }
  .shg-ds-6,
  .shgy-ds-6 {
    --bxi-gutter-y: 4rem;
  }
  .shg-ds-7,
  .shgx-ds-7 {
    --bxi-gutter-x: 5rem;
  }
  .shg-ds-7,
  .shgy-ds-7 {
    --bxi-gutter-y: 5rem;
  }
  .shg-ds-8,
  .shgx-ds-8 {
    --bxi-gutter-x: 6rem;
  }
  .shg-ds-8,
  .shgy-ds-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1601px) {
  .shop-cols-dm-1 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1) !important;
  }
  .shop-cols-dm-1 article:nth-child(1n) {
    margin-right: 0 !important;
  }
  .shop-cols-dm-1 article:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-dm-2 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2) !important;
  }
  .shop-cols-dm-2 article:nth-child(2n) {
    margin-right: 0 !important;
  }
  .shop-cols-dm-2 article:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-dm-3 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3) !important;
  }
  .shop-cols-dm-3 article:nth-child(3n) {
    margin-right: 0 !important;
  }
  .shop-cols-dm-3 article:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-dm-4 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4) !important;
  }
  .shop-cols-dm-4 article:nth-child(4n) {
    margin-right: 0 !important;
  }
  .shop-cols-dm-4 article:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-dm-5 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5) !important;
  }
  .shop-cols-dm-5 article:nth-child(5n) {
    margin-right: 0 !important;
  }
  .shop-cols-dm-5 article:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-dm-6 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6) !important;
  }
  .shop-cols-dm-6 article:nth-child(6n) {
    margin-right: 0 !important;
  }
  .shop-cols-dm-6 article:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shg-dm-0,
  .shgx-dm-0 {
    --bxi-gutter-x: 0.01px;
  }
  .shg-dm-0,
  .shgy-dm-0 {
    --bxi-gutter-y: 0.01px;
  }
  .shg-dm-1,
  .shgx-dm-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .shg-dm-1,
  .shgy-dm-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .shg-dm-2,
  .shgx-dm-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .shg-dm-2,
  .shgy-dm-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .shg-dm-3,
  .shgx-dm-3 {
    --bxi-gutter-x: 1rem;
  }
  .shg-dm-3,
  .shgy-dm-3 {
    --bxi-gutter-y: 1rem;
  }
  .shg-dm-4,
  .shgx-dm-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .shg-dm-4,
  .shgy-dm-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .shg-dm-5,
  .shgx-dm-5 {
    --bxi-gutter-x: 3rem;
  }
  .shg-dm-5,
  .shgy-dm-5 {
    --bxi-gutter-y: 3rem;
  }
  .shg-dm-6,
  .shgx-dm-6 {
    --bxi-gutter-x: 4rem;
  }
  .shg-dm-6,
  .shgy-dm-6 {
    --bxi-gutter-y: 4rem;
  }
  .shg-dm-7,
  .shgx-dm-7 {
    --bxi-gutter-x: 5rem;
  }
  .shg-dm-7,
  .shgy-dm-7 {
    --bxi-gutter-y: 5rem;
  }
  .shg-dm-8,
  .shgx-dm-8 {
    --bxi-gutter-x: 6rem;
  }
  .shg-dm-8,
  .shgy-dm-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1921px) {
  .shop-cols-dl-1 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1) !important;
  }
  .shop-cols-dl-1 article:nth-child(1n) {
    margin-right: 0 !important;
  }
  .shop-cols-dl-1 article:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-dl-2 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2) !important;
  }
  .shop-cols-dl-2 article:nth-child(2n) {
    margin-right: 0 !important;
  }
  .shop-cols-dl-2 article:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-dl-3 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3) !important;
  }
  .shop-cols-dl-3 article:nth-child(3n) {
    margin-right: 0 !important;
  }
  .shop-cols-dl-3 article:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-dl-4 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4) !important;
  }
  .shop-cols-dl-4 article:nth-child(4n) {
    margin-right: 0 !important;
  }
  .shop-cols-dl-4 article:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-dl-5 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5) !important;
  }
  .shop-cols-dl-5 article:nth-child(5n) {
    margin-right: 0 !important;
  }
  .shop-cols-dl-5 article:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-dl-6 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6) !important;
  }
  .shop-cols-dl-6 article:nth-child(6n) {
    margin-right: 0 !important;
  }
  .shop-cols-dl-6 article:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shg-dl-0,
  .shgx-dl-0 {
    --bxi-gutter-x: 0.01px;
  }
  .shg-dl-0,
  .shgy-dl-0 {
    --bxi-gutter-y: 0.01px;
  }
  .shg-dl-1,
  .shgx-dl-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .shg-dl-1,
  .shgy-dl-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .shg-dl-2,
  .shgx-dl-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .shg-dl-2,
  .shgy-dl-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .shg-dl-3,
  .shgx-dl-3 {
    --bxi-gutter-x: 1rem;
  }
  .shg-dl-3,
  .shgy-dl-3 {
    --bxi-gutter-y: 1rem;
  }
  .shg-dl-4,
  .shgx-dl-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .shg-dl-4,
  .shgy-dl-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .shg-dl-5,
  .shgx-dl-5 {
    --bxi-gutter-x: 3rem;
  }
  .shg-dl-5,
  .shgy-dl-5 {
    --bxi-gutter-y: 3rem;
  }
  .shg-dl-6,
  .shgx-dl-6 {
    --bxi-gutter-x: 4rem;
  }
  .shg-dl-6,
  .shgy-dl-6 {
    --bxi-gutter-y: 4rem;
  }
  .shg-dl-7,
  .shgx-dl-7 {
    --bxi-gutter-x: 5rem;
  }
  .shg-dl-7,
  .shgy-dl-7 {
    --bxi-gutter-y: 5rem;
  }
  .shg-dl-8,
  .shgx-dl-8 {
    --bxi-gutter-x: 6rem;
  }
  .shg-dl-8,
  .shgy-dl-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1201px) {
  .shop-cols-dr-1 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1) !important;
  }
  .shop-cols-dr-1 article:nth-child(1n) {
    margin-right: 0 !important;
  }
  .shop-cols-dr-1 article:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-dr-2 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2) !important;
  }
  .shop-cols-dr-2 article:nth-child(2n) {
    margin-right: 0 !important;
  }
  .shop-cols-dr-2 article:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-dr-3 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3) !important;
  }
  .shop-cols-dr-3 article:nth-child(3n) {
    margin-right: 0 !important;
  }
  .shop-cols-dr-3 article:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-dr-4 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4) !important;
  }
  .shop-cols-dr-4 article:nth-child(4n) {
    margin-right: 0 !important;
  }
  .shop-cols-dr-4 article:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-dr-5 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5) !important;
  }
  .shop-cols-dr-5 article:nth-child(5n) {
    margin-right: 0 !important;
  }
  .shop-cols-dr-5 article:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-dr-6 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6) !important;
  }
  .shop-cols-dr-6 article:nth-child(6n) {
    margin-right: 0 !important;
  }
  .shop-cols-dr-6 article:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shg-dr-0,
  .shgx-dr-0 {
    --bxi-gutter-x: 0.01px;
  }
  .shg-dr-0,
  .shgy-dr-0 {
    --bxi-gutter-y: 0.01px;
  }
  .shg-dr-1,
  .shgx-dr-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .shg-dr-1,
  .shgy-dr-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .shg-dr-2,
  .shgx-dr-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .shg-dr-2,
  .shgy-dr-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .shg-dr-3,
  .shgx-dr-3 {
    --bxi-gutter-x: 1rem;
  }
  .shg-dr-3,
  .shgy-dr-3 {
    --bxi-gutter-y: 1rem;
  }
  .shg-dr-4,
  .shgx-dr-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .shg-dr-4,
  .shgy-dr-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .shg-dr-5,
  .shgx-dr-5 {
    --bxi-gutter-x: 3rem;
  }
  .shg-dr-5,
  .shgy-dr-5 {
    --bxi-gutter-y: 3rem;
  }
  .shg-dr-6,
  .shgx-dr-6 {
    --bxi-gutter-x: 4rem;
  }
  .shg-dr-6,
  .shgy-dr-6 {
    --bxi-gutter-y: 4rem;
  }
  .shg-dr-7,
  .shgx-dr-7 {
    --bxi-gutter-x: 5rem;
  }
  .shg-dr-7,
  .shgy-dr-7 {
    --bxi-gutter-y: 5rem;
  }
  .shg-dr-8,
  .shgx-dr-8 {
    --bxi-gutter-x: 6rem;
  }
  .shg-dr-8,
  .shgy-dr-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 835px) {
  .shop-cols-fl-1 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1) !important;
  }
  .shop-cols-fl-1 article:nth-child(1n) {
    margin-right: 0 !important;
  }
  .shop-cols-fl-1 article:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-fl-2 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2) !important;
  }
  .shop-cols-fl-2 article:nth-child(2n) {
    margin-right: 0 !important;
  }
  .shop-cols-fl-2 article:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-fl-3 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3) !important;
  }
  .shop-cols-fl-3 article:nth-child(3n) {
    margin-right: 0 !important;
  }
  .shop-cols-fl-3 article:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-fl-4 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4) !important;
  }
  .shop-cols-fl-4 article:nth-child(4n) {
    margin-right: 0 !important;
  }
  .shop-cols-fl-4 article:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-fl-5 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5) !important;
  }
  .shop-cols-fl-5 article:nth-child(5n) {
    margin-right: 0 !important;
  }
  .shop-cols-fl-5 article:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-fl-6 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6) !important;
  }
  .shop-cols-fl-6 article:nth-child(6n) {
    margin-right: 0 !important;
  }
  .shop-cols-fl-6 article:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shg-fl-0,
  .shgx-fl-0 {
    --bxi-gutter-x: 0.01px;
  }
  .shg-fl-0,
  .shgy-fl-0 {
    --bxi-gutter-y: 0.01px;
  }
  .shg-fl-1,
  .shgx-fl-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .shg-fl-1,
  .shgy-fl-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .shg-fl-2,
  .shgx-fl-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .shg-fl-2,
  .shgy-fl-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .shg-fl-3,
  .shgx-fl-3 {
    --bxi-gutter-x: 1rem;
  }
  .shg-fl-3,
  .shgy-fl-3 {
    --bxi-gutter-y: 1rem;
  }
  .shg-fl-4,
  .shgx-fl-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .shg-fl-4,
  .shgy-fl-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .shg-fl-5,
  .shgx-fl-5 {
    --bxi-gutter-x: 3rem;
  }
  .shg-fl-5,
  .shgy-fl-5 {
    --bxi-gutter-y: 3rem;
  }
  .shg-fl-6,
  .shgx-fl-6 {
    --bxi-gutter-x: 4rem;
  }
  .shg-fl-6,
  .shgy-fl-6 {
    --bxi-gutter-y: 4rem;
  }
  .shg-fl-7,
  .shgx-fl-7 {
    --bxi-gutter-x: 5rem;
  }
  .shg-fl-7,
  .shgy-fl-7 {
    --bxi-gutter-y: 5rem;
  }
  .shg-fl-8,
  .shgx-fl-8 {
    --bxi-gutter-x: 6rem;
  }
  .shg-fl-8,
  .shgy-fl-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 835px) {
  .shop-cols-ct-1 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1) !important;
  }
  .shop-cols-ct-1 article:nth-child(1n) {
    margin-right: 0 !important;
  }
  .shop-cols-ct-1 article:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-ct-2 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2) !important;
  }
  .shop-cols-ct-2 article:nth-child(2n) {
    margin-right: 0 !important;
  }
  .shop-cols-ct-2 article:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-ct-3 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3) !important;
  }
  .shop-cols-ct-3 article:nth-child(3n) {
    margin-right: 0 !important;
  }
  .shop-cols-ct-3 article:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-ct-4 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4) !important;
  }
  .shop-cols-ct-4 article:nth-child(4n) {
    margin-right: 0 !important;
  }
  .shop-cols-ct-4 article:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-ct-5 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5) !important;
  }
  .shop-cols-ct-5 article:nth-child(5n) {
    margin-right: 0 !important;
  }
  .shop-cols-ct-5 article:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shop-cols-ct-6 article {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6) !important;
  }
  .shop-cols-ct-6 article:nth-child(6n) {
    margin-right: 0 !important;
  }
  .shop-cols-ct-6 article:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x) !important;
  }
  .shg-ct-0,
  .shgx-ct-0 {
    --bxi-gutter-x: 0.01px;
  }
  .shg-ct-0,
  .shgy-ct-0 {
    --bxi-gutter-y: 0.01px;
  }
  .shg-ct-1,
  .shgx-ct-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .shg-ct-1,
  .shgy-ct-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .shg-ct-2,
  .shgx-ct-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .shg-ct-2,
  .shgy-ct-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .shg-ct-3,
  .shgx-ct-3 {
    --bxi-gutter-x: 1rem;
  }
  .shg-ct-3,
  .shgy-ct-3 {
    --bxi-gutter-y: 1rem;
  }
  .shg-ct-4,
  .shgx-ct-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .shg-ct-4,
  .shgy-ct-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .shg-ct-5,
  .shgx-ct-5 {
    --bxi-gutter-x: 3rem;
  }
  .shg-ct-5,
  .shgy-ct-5 {
    --bxi-gutter-y: 3rem;
  }
  .shg-ct-6,
  .shgx-ct-6 {
    --bxi-gutter-x: 4rem;
  }
  .shg-ct-6,
  .shgy-ct-6 {
    --bxi-gutter-y: 4rem;
  }
  .shg-ct-7,
  .shgx-ct-7 {
    --bxi-gutter-x: 5rem;
  }
  .shg-ct-7,
  .shgy-ct-7 {
    --bxi-gutter-y: 5rem;
  }
  .shg-ct-8,
  .shgx-ct-8 {
    --bxi-gutter-x: 6rem;
  }
  .shg-ct-8,
  .shgy-ct-8 {
    --bxi-gutter-y: 6rem;
  }
}
b {
  color: #6c2816;
  font-size: 1.2em;
}

.m-blog .blog_list {
  border: none;
}
.m-blog .blog_list__list {
  display: block;
  border-bottom: none;
}
.m-blog .blog_list .blog_photo {
  width: 100%;
  padding: 0;
}
.m-blog .blog_list .blog_text {
  width: 100%;
  padding: 0;
  font-size: 1rem;
}
.m-blog .blog_list .blog_text > h3 {
  margin-bottom: 0;
  font-size: 1rem;
}
.m-blog .blog_list .detail {
  margin-top: 0;
}

.m-blog--date_none .blog_date {
  display: none;
}
.m-blog--detail_none .detail {
  display: none;
}
.m-blog--photo_none .blog_photo {
  display: none;
}
.m-blog--style_01 .blog_list {
  max-height: 300px;
  overflow-y: scroll;
}
.m-blog--style_01 .blog_list::-webkit-scrollbar {
  width: 5px;
}
.m-blog--style_01 .blog_list::-webkit-scrollbar-track {
  background-color: transparent;
}
.m-blog--style_01 .blog_list::-webkit-scrollbar-thumb {
  background-color: #dadada;
  border-radius: 5px;
}
.m-blog--style_01 .blog_list__list {
  margin-bottom: 2.5rem;
}
.m-blog--style_01 .blog_date {
  color: #ffffff !important;
}
.m-blog--style_01 .blog_text > h3 > a > span {
  text-decoration-color: #ffffff;
  text-decoration: underline;
}

.btn {
  display: inline-block;
  font-family: Noto Serif JP, sans-serif;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
}
.btn:hover {
  opacity: 0.7;
}

.btn {
  padding: 1.25rem 2.5rem;
  background-color: #f0ae00;
  border-radius: 100vh;
}
.btn * {
  font-size: 1.125rem;
}
.btn--style_01 {
  color: #ffffff !important;
  background-color: #edcc55;
  border: 1px solid transparent;
  transition: 0.5s;
}
.btn--style_01:hover {
  transition: 0.5s;
}
.btn--style_02 {
  color: #edcc55 !important;
  background-color: #ffffff;
  border: 1px solid #edcc55;
  transition: 0.5s;
}
.btn--min_width {
  padding: 1.25rem 3.125rem;
}

.form_wrap.dl-company > dl:last-child > dt, .form_wrap.dl-news > dl:last-child > dt, .form_wrap.dl > dl:last-child > dt,
.form_wrap.dl-company > dl:last-child > dd,
.form_wrap.dl-news > dl:last-child > dd,
.form_wrap.dl > dl:last-child > dd {
  border-bottom: none;
}
.form_wrap.dl-company > dl > dt, .form_wrap.dl-news > dl > dt, .form_wrap.dl > dl > dt,
.form_wrap.dl-company > dl > dd,
.form_wrap.dl-news > dl > dd,
.form_wrap.dl > dl > dd {
  padding: 0;
  background-color: transparent;
  border: none;
}
.form_wrap.dl-company > dl > dt, .form_wrap.dl-news > dl > dt, .form_wrap.dl > dl > dt {
  justify-content: flex-start;
}

.dl-news {
  max-height: 200px;
  overflow-y: scroll;
}
.dl-news::-webkit-scrollbar {
  width: 5px;
}
.dl-news::-webkit-scrollbar-track {
  background-color: transparent;
}
.dl-news::-webkit-scrollbar-thumb {
  background-color: #dadada;
  border-radius: 5px;
}
@media (max-width: 834.98px) {
  .dl-news > dl {
    flex-direction: column;
  }
}
@media (max-width: 834.98px) {
  .dl-news > dl > dt,
  .dl-news > dl > dd {
    width: 100% !important;
  }
}
.dl-news > dl > dt {
  color: #6c2816;
}
.dl-news--style_01 > dl {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid black;
}

@media (max-width: 640.98px) {
  .dl-company > dl {
    flex-direction: column;
  }
}
@media (max-width: 640.98px) {
  .dl-company > dl > dt,
  .dl-company > dl > dd {
    width: 100% !important;
  }
}

.dl-company--style_01.form_wrap > dl {
  border-top: 1px solid #e7e7e7;
}
.dl-company--style_01.form_wrap > dl:last-child {
  border-bottom: 1px solid #e7e7e7;
}
@media (max-width: 640.98px) {
  .dl-company--style_01.form_wrap > dl:last-child {
    border-bottom: 0;
  }
}
@media (max-width: 640.98px) {
  .dl-company--style_01.form_wrap > dl {
    margin-bottom: 1.25rem;
    border-top: 0;
  }
}
.dl-company--style_01.form_wrap > dl > dt {
  justify-content: center;
  align-items: center;
  padding: 1rem 1.25rem !important;
  background-color: rgb(247, 247, 247) !important;
}
@media (max-width: 640.98px) {
  .dl-company--style_01.form_wrap > dl > dt {
    align-items: flex-start;
  }
}
.dl-company--style_01.form_wrap > dl > dd {
  padding: 1rem 1.25rem !important;
  background-color: white;
}
@media (max-width: 640.98px) {
  .dl-company--style_01.form_wrap > dl > dd {
    border-left: none !important;
  }
}

.dpdn .dpdn__lists {
  list-style: none;
}
.dpdn .dpdn__link {
  color: inherit;
  text-decoration: none;
}

.dpdn {
  position: relative;
}
.dpdn__link:before {
  content: "\f105";
  display: inline-block;
  margin-right: 0.625rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.dpdn__lists {
  display: block;
  width: 100%;
  position: static;
  transition: all 0.5s ease;
}
.dpdn__btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.is_show.dpdn .dpdn__btn::before {
  transform: rotate(-180deg);
}

.dpdn__list {
  margin-bottom: 1.25rem;
}
.dpdn__list:first-child {
  margin-top: 1.25rem;
}
.dpdn__list:last-child {
  margin-bottom: 0;
}
.dpdn__link {
  display: block;
}

.eyecatch {
  min-height: 470px;
  background-size: cover;
  background-position: 55% 60%;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
}
.eyecatch > article > h1, .eyecatch > article > p {
  font-size: calc(1.35rem + 1.2vw);
  font-family: Noto Serif JP, sans-serif;
  font-weight: 500;
}
@media (min-width: 1200px) {
  .eyecatch > article > h1, .eyecatch > article > p {
    font-size: 2.25rem;
  }
}

.eyecatch--on-image:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.eyecatch--on-image > article {
  width: 100%;
  padding: 0 1.25rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.eyecatch--on-image > article > h1, .eyecatch--on-image > article > p {
  color: #ffffff;
}
.eyecatch--sub-text > article > div {
  color: #edcc55;
}

.box-inner,
.image-wrapper {
  width: 100%;
}

.flexbox-image, .flexbox-txt-on-image, .flexbox-card, .flexbox-media {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  clear: both;
}
.flexbox-image div.box, .flexbox-txt-on-image div.box, .flexbox-card div.box, .flexbox-media div.box {
  box-sizing: border-box;
  overflow: hidden;
}

.flexbox-media .box,
.flexbox-media .box-inner {
  width: 100%;
}
.flexbox-media article {
  display: flex;
  align-items: center;
}
@media (max-width: 834.98px) {
  .flexbox-media article {
    flex-direction: column !important;
  }
}
.flexbox-media article > h3 {
  display: none;
}
.flexbox-media article > div {
  flex: 1 0 0;
}
@media (max-width: 834.98px) {
  .flexbox-media article > div {
    width: 100%;
  }
}
.flexbox-media article > a {
  flex: 0 0 30%;
}
@media (max-width: 834.98px) {
  .flexbox-media article > a {
    width: 100%;
  }
}
.flexbox-media .image-wrapper {
  flex: 0 0 30%;
}
@media (max-width: 834.98px) {
  .flexbox-media .image-wrapper {
    width: 100%;
  }
}
@media (max-width: 834.98px) {
  .flexbox-media .odd article {
    flex-direction: column !important;
  }
}
@media (max-width: 834.98px) {
  .flexbox-media .odd .image-wrapper {
    margin-right: auto !important;
    margin-left: auto !important;
  }
}
.flexbox-media .even .image-wrapper {
  margin-right: 0 !important;
}
@media (max-width: 834.98px) {
  .flexbox-media .even .image-wrapper {
    margin-right: auto !important;
    margin-left: auto !important;
  }
}
.flexbox-media .even article {
  flex-direction: row-reverse !important;
}
@media (max-width: 834.98px) {
  .flexbox-media .even article {
    flex-direction: column !important;
  }
}

.flexbox-media--reverse .box article {
  flex-direction: row-reverse;
}
.flexbox-media--style_01 .image-wrapper {
  margin-right: 2.5rem;
}
@media (max-width: 834.98px) {
  .flexbox-media--style_01 .image-wrapper {
    max-width: 300px;
    margin-right: auto;
    margin-bottom: 1.25rem;
    margin-left: auto;
  }
}
.flexbox-media--style_01 .even .image-wrapper {
  margin-left: 2.5rem;
}
.flexbox-media--style_01 article > div {
  line-height: 2;
}
.flexbox-media--1_1 .image-wrapper {
  position: relative;
  display: block;
}
.flexbox-media--1_1 .image-wrapper:has(a) {
  display: block;
}
.flexbox-media--1_1 .image-wrapper:before {
  content: "";
  display: block;
  padding-top: 100%;
  text-align: center;
}
.flexbox-media--1_1 .image-wrapper > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.flexbox-media--1_1 .image-wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}
.flexbox-media--4_3 .image-wrapper {
  position: relative;
  display: block;
}
.flexbox-media--4_3 .image-wrapper:has(a) {
  display: block;
}
.flexbox-media--4_3 .image-wrapper:before {
  content: "";
  display: block;
  padding-top: 75%;
  text-align: center;
}
.flexbox-media--4_3 .image-wrapper > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.flexbox-media--4_3 .image-wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}
.flexbox-media--3_2 .image-wrapper {
  position: relative;
  display: block;
}
.flexbox-media--3_2 .image-wrapper:has(a) {
  display: block;
}
.flexbox-media--3_2 .image-wrapper:before {
  content: "";
  display: block;
  padding-top: 66.6666666667%;
  text-align: center;
}
.flexbox-media--3_2 .image-wrapper > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.flexbox-media--3_2 .image-wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}
.flexbox-media--16_9 .image-wrapper {
  position: relative;
  display: block;
}
.flexbox-media--16_9 .image-wrapper:has(a) {
  display: block;
}
.flexbox-media--16_9 .image-wrapper:before {
  content: "";
  display: block;
  padding-top: 56.25%;
  text-align: center;
}
.flexbox-media--16_9 .image-wrapper > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.flexbox-media--16_9 .image-wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}
.flexbox-media--2_1 .image-wrapper {
  position: relative;
  display: block;
}
.flexbox-media--2_1 .image-wrapper:has(a) {
  display: block;
}
.flexbox-media--2_1 .image-wrapper:before {
  content: "";
  display: block;
  padding-top: 50%;
  text-align: center;
}
.flexbox-media--2_1 .image-wrapper > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.flexbox-media--2_1 .image-wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}

.flexbox-card .box article > h3 {
  display: none;
}

.flexbox-card--h3_show .box article > h3 {
  display: block;
}
.flexbox-card--1_1 .image-wrapper {
  position: relative;
  display: block;
}
.flexbox-card--1_1 .image-wrapper:has(a) {
  display: block;
}
.flexbox-card--1_1 .image-wrapper:before {
  content: "";
  display: block;
  padding-top: 100%;
  text-align: center;
}
.flexbox-card--1_1 .image-wrapper > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.flexbox-card--1_1 .image-wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}
.flexbox-card--4_3 .image-wrapper {
  position: relative;
  display: block;
}
.flexbox-card--4_3 .image-wrapper:has(a) {
  display: block;
}
.flexbox-card--4_3 .image-wrapper:before {
  content: "";
  display: block;
  padding-top: 75%;
  text-align: center;
}
.flexbox-card--4_3 .image-wrapper > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.flexbox-card--4_3 .image-wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}
.flexbox-card--3_2 .image-wrapper {
  position: relative;
  display: block;
}
.flexbox-card--3_2 .image-wrapper:has(a) {
  display: block;
}
.flexbox-card--3_2 .image-wrapper:before {
  content: "";
  display: block;
  padding-top: 66.6666666667%;
  text-align: center;
}
.flexbox-card--3_2 .image-wrapper > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.flexbox-card--3_2 .image-wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}
.flexbox-card--16_9 .image-wrapper {
  position: relative;
  display: block;
}
.flexbox-card--16_9 .image-wrapper:has(a) {
  display: block;
}
.flexbox-card--16_9 .image-wrapper:before {
  content: "";
  display: block;
  padding-top: 56.25%;
  text-align: center;
}
.flexbox-card--16_9 .image-wrapper > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.flexbox-card--16_9 .image-wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}
.flexbox-card--2_1 .image-wrapper {
  position: relative;
  display: block;
}
.flexbox-card--2_1 .image-wrapper:has(a) {
  display: block;
}
.flexbox-card--2_1 .image-wrapper:before {
  content: "";
  display: block;
  padding-top: 50%;
  text-align: center;
}
.flexbox-card--2_1 .image-wrapper > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.flexbox-card--2_1 .image-wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}

.flexbox-txt-on-image .box article {
  position: relative;
  z-index: 0;
}
.flexbox-txt-on-image .box article > h3 {
  display: none;
}
.flexbox-txt-on-image .box article > div {
  display: block;
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.flexbox-txt-on-image--h3_show .box article > h3 {
  display: block;
}
.flexbox-txt-on-image--style_01 article,
.flexbox-txt-on-image--style_01 a,
.flexbox-txt-on-image--style_01 .image-wrapper,
.flexbox-txt-on-image--style_01 img {
  height: 100%;
}
.flexbox-txt-on-image--style_01 .box {
  position: relative;
}
.flexbox-txt-on-image--style_01 .box * {
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
  color: #ffffff;
}
.flexbox-txt-on-image--style_01 .box:after {
  content: "\f105";
  font: var(--fa-font-solid);
  color: #ffffff;
  font-size: calc(1.375rem + 1.5vw);
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: 11.4942528736%;
  transform: translate(-50%, -50%);
}
@media (min-width: 1200px) {
  .flexbox-txt-on-image--style_01 .box:after {
    font-size: 2.5rem;
  }
}
.flexbox-txt-on-image--style_01 .box > article > div {
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.flexbox-txt-on-image--style_01 .box > article > div > p {
  font-family: Lora, serif;
  font-size: calc(1.525rem + 3.3vw);
}
@media (min-width: 1200px) {
  .flexbox-txt-on-image--style_01 .box > article > div > p {
    font-size: 4rem;
  }
}
.flexbox-txt-on-image--style_01 .box > article > div > span {
  font-size: calc(1.325rem + 0.9vw);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1200px) {
  .flexbox-txt-on-image--style_01 .box > article > div > span {
    font-size: 2rem;
  }
}
.flexbox-txt-on-image--style_01 .box > article > div > span::before, .flexbox-txt-on-image--style_01 .box > article > div > span::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 1px;
  background-color: white;
}
.flexbox-txt-on-image--style_01 .box > article > div > span::before {
  margin-right: 0.625rem;
}
.flexbox-txt-on-image--style_01 .box > article > div > span::after {
  margin-left: 0.625rem;
}
.flexbox-txt-on-image--1_1 .box > article > a {
  position: relative;
  display: block;
}
.flexbox-txt-on-image--1_1 .box > article > a:has(a) {
  display: block;
}
.flexbox-txt-on-image--1_1 .box > article > a:before {
  content: "";
  display: block;
  padding-top: 100%;
  text-align: center;
}
.flexbox-txt-on-image--1_1 .box > article > a > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.flexbox-txt-on-image--1_1 .box > article > a img {
  -o-object-fit: contain;
     object-fit: contain;
}
.flexbox-txt-on-image--4_3 .box > article > a {
  position: relative;
  display: block;
}
.flexbox-txt-on-image--4_3 .box > article > a:has(a) {
  display: block;
}
.flexbox-txt-on-image--4_3 .box > article > a:before {
  content: "";
  display: block;
  padding-top: 75%;
  text-align: center;
}
.flexbox-txt-on-image--4_3 .box > article > a > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.flexbox-txt-on-image--4_3 .box > article > a img {
  -o-object-fit: contain;
     object-fit: contain;
}
.flexbox-txt-on-image--3_2 .box > article > a {
  position: relative;
  display: block;
}
.flexbox-txt-on-image--3_2 .box > article > a:has(a) {
  display: block;
}
.flexbox-txt-on-image--3_2 .box > article > a:before {
  content: "";
  display: block;
  padding-top: 66.6666666667%;
  text-align: center;
}
.flexbox-txt-on-image--3_2 .box > article > a > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.flexbox-txt-on-image--3_2 .box > article > a img {
  -o-object-fit: contain;
     object-fit: contain;
}
.flexbox-txt-on-image--16_9 .box > article > a {
  position: relative;
  display: block;
}
.flexbox-txt-on-image--16_9 .box > article > a:has(a) {
  display: block;
}
.flexbox-txt-on-image--16_9 .box > article > a:before {
  content: "";
  display: block;
  padding-top: 56.25%;
  text-align: center;
}
.flexbox-txt-on-image--16_9 .box > article > a > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.flexbox-txt-on-image--16_9 .box > article > a img {
  -o-object-fit: contain;
     object-fit: contain;
}
.flexbox-txt-on-image--2_1 .box > article > a {
  position: relative;
  display: block;
}
.flexbox-txt-on-image--2_1 .box > article > a:has(a) {
  display: block;
}
.flexbox-txt-on-image--2_1 .box > article > a:before {
  content: "";
  display: block;
  padding-top: 50%;
  text-align: center;
}
.flexbox-txt-on-image--2_1 .box > article > a > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.flexbox-txt-on-image--2_1 .box > article > a img {
  -o-object-fit: contain;
     object-fit: contain;
}

.flexbox-image--1_1 .image-wrapper {
  position: relative;
  display: block;
}
.flexbox-image--1_1 .image-wrapper:has(a) {
  display: block;
}
.flexbox-image--1_1 .image-wrapper:before {
  content: "";
  display: block;
  padding-top: 100%;
  text-align: center;
}
.flexbox-image--1_1 .image-wrapper > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.flexbox-image--1_1 .image-wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}
.flexbox-image--4_3 .image-wrapper {
  position: relative;
  display: block;
}
.flexbox-image--4_3 .image-wrapper:has(a) {
  display: block;
}
.flexbox-image--4_3 .image-wrapper:before {
  content: "";
  display: block;
  padding-top: 75%;
  text-align: center;
}
.flexbox-image--4_3 .image-wrapper > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.flexbox-image--4_3 .image-wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}
.flexbox-image--3_2 .image-wrapper {
  position: relative;
  display: block;
}
.flexbox-image--3_2 .image-wrapper:has(a) {
  display: block;
}
.flexbox-image--3_2 .image-wrapper:before {
  content: "";
  display: block;
  padding-top: 66.6666666667%;
  text-align: center;
}
.flexbox-image--3_2 .image-wrapper > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.flexbox-image--3_2 .image-wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}
.flexbox-image--16_9 .image-wrapper {
  position: relative;
  display: block;
}
.flexbox-image--16_9 .image-wrapper:has(a) {
  display: block;
}
.flexbox-image--16_9 .image-wrapper:before {
  content: "";
  display: block;
  padding-top: 56.25%;
  text-align: center;
}
.flexbox-image--16_9 .image-wrapper > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.flexbox-image--16_9 .image-wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}
.flexbox-image--2_1 .image-wrapper {
  position: relative;
  display: block;
}
.flexbox-image--2_1 .image-wrapper:has(a) {
  display: block;
}
.flexbox-image--2_1 .image-wrapper:before {
  content: "";
  display: block;
  padding-top: 50%;
  text-align: center;
}
.flexbox-image--2_1 .image-wrapper > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.flexbox-image--2_1 .image-wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}

.form.form_wrap dl:last-of-type > dt, .form.form_wrap dl:last-of-type > dd {
  border: none;
}
.form.form_wrap dt,
.form.form_wrap dd {
  border: none;
  background-color: transparent;
}
.form.form_wrap dt {
  flex-direction: row;
  justify-content: flex-start;
  background-color: transparent;
}
.form.form_wrap dd input {
  padding: 10px 5px !important;
}

.form.form_wrap dl {
  margin-bottom: 0.625rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #eeeeee;
}
.form.form_wrap dl:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

#TRANS_ANNOT {
  color: rgb(255, 97, 97);
}

h2.mail.title {
  display: none;
}

section div.form_wrap.error {
  background-color: #ff3838;
}
section div.form_wrap.error p {
  color: white;
}

.submit {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: 0;
}
@media (max-width: 640.98px) {
  .submit {
    flex-direction: column;
    align-items: center;
  }
}
.submit button {
  width: 100%;
  flex: 1 0 0;
  margin-top: 0;
}
.submit button:first-child {
  margin-right: 1.25rem;
}
@media (max-width: 640.98px) {
  .submit button:first-child {
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 1.25rem;
  }
}

.bt_confirm,
.bt_back,
.bt_send {
  display: block;
  width: auto;
  height: auto;
  max-width: 300px;
  margin-top: 1.875rem;
  margin-bottom: 3.75rem;
  padding: 1rem 1.5rem;
  background: none;
  border-radius: 100vh;
  border: 1px solid #edcc55;
  text-indent: 0;
}

.hamburger {
  display: inline-block;
  z-index: 1100;
}

.hamburger {
  width: 50px;
  height: 25px;
  position: fixed;
  top: 2.5rem;
  left: 2.5rem;
}
@media (max-width: 640.98px) {
  .hamburger {
    top: 1.25rem;
    left: 1.25rem;
  }
}
.hamburger__line {
  width: 100%;
  height: 0.8px;
  border-radius: 1px;
  background-color: #edcc55;
  position: absolute;
  left: 0;
  transition: all 0.5s ease;
  box-shadow: 0px 0px 2px rgb(226, 226, 226);
}
.hamburger__text {
  color: #edcc55;
  font-family: Noto Serif JP, sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  position: absolute;
  bottom: -25px;
}
.hamburger .line1 {
  top: 0;
}
.hamburger .line2 {
  top: 12px;
}
.hamburger .line3 {
  bottom: 0;
}
.is_open .hamburger .line1 {
  transform: translateY(12px) rotate(-45deg);
}
.is_open .hamburger .line2 {
  opacity: 0;
  visibility: hidden;
}
.is_open .hamburger .line3 {
  transform: translateY(-12px) rotate(45deg);
}

h1 {
  font-size: calc(1.35rem + 1.2vw);
  font-family: Noto Serif JP, sans-serif;
  font-weight: 400;
}
@media (min-width: 1200px) {
  h1 {
    font-size: 2.25rem;
  }
}

h2 {
  font-size: calc(1.3rem + 0.6vw);
  font-family: Noto Serif JP, sans-serif;
  font-weight: 400;
}
@media (min-width: 1200px) {
  h2 {
    font-size: 1.75rem;
  }
}

h3 {
  font-size: 1.25rem;
  font-family: Noto Serif JP, sans-serif;
  font-weight: 400;
}

.h2 {
  margin-bottom: 1.25rem;
}
.h2 h2 {
  padding: 1rem 1.5rem;
  color: white;
  background-color: #edcc55;
}
.h2:not(:has(h2)) {
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #edcc55;
}

.h3 {
  margin-bottom: 1.25rem;
}
.h3 h3 {
  padding-left: 0.625rem;
  border-left: 2px solid #6c2816;
}
.m-map__wrapper {
  min-height: 400px;
}
.m-map--1_1 t-map__wrapper {
  position: relative;
  display: block;
}
.m-map--1_1 t-map__wrapper:has(a) {
  display: block;
}
.m-map--1_1 t-map__wrapper:before {
  content: "";
  display: block;
  padding-top: 100%;
  text-align: center;
}
.m-map--1_1 t-map__wrapper > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.m-map--1_1 t-map__wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}
.m-map--4_3 t-map__wrapper {
  position: relative;
  display: block;
}
.m-map--4_3 t-map__wrapper:has(a) {
  display: block;
}
.m-map--4_3 t-map__wrapper:before {
  content: "";
  display: block;
  padding-top: 75%;
  text-align: center;
}
.m-map--4_3 t-map__wrapper > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.m-map--4_3 t-map__wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}
.m-map--3_2 t-map__wrapper {
  position: relative;
  display: block;
}
.m-map--3_2 t-map__wrapper:has(a) {
  display: block;
}
.m-map--3_2 t-map__wrapper:before {
  content: "";
  display: block;
  padding-top: 66.6666666667%;
  text-align: center;
}
.m-map--3_2 t-map__wrapper > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.m-map--3_2 t-map__wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}
.m-map--16_9 t-map__wrapper {
  position: relative;
  display: block;
}
.m-map--16_9 t-map__wrapper:has(a) {
  display: block;
}
.m-map--16_9 t-map__wrapper:before {
  content: "";
  display: block;
  padding-top: 56.25%;
  text-align: center;
}
.m-map--16_9 t-map__wrapper > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.m-map--16_9 t-map__wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}
.m-map--2_1 t-map__wrapper {
  position: relative;
  display: block;
}
.m-map--2_1 t-map__wrapper:has(a) {
  display: block;
}
.m-map--2_1 t-map__wrapper:before {
  content: "";
  display: block;
  padding-top: 50%;
  text-align: center;
}
.m-map--2_1 t-map__wrapper > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.m-map--2_1 t-map__wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}

.mv {
  position: relative;
}
.mv .title {
  width: -moz-max-content;
  width: max-content;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  font-family: Noto Serif JP, sans-serif;
  font-weight: 700;
  font-size: calc(1.425rem + 2.1vw);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media (min-width: 1200px) {
  .mv .title {
    font-size: 3rem;
  }
}
.mv .title__main, .mv .title__sub {
  display: block;
  color: #ffffff;
  text-align: center;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}
.mv .title__main {
  font-size: calc(1.875rem + 7.5vw);
  font-family: Lora, serif;
}
@media (min-width: 1200px) {
  .mv .title__main {
    font-size: 7.5rem;
  }
}
@media (max-width: 1200.98px) {
  .mv .title__main {
    font-size: 48px;
  }
}
@media (max-width: 834.98px) {
  .mv .title__main {
    font-size: 36px;
  }
}
@media (max-width: 640.98px) {
  .mv .title__main {
    font-size: 24px;
  }
}
.mv .title__sub {
  font-size: calc(1.35rem + 1.2vw);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1200px) {
  .mv .title__sub {
    font-size: 2.25rem;
  }
}
.mv .title__sub::before, .mv .title__sub::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 1px;
  background-color: white;
}
.mv .title__sub::before {
  margin-right: 0.625rem;
}
.mv .title__sub::after {
  margin-left: 0.625rem;
}
.mv .slider__list:not(:first-child) {
  display: none;
}
.slick-initialized .slider__list:not(:first-child) {
  display: block;
}

.mv .slider__list img {
  -o-object-fit: cover;
     object-fit: cover;
}

.nav {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  transition-property: opacity, background-color, visibility, transform;
  transition-duration: 0.5s;
  transition-timing-function: ease;
  z-index: 1000;
}
.nav .nav__lists {
  list-style: none;
}
.nav .nav__link {
  color: inherit;
  text-decoration: none;
}
.is_open {
  overflow-y: hidden;
}
.is_open .nav {
  opacity: 1;
}

.header__inner::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 899;
  transition: 0.5s ease;
}

.is_open .header__inner::before {
  opacity: 1;
  transition: 0.5s ease;
}
.is_open .nav {
  transform: translate(0, 0);
}

.nav {
  width: 17.7083333333%;
  min-width: 250px;
  background-color: white;
  opacity: 1;
  visibility: visible;
  transform: translate(-100%, 0);
  transition-property: opacity, background-color, visibility, transform;
  transition-duration: 0.5s;
  transition-timing-function: ease;
}
.nav__lists {
  display: flex;
  display: block;
  max-width: 70%;
  margin-right: auto;
  margin-left: auto;
  padding-top: 7rem;
}
.nav__list {
  text-align: left;
  position: relative;
  margin-right: 0 !important;
  margin-bottom: 2.5rem;
  border-bottom: 1px dotted white;
  position: static;
}
.nav__list:before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: white;
  position: absolute;
  bottom: -5px;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: 0.2s ease-out;
}
.nav__list:before {
  content: none;
}
.nav__list .red {
  color: rgb(167, 0, 0);
}
.nav__list .green {
  color: rgb(0, 107, 0);
}
.nav__link {
  display: inline-block;
  border-bottom: 1px solid transparent;
  transition: 0.3s ease;
}

.breadcrumb {
  margin-top: 1.875rem;
  margin-bottom: 3.75rem;
}
.breadcrumb li {
  margin-right: 0.625rem;
}
.breadcrumb li:last-child {
  margin-right: 0;
}
.breadcrumb li, .breadcrumb a {
  color: #111111 !important;
  font-size: 0.875rem;
  text-decoration: none;
}
.breadcrumb .pankuzu {
  display: flex;
}

.policy h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
}
.policy p {
  margin-bottom: 3rem;
}

.sns .sns_list {
  border: none;
}
.sns .sns_list__list {
  display: block;
  border-bottom: none;
  border: none;
}
.sns .sns_list .sns_photo {
  width: 100%;
  padding: 0;
}
.sns .sns_list .sns_photo a {
  display: block;
}
.sns .sns_list .sns_text {
  width: 100%;
  padding: 0;
  font-size: 1rem;
}
.sns .sns_list .sns_text .caption {
  word-break: break-all;
}
.sns .sns_list .sns_text ul {
  display: none;
}

.sns--image-only .sns_text {
  display: none;
}
.sns--image-only img {
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
.sns--style_01 .sns_photo img {
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
.sns--style_01 .slick-slide {
  margin: 0 0.625rem;
}
.sns--1_1 .sns_photo > a {
  position: relative;
  display: block;
}
.sns--1_1 .sns_photo > a:has(a) {
  display: block;
}
.sns--1_1 .sns_photo > a:before {
  content: "";
  display: block;
  padding-top: 100%;
  text-align: center;
}
.sns--1_1 .sns_photo > a > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.sns--1_1 .sns_photo > a img {
  -o-object-fit: contain;
     object-fit: contain;
}
.sns--4_3 .sns_photo > a {
  position: relative;
  display: block;
}
.sns--4_3 .sns_photo > a:has(a) {
  display: block;
}
.sns--4_3 .sns_photo > a:before {
  content: "";
  display: block;
  padding-top: 75%;
  text-align: center;
}
.sns--4_3 .sns_photo > a > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.sns--4_3 .sns_photo > a img {
  -o-object-fit: contain;
     object-fit: contain;
}
.sns--3_2 .sns_photo > a {
  position: relative;
  display: block;
}
.sns--3_2 .sns_photo > a:has(a) {
  display: block;
}
.sns--3_2 .sns_photo > a:before {
  content: "";
  display: block;
  padding-top: 66.6666666667%;
  text-align: center;
}
.sns--3_2 .sns_photo > a > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.sns--3_2 .sns_photo > a img {
  -o-object-fit: contain;
     object-fit: contain;
}
.sns--16_9 .sns_photo > a {
  position: relative;
  display: block;
}
.sns--16_9 .sns_photo > a:has(a) {
  display: block;
}
.sns--16_9 .sns_photo > a:before {
  content: "";
  display: block;
  padding-top: 56.25%;
  text-align: center;
}
.sns--16_9 .sns_photo > a > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.sns--16_9 .sns_photo > a img {
  -o-object-fit: contain;
     object-fit: contain;
}
.sns--2_1 .sns_photo > a {
  position: relative;
  display: block;
}
.sns--2_1 .sns_photo > a:has(a) {
  display: block;
}
.sns--2_1 .sns_photo > a:before {
  content: "";
  display: block;
  padding-top: 50%;
  text-align: center;
}
.sns--2_1 .sns_photo > a > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.sns--2_1 .sns_photo > a img {
  -o-object-fit: contain;
     object-fit: contain;
}

.m-shop {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.m-shop .items {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
}
.m-shop .items > article {
  align-items: flex-start;
  width: auto;
  margin-bottom: 0;
  margin-left: 0;
}
@media (max-width: 640.98px) {
  .m-shop .items > article {
    margin-right: 0;
  }
}
.m-shop .items .photo {
  width: 100%;
  height: 100px;
}
.m-shop .items .name {
  padding-top: 0;
}
.m-shop .items .summary {
  padding-top: 0;
  text-align: left;
}
.m-shop .items .price {
  padding-top: 0;
}

.m-shop .items .photo {
  height: 300px;
  margin-bottom: 0.625rem;
}
.m-shop .items .name {
  margin-bottom: 0.625rem;
}
.m-shop .items .summary {
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
}
.m-shop .items .price {
  width: 100%;
  margin-top: auto;
  text-align: right;
}

@media (max-width: 640.98px) {
  .tbl--style_01 tbody {
    font-size: 0.625rem;
  }
}
.tbl--style_01 tr:first-child {
  background-color: #6c2816;
}
.tbl--style_01 tr:first-child > td > div {
  color: #ffffff;
}

.ul-number li:last-child, .ul-icon li:last-child, .ul-links li:last-child, .ul-tag li:last-child, .ul li:last-child {
  margin-right: 0;
}

.ul--style_01 li {
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  color: white;
  background-color: #6c2816;
  border-radius: 10px;
}

.ul-tag {
  display: flex;
  flex-wrap: wrap;
  display: flex;
  flex-wrap: wrap;
}
.ul-tag ul {
  display: flex;
  flex-wrap: wrap;
}
.ul-tag ul > li {
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  background-color: rgb(225, 242, 255);
}
.ul-tag > li {
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  background-color: rgb(225, 242, 255);
}
.ul-tag > li > a {
  padding: 0.5rem 1rem;
}

.ul-links ul {
  display: flex;
  flex-wrap: wrap;
}
.ul-links ul > li {
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  background-color: #6c2816;
}
.ul-links ul > li > a {
  display: inline-block;
  padding: 0.5rem 1rem;
  color: color(white);
}
.ul-links ul > li > a:after {
  content: "\f105";
  display: inline-block;
  margin-left: 0.625rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.ul-icon ul > li {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 1rem;
}
.ul-icon ul > li:before {
  content: "\f1b9";
  margin-right: 0.3125rem;
  color: #6c2816;
  font-size: 1.25rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.ul-number ul {
  counter-reset: number;
}
.ul-number ul > li {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
  padding-left: 0.5rem 1rem;
  position: relative;
}
.ul-number ul > li:before {
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: white;
  background-color: color(themes);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.header__inner {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-top: 2.5rem;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
}
@media (max-width: 834.98px) {
  .header__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media (max-width: 640.98px) {
  .header__inner {
    margin-top: 1.25rem;
  }
}
.header .logo {
  position: fixed;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 0;
}
.header .logo img {
  width: 190px;
}
@media (max-width: 640.98px) {
  .header .logo img {
    width: 150px;
  }
}
.is_open .logo::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  transition: 0.5s ease;
}

.header .contact {
  margin-left: auto;
}
@media (max-width: 1200.98px) {
  .header .contact {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
  }
}
@media (max-width: 1200.98px) {
  .header .tel__text {
    display: none;
  }
}
.header .btn * {
  color: #ffffff;
}
@media (max-width: 1200.98px) {
  .header .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    padding: 0;
    border-radius: 60px;
  }
}

.footer__inner {
  max-width: 1520px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
}
@media (max-width: 834.98px) {
  .footer__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.shopinfo {
  margin-bottom: 3.75rem;
}
.shopinfo__list {
  margin-bottom: 3.75rem;
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
  border-bottom: 1px solid #6c2816;
}
.shopinfo__list::marker {
  content: none;
}
.shopinfo__list:first-child {
  border-top: 1px solid #6c2816;
}
.shopinfo__list:last-child {
  margin-bottom: 0;
}
span[id*=access] .shopinfo__list {
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: none;
}
span[id*=access] .shopinfo__list:first-child {
  border-top: none;
}

.shopinfo__wrapper {
  display: flex;
}
@media (max-width: 1000.98px) {
  .shopinfo__wrapper {
    flex-direction: column;
  }
}
.shopinfo__cont {
  flex: 0 0 calc(50% - 3.75rem);
  margin-right: 3.75rem;
}
@media (max-width: 1000.98px) {
  .shopinfo__cont {
    margin-right: 0;
    margin-bottom: 2.5rem;
  }
}
.shopinfo__title-wrapper {
  display: flex;
  flex: 0 0 83.5616438356%;
  margin-bottom: 3.75rem;
}
@media (max-width: 1000.98px) {
  .shopinfo__title-wrapper {
    flex-direction: column-reverse;
    flex: 1 0 100%;
  }
}
.shopinfo__title, .shopinfo__subtitle {
  color: #6c2816;
}
.shopinfo__title {
  margin-right: 0.625rem;
  font-size: 1.875rem;
  text-align: left;
}
.shopinfo__subtitle {
  font-size: 1.25rem;
}
.shopinfo__logo {
  flex: 1 0 0;
  min-width: 115px;
  max-width: 115px;
  margin-left: auto;
}
@media (max-width: 1000.98px) {
  .shopinfo__logo {
    margin-right: auto;
    margin-left: 0;
    margin-bottom: 0.625rem;
  }
}
.shopinfo__details {
  display: flex;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px dotted #6c2816;
  text-align: left;
}
.shopinfo__details:last-child {
  margin-bottom: 0;
}
.shopinfo__term {
  flex: 0 0 38.3561643836%;
  margin-right: 0.625rem;
}
.shopinfo .m-map {
  flex: 1 0 0;
}
@media (max-width: 1000.98px) {
  .shopinfo .m-map {
    margin-bottom: 2.5rem;
  }
}
.shopinfo .m-map__wrapper iframe {
  width: 100%;
}

.copyright {
  margin-bottom: 3.75rem;
  font-size: 0.875rem;
}

html {
  overflow-x: hidden;
}

body {
  position: relative;
}

.greet__title > article > h2,
.taste__title > article > h2,
.news__title > article > h2,
.shop__title > article > h2 {
  font-family: Lora, serif;
  font-weight: 400;
  font-size: calc(1.725rem + 5.7vw);
}
@media (min-width: 1200px) {
  .greet__title > article > h2,
  .taste__title > article > h2,
  .news__title > article > h2,
  .shop__title > article > h2 {
    font-size: 6rem;
  }
}
.greet__title > article > div,
.taste__title > article > div,
.news__title > article > div,
.shop__title > article > div {
  font-size: calc(1.35rem + 1.2vw);
}
@media (min-width: 1200px) {
  .greet__title > article > div,
  .taste__title > article > div,
  .news__title > article > div,
  .shop__title > article > div {
    font-size: 2.25rem;
  }
}

.greet__title,
.taste__title,
.shop__title {
  margin-bottom: 3.75rem;
}
@media (max-width: 1200.98px) {
  .greet__title,
  .taste__title,
  .shop__title {
    margin-bottom: 2.5rem;
  }
}
.greet__title > article > h2,
.taste__title > article > h2,
.shop__title > article > h2 {
  color: #6c2816;
}
.greet__title > article > div,
.taste__title > article > div,
.shop__title > article > div {
  color: #6c2816;
  display: flex;
  align-items: center;
  justify-content: center;
}
.greet__title > article > div::before, .greet__title > article > div::after,
.taste__title > article > div::before,
.taste__title > article > div::after,
.shop__title > article > div::before,
.shop__title > article > div::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 1px;
  background-color: #6c2816;
}
.greet__title > article > div::before,
.taste__title > article > div::before,
.shop__title > article > div::before {
  margin-right: 0.625rem;
}
.greet__title > article > div::after,
.taste__title > article > div::after,
.shop__title > article > div::after {
  margin-left: 0.625rem;
}

.greet,
.taste {
  display: flex;
  align-items: center;
}
@media (max-width: 1200.98px) {
  .greet,
  .taste {
    flex-direction: column-reverse !important;
    margin-bottom: 9.375rem;
  }
}
.greet__img,
.taste__img {
  flex: 0 0 50%;
}
.greet__img img,
.taste__img img {
  width: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1200.98px) {
  .greet__img img,
  .taste__img img {
    max-height: 350px;
  }
}
@media (max-width: 1200.98px) {
  .greet__img,
  .taste__img {
    width: 100%;
  }
}
.greet__wrapper,
.taste__wrapper {
  flex: 1 0 0;
  padding: 1.25rem 2.5rem;
}
@media (max-width: 1200.98px) {
  .greet__wrapper,
  .taste__wrapper {
    margin-bottom: 2.5rem;
    padding: 0 1.25rem;
  }
}
.greet__body > div,
.taste__body > div {
  line-height: 2.5;
}

@media (max-width: 1200.98px) {
  .greet {
    margin-top: 9.375rem;
  }
}
.greet__conts .box {
  max-width: 150px;
  position: relative;
  display: block;
  background-color: #edcc55;
  border-radius: 100%;
}
.greet__conts .box:has(a) {
  display: block;
}
.greet__conts .box:before {
  content: "";
  display: block;
  padding-top: 100%;
  text-align: center;
}
.greet__conts .box > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.greet__conts .box img {
  -o-object-fit: contain;
     object-fit: contain;
}
.greet__conts .box > div {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: calc(1.3125rem + 0.75vw);
}
@media (min-width: 1200px) {
  .greet__conts .box > div {
    font-size: 1.875rem;
  }
}
.greet__body {
  margin-top: 3.75rem;
}

.taste {
  flex-direction: row-reverse;
}
.taste__title > article:before {
  content: "Sehr Lecker!";
  display: block;
  color: #edcc55;
  font-family: Tangerine, cursive;
  font-size: calc(1.5rem + 3vw);
  line-height: 1;
  text-align: center;
}
@media (min-width: 1200px) {
  .taste__title > article:before {
    font-size: 3.75rem;
  }
}

.news {
  padding-top: 11.25rem;
  padding-bottom: 11.25rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.news__inner {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
}
@media (max-width: 834.98px) {
  .news__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media (max-width: 834.98px) {
  .news__inner {
    flex-direction: column;
  }
}
.news__title {
  margin-right: 2.5rem;
}
@media (max-width: 834.98px) {
  .news__title {
    margin-right: 0;
    margin-bottom: 2.5rem;
  }
}
.news__title > article > h2 {
  color: #ffffff;
}
.news__title > article > div {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news__title > article > div::before, .news__title > article > div::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 1px;
  background-color: #ffffff;
}
.news__title > article > div::before {
  margin-right: 0.625rem;
}
.news__title > article > div::after {
  margin-left: 0.625rem;
}
.news__blog {
  flex: 1 0 0;
}
.news__blog * {
  color: #ffffff;
}

.shop {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}
.shop__inner {
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
}
@media (max-width: 834.98px) {
  .shop__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.instagram {
  margin-bottom: 7.5rem;
}
.instagram img {
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

.blog .wrap {
  width: 100%;
  max-width: 100%;
  padding: 0;
  background-color: transparent;
}
.blog #contents {
  width: auto;
  min-width: 0 !important;
  overflow: unset;
}
.blog #contents > article {
  padding: 0;
}
.blog #contents > article > h1 {
  padding-bottom: 0;
  line-height: 1.6;
  font-size: 16px;
  color: initial;
}
.blog #contents > article > ul {
  margin-bottom: 0;
}
.blog #contents > article > ul > li > a {
  margin-right: 0;
}
.blog #contents > article > div > article {
  padding: 0;
}
.blog #contents > dl {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
}
.blog #contents > dl > dt {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  line-height: 1.6;
  border: none;
  border-radius: 0;
}
.blog #contents > dl > dt > div > .date {
  font-size: 1rem;
}
.blog #contents > dl > dt > div > a {
  font-size: 1rem;
}
.blog #contents > dl > dt > div > a > .translate {
  font-size: 1rem;
}
.blog #contents .clearfix > li > a {
  margin-right: 0;
  line-height: 1.6;
}
.blog #contents .box article {
  padding: 0;
}
.blog #contents article h2 {
  padding-bottom: 0;
  font-size: 1rem;
  color: #111111;
  line-height: 1.6;
}
.blog #contents article img {
  margin: 0;
}
.blog aside {
  width: auto;
  min-width: 0;
  padding: 0;
  overflow: unset;
}
.blog aside > nav {
  padding: 0;
  text-align: left;
}
.blog aside > nav > div {
  color: #111111;
  font-size: 1rem;
  line-height: 1.6;
}
.blog aside > nav > div:nth-of-type(2) {
  margin-top: 0;
}
.blog aside > nav > a {
  padding-right: 0;
  margin-top: 0px;
}
.blog #calendar {
  margin: 0;
}
.blog #form_calendar {
  max-width: 100%;
  min-width: 0;
  box-shadow: none;
  margin: 0;
}
.blog #form_calendar > table {
  margin-bottom: 0;
}
.blog #form_calendar > table > thead > tr > th {
  font-size: 0.625rem;
}
.blog #search > form > button {
  top: 50%;
  right: 0.3125rem;
  transform: translate(0, -50%);
}
.blog .category > li {
  padding: 0;
  border-bottom: none;
}
.blog .category > li:first-child {
  border-top: 0;
}
.blog .pages > li {
  padding: 0;
  text-align: left;
  border-bottom: none;
}
.blog .pages > li:first-child {
  border-top: 0;
}
.blog span[id*=TRANS_] {
  padding-right: 0;
}

.blog {
  box-sizing: inherit;
  margin-top: 2.5rem;
  margin-bottom: 6.25rem;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
}
@media (max-width: 834.98px) {
  .blog {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
.blog #contents {
  flex: 1 0 0;
}
.blog #contents > article > h1 {
  margin-bottom: 1.25rem;
}
.blog #contents > article > h1 > span {
  font-size: 1.875rem;
}
.blog #contents .h2 h2 {
  padding: 1rem 1.5rem;
  color: #ffffff;
  font-size: 1.5rem;
}
.blog #contents > article > ul {
  margin-bottom: 1.875rem;
}
.blog #contents > article > ul > li {
  margin-right: 0.625rem;
}
.blog #contents > article > ul > li:last-child {
  margin-right: 0;
}
.blog #contents > article > ul > li > a {
  font-size: 0.875rem;
}
.blog aside {
  flex: 0 0 30%;
  margin-right: 2.5rem;
}
@media (max-width: 640.98px) {
  .blog aside {
    margin-right: 0;
  }
}
.blog aside nav > div {
  margin-bottom: 0.3125rem;
  font-size: 1.5rem;
}
.blog #calendar {
  margin-bottom: 1.25rem;
}
.blog #search {
  margin-bottom: 1.25rem;
}
.blog .category {
  margin-bottom: 2.5rem;
}
.blog .category li {
  margin-bottom: 0.625rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #ffffff;
}
.blog .category li:last-child {
  margin-bottom: 0;
}
.blog .pages li {
  margin-bottom: 1.25rem;
}
.blog .pages li > a {
  font-size: 0.875rem;
}
.blog .pages li > a > span {
  font-size: 1rem;
}
.blog #contents > dl {
  margin-bottom: 3.75rem;
}
.blog #contents > dl .date {
  margin-bottom: 0.625rem;
}
.blog #contents > article[id*=page] {
  margin-bottom: 7.5rem;
}

#is_shop .purchase.confirm .edit_customer,
#is_shop .purchase.confirm .edit_deliver,
#is_shop .purchase.confirm .edit_payment,
#is_shop .purchase.confirm .edit_shipment, #is_shop .purchase .next,
#is_shop .purchase .add_deliver, #is_shop .purchase .addrs .deliver, #is_shop .shipment > button, #is_shop #sumcart .sum .button .purchase,
#is_shop #sumcart .sum .button .back {
  width: auto;
  height: auto;
  font-size: 1rem;
  border: none;
  border-radius: 0;
  text-indent: 0;
  margin: 0;
  background: none;
}

#is_shop h2 {
  margin-top: 0 !important;
  font-size: 1rem !important;
  line-height: 1.6 !important;
  color: #333333 !important;
  border-bottom: none !important;
}
#is_shop #keyword {
  display: block;
  width: auto;
  border-radius: 0;
  border: none;
  float: none;
}
#is_shop .search {
  display: block;
  margin-top: 0;
}
#is_shop .search .text {
  width: auto;
}
#is_shop .search .text input[type=text] {
  height: auto;
  padding: 0;
  border-left: 0;
  border-radius: 0;
}
#is_shop .search .text > button {
  width: 20px;
  height: 20px;
  background-size: contain;
  background-position: center center;
  top: 50%;
  right: 10px;
  transform: translate(0, -50%);
}
#is_shop .search .select {
  width: auto;
  min-width: 0;
  border-radius: 0;
  float: none;
  position: relative;
}
#is_shop .search .select:after {
  content: none;
}
#is_shop .search .select > select {
  height: 100%;
  padding: 0;
  line-height: 1.6;
  border-radius: 0;
  background: none;
}
#is_shop .search .pager {
  display: flex;
  width: auto;
  margin-top: 0;
  float: none;
}
#is_shop .search .pager .off {
  width: auto;
  height: auto;
  margin-left: 0;
  color: transparent;
  background-color: transparent;
  border-radius: 0;
  border: none;
  overflow: hidden;
  float: none;
  text-indent: 0;
  font-weight: normal;
  position: relative;
  z-index: 0;
}
#is_shop .search .pager .prev.off,
#is_shop .search .pager .next.off {
  background-image: none;
}
#is_shop .under {
  margin-top: 0;
  margin-left: 0;
}
#is_shop .under > ul > li {
  width: auto;
  margin-top: 0;
  margin-right: 0;
  margin-left: 0;
  float: none;
}
#is_shop .under > ul > li > a {
  padding: 0;
  height: auto;
  font-size: 1rem;
  line-height: 1.6;
  border: none;
}
#is_shop .under > ul > li > a:hover {
  background-color: unset;
  color: initial;
}
#is_shop .order {
  margin-top: 0;
  font-size: 1rem;
  border-bottom: none;
}
#is_shop .order:after {
  content: none;
}
#is_shop .order > p {
  line-height: 1.6;
  float: none;
}
#is_shop .order > ul {
  justify-content: flex-start;
  float: none;
}
#is_shop .order > ul > li {
  margin: 0;
}
#is_shop .items {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  font-size: 1rem;
}
#is_shop .items > article {
  width: auto;
  align-items: flex-start;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}
#is_shop .items .photo {
  width: auto;
  height: auto;
}
#is_shop .items .name {
  padding-top: 0;
  text-decoration: none;
}
#is_shop .items .summary {
  padding-top: 0;
  text-align: left;
}
#is_shop .items .price {
  padding-top: 0;
}
#is_shop .crumb {
  margin-top: 0;
}
#is_shop .crumb > ul > li {
  margin-right: 0;
  line-height: 1.6;
  float: none;
}
#is_shop .crumb > ul > li:after {
  margin-left: 0;
  font-weight: normal;
}
#is_shop .item {
  margin-top: 0;
}
#is_shop .item .photo {
  display: block;
  margin-left: 0;
}
#is_shop .item .photo .large {
  margin-left: 0;
  margin-bottom: 0;
}
#is_shop .item .photo .small {
  min-width: 0;
  max-width: 100%;
}
#is_shop .item .photo .small > ul > li {
  margin-left: 0;
  margin-bottom: 0;
  flex-basis: auto;
}
#is_shop .item .item_view {
  margin-left: 0;
  min-width: 0;
  max-width: 100%;
}
#is_shop .item .item_view > h2 {
  font-size: 1rem;
  line-height: 1.6;
}
#is_shop .item .item_view > h2 > span {
  font-size: 0.75rem;
  line-height: 1.6;
  text-align: right;
}
#is_shop .item .item_view > ul {
  margin-top: 0;
}
#is_shop .item .item_view > ul > li {
  margin-right: 0;
  float: none;
}
#is_shop .item .item_view > ul > li > a {
  padding: 0;
  background-color: transparent;
  border: none;
  border-radius: 0;
}
#is_shop .struct {
  display: block;
  margin-top: 0;
}
#is_shop .sku {
  width: 100%;
}
#is_shop .sku .price {
  font-size: 1rem;
  line-height: 1.6;
}
#is_shop .sku .price > label {
  font-size: 0.75rem;
}
#is_shop .item_option {
  width: 100%;
}
#is_shop .item_option > form > dl {
  display: block;
  margin-bottom: 0;
  border: none;
}
#is_shop .item_option > form > dl > dt {
  display: block;
  padding: 0;
  min-height: 0;
  background-color: transparent;
}
#is_shop .item_option > form > dl > dd {
  padding: 0;
}
#is_shop .item_option .select:after {
  content: none;
  border: none;
  top: auto;
  right: auto;
}
#is_shop .item_option .select > select {
  padding: 0;
  border: none;
  border-radius: 0;
  font-size: 1rem;
  line-height: 1.6;
}
#is_shop .count {
  display: block;
  margin-bottom: 0;
  border: none;
}
#is_shop .count > dt {
  display: block;
  padding: 0;
  min-height: 0;
  background-color: transparent;
  font-size: 16px;
}
#is_shop .count > dd {
  padding: 0;
}
#is_shop .count > button {
  height: auto;
  border: none;
  border-radius: 0;
}
#is_shop .addcart .addcart {
  width: auto;
  height: auto;
  margin: 0;
  background: none;
  border-radius: 0;
  border: none;
  text-indent: 0;
  float: none;
}
#is_shop .addcart > a {
  margin-top: 0;
}
#is_shop .detail {
  margin-top: 0;
}
#is_shop .attr {
  margin-top: 0;
}
#is_shop .attr > h3 {
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
}
#is_shop .attr > dl {
  border: none;
  font-size: 1rem;
}
#is_shop .attr > dl > dt {
  min-width: 0;
  padding: 0;
  background-color: transparent;
  border-right: none;
}
#is_shop .attr > dl > dd {
  padding: 0;
}
#is_shop .detail2 {
  margin-top: 0;
}
#is_shop .bundle_set {
  margin-top: 0;
}
#is_shop .bundle_set > h3 {
  color: #333333;
  font-size: 1rem;
  line-height: 1.6;
}
#is_shop .flip {
  overflow: unset;
}
#is_shop .flip > ul > li {
  width: auto;
  height: auto;
  margin-right: 0;
  margin-bottom: 0;
  float: none;
}
#is_shop .flip > ul > li:after {
  font-size: 1rem;
  font-weight: normal;
  top: auto;
  right: auto;
  left: auto;
}
#is_shop .flip .photo {
  height: 0;
  background-size: contain;
}
#is_shop .flip .name {
  padding-top: 0;
  text-align: left;
}
#is_shop .flip .price {
  padding-top: 0;
  text-align: right;
}
#is_shop .bar {
  background: transparent;
  height: auto;
}
#is_shop .bar > p {
  margin-left: 0;
  font-size: 1rem;
  line-height: 1.6;
  float: none;
}
#is_shop .bar > p > span {
  color: colo(text);
  font-size: 1rem;
  font-weight: normal;
}
#is_shop .bar > p > span > label {
  font-size: 0.75rem;
}
#is_shop .bar .addcart {
  width: auto;
  height: auto;
  margin: 0;
  background: none;
  border-radius: 0;
  border: none;
  text-indent: 0;
  float: none;
}
#is_shop .relay {
  margin-top: 0;
}
#is_shop .relay > h3 {
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
}
#is_shop .relay .flip {
  width: 100%;
  overflow: unset;
}
#is_shop .relay .flip > ul {
  width: auto;
}
#is_shop .relay .page {
  width: auto;
  height: auto;
  line-height: 0;
  color: #333333;
  background-color: transparent;
  font-size: 1rem;
  border: none;
  border-radius: 0;
  text-shadow: none;
}
#is_shop .form_wrap {
  margin-top: 0;
}
#is_shop .form_wrap > dl > dt, #is_shop .form_wrap > dl > dd {
  padding: 0;
  background-color: transparent;
  border: none;
}
#is_shop #sumcart > h2 {
  margin-top: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
}
#is_shop #sumcart > ul {
  margin-top: 0;
  margin-bottom: 0;
}
#is_shop #sumcart > ul > li {
  padding: 0;
  border-bottom: none;
}
#is_shop #sumcart ul li a {
  padding: 0;
  line-height: 1.6;
  font-size: 1rem;
}
#is_shop #sumcart ul li p {
  padding: 0;
}
#is_shop #sumcart ul li input {
  width: auto;
  height: auto;
  border: none;
  border-radius: 0;
  text-align: left;
}
#is_shop #sumcart .photo {
  display: inline-block;
  min-width: 0;
  max-width: 100%;
  max-height: 100%;
}
#is_shop #sumcart .photo .photo {
  width: auto;
  height: auto;
  background-size: contain;
  padding: 0;
  font-size: 1rem;
  line-height: 1.6;
}
#is_shop #sumcart .count {
  min-width: 0;
  max-width: 100%;
  align-items: flex-start;
  justify-content: flex-start;
}
#is_shop #sumcart .count > input[type=text] {
  padding: 0;
}
#is_shop #sumcart .sum {
  display: block;
  padding: 0;
  background-color: transparent;
  font-size: 1rem;
}
#is_shop #sumcart .sum > div {
  align-items: stretch;
}
#is_shop #sumcart .sum .sum_count {
  width: auto;
  font-size: 1rem;
  font-weight: normal;
  text-align: left;
  text-indent: 0;
  line-height: 1.6;
  background: none;
}
#is_shop #sumcart .sum > div > div {
  min-width: 0;
  max-width: 100%;
}
#is_shop #sumcart .sum > div > div:nth-child(1) {
  width: auto;
}
#is_shop #sumcart .sum .sum_price > dt {
  min-width: 0;
  max-width: 100%;
  font-size: 1rem;
  line-height: 1.6;
}
#is_shop #sumcart .sum .sum_price > dd {
  color: #333333;
  font-weight: normal;
  font-size: 1rem;
  text-align: left;
  line-height: 1.6;
}
#is_shop #sumcart .sum > p {
  text-align: left;
}
#is_shop .postage {
  margin-top: 0;
  padding: 0;
  background: none;
}
#is_shop .purchase > h2 {
  margin: 0;
  border-bottom: 0;
  line-height: 1.6;
}
#is_shop .form_wrap > dl {
  margin-top: 0;
}
#is_shop .form_wrap > dl > dt {
  min-width: 0;
  max-width: 100%;
}
#is_shop .form_wrap .birthday {
  display: flex;
}
#is_shop .form_wrap .birthday > div {
  float: 0;
}
#is_shop .form_wrap .next {
  width: auto;
  height: auto;
  margin: 0;
  background: none;
  border: none;
  border-radius: 0;
  text-indent: 0;
}
#is_shop .shipment > dl {
  margin-bottom: 0;
}
#is_shop .purchase .addrs > ul > li {
  margin: 0;
  width: 100%;
}
#is_shop .purchase .addrs > ul > li > dl {
  margin: 0;
}
#is_shop .purchase .addrs > ul > li > dl > dd {
  line-height: 1.6;
  font-weight: normal;
}
#is_shop .purchase .addrs .link {
  margin-top: 0px;
}
#is_shop .purchase.confirm .edit_payment:before {
  content: "お支払方法の変更";
}
#is_shop .purchase.confirm .deliver_item > dd > ul > li {
  flex-wrap: nowrap;
  align-items: center;
  margin-bottom: 0;
}
#is_shop .purchase.confirm .deliver_item > dd > ul > li:last-child {
  margin-bottom: 0;
}
#is_shop .purchase.confirm .deliver_item > dd > ul > li > div:nth-child(n+3) {
  min-width: 0;
  max-width: 100%;
}
#is_shop .purchase.confirm .deliver_item .photo {
  width: auto;
  max-width: 100%;
  min-width: 0;
}
#is_shop .purchase.confirm .deliver_item .photo .photo {
  width: 100%;
  height: 100px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  float: none;
  margin-right: 0;
}
#is_shop .purchase.confirm .deliver_item .item {
  width: auto;
  margin-bottom: 0;
}
#is_shop .purchase.confirm .deliver_item .item .number {
  padding-bottom: 0;
  font-size: 1rem;
}
@media (max-width: 834.98px) {
  #is_shop .purchase.confirm .deliver_item .price,
  #is_shop .purchase.confirm .deliver_item .count,
  #is_shop .purchase.confirm .deliver_item .subtotal {
    padding-right: 0;
    background: none;
    line-height: 1.6;
  }
}
@media (max-width: 834.98px) {
  #is_shop .purchase.confirm .deliver_item .price > p,
  #is_shop .purchase.confirm .deliver_item .count > p,
  #is_shop .purchase.confirm .deliver_item .subtotal > p {
    font-size: 16px;
  }
}
#is_shop .purchase.confirm .total > dd > div {
  width: auto;
}
#is_shop .purchase.confirm .total > dd > div:nth-child(n+2) {
  min-width: 0;
  max-width: 100%;
}
#is_shop .purchase.confirm .total.amount > dt {
  font-size: 1rem;
  font-weight: normal;
}
#is_shop .purchase.confirm .total.amount > dd > div > p {
  color: #333333;
  font-size: 1rem;
  font-weight: normal;
}
#is_shop .purchase.confirm .sub_total > dd > ul > li > div {
  min-width: 0;
  max-width: 100%;
}
#is_shop .purchase.confirm .sub_total > dd > ul > li > div > p {
  font-size: 1rem;
  text-align: left;
}
#is_shop .purchase.confirm .sub_total .item {
  width: auto;
}
#is_shop .purchase.accept {
  margin-top: 0;
  padding: 0;
  background: transparent;
}
#is_shop .purchase.accept .accept {
  width: auto;
  height: auto;
  background: none;
  background-position: unset;
  background-size: unset;
  text-indent: 0;
}

#is_shop h2 {
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important;
  color: #111111 !important;
  font-family: Noto Serif JP, sans-serif;
  font-weight: 500;
  font-size: 1.25rem !important;
}

#is_shop #sumcart .item .name, #is_shop .relay h3, #is_shop .bundle_set h3, #is_shop .attr > h3, #is_shop h3 {
  margin-bottom: 0.625rem !important;
  color: #111111 !important;
  font-family: Noto Serif JP, sans-serif;
  font-weight: 500;
  font-size: 1.125rem !important;
}

#is_shop .relay .flip .photo, #is_shop .bundle_set .flip .photo, #is_shop .items .photo {
  width: 100%;
  max-width: 100%;
  height: 250px;
  max-height: 100%;
  margin-right: auto;
  margin-bottom: 0.625rem;
  margin-left: auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

#is_shop .relay .flip .name, #is_shop .bundle_set .flip .name, #is_shop .items .name {
  margin-bottom: 0.3125rem;
  font-family: Noto Serif JP, sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  color: #111111 !important;
  text-decoration: underline;
}

#is_shop .relay .flip .price, #is_shop .bundle_set .flip .price, #is_shop .items .price {
  width: 100%;
  margin-top: auto;
  text-align: right;
}

#is_shop .item .item_option .select, #is_shop .search .select {
  position: relative;
}
#is_shop .item .item_option .select::before, #is_shop .search .select::before {
  content: "\f107";
  font: var(--fa-font-solid);
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0, -50%);
  z-index: 1;
}
#is_shop .item .item_option .select > select, #is_shop .search .select > select {
  padding: 0.5rem 2rem;
  background-color: #ffffff;
  border: 1px solid #ffffff;
}

#is_shop .purchase.accept .accept, #is_shop .purchase.confirm .edit_customer,
#is_shop .purchase.confirm .edit_deliver,
#is_shop .purchase.confirm .edit_payment,
#is_shop .purchase.confirm .edit_shipment, #is_shop .purchase .next, #is_shop .form_wrap .confirm, #is_shop .form_wrap .next, #is_shop #sumcart .sum .button .purchase,
#is_shop #sumcart .sum .button .back, .shop-btn, #is_shop .bar .addcart, #is_shop .item .addcart > button {
  display: block;
  width: auto;
  min-width: 100px;
  margin-right: auto;
  margin-left: auto;
  padding: 1rem 2rem;
  border-radius: 100vh;
  font-size: 1rem;
  font-family: Noto Serif JP, sans-serif;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.5s ease;
}
#is_shop .purchase.accept .accept:hover, #is_shop .purchase.confirm .edit_customer:hover,
#is_shop .purchase.confirm .edit_deliver:hover,
#is_shop .purchase.confirm .edit_payment:hover,
#is_shop .purchase.confirm .edit_shipment:hover, #is_shop .purchase .next:hover, #is_shop .form_wrap .confirm:hover, #is_shop .form_wrap .next:hover, #is_shop #sumcart .sum .button .purchase:hover,
#is_shop #sumcart .sum .button .back:hover, .shop-btn:hover, #is_shop .bar .addcart:hover, #is_shop .item .addcart > button:hover {
  opacity: 0.7;
  transition: opacity 0.5s ease;
}

.shop-btn--color_theme, #is_shop .purchase.accept .accept, #is_shop .purchase .next, #is_shop .form_wrap .confirm, #is_shop .form_wrap .next, #is_shop #sumcart .sum .button .purchase, #is_shop .bar .addcart, #is_shop .item .addcart > button {
  color: #ffffff;
  background-color: #f0ae00;
}
.shop-btn--color_inactive, #is_shop #sumcart .sum .button .back {
  color: #111111;
  background-color: #ffffff;
}
.shop-btn--border, #is_shop .purchase.confirm .edit_customer,
#is_shop .purchase.confirm .edit_deliver,
#is_shop .purchase.confirm .edit_payment,
#is_shop .purchase.confirm .edit_shipment {
  color: #111111;
  background-color: #ffffff;
  border: 1px solid #111111;
}

#is_shop {
  margin-top: 150px;
}
@media (max-width: 640.98px) {
  #is_shop {
    margin-top: 100px;
  }
}
#is_shop #keyword {
  display: flex;
  flex: 1 0 0;
}
@media (max-width: 834.98px) {
  #is_shop #keyword {
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 640.98px) {
  #is_shop #keyword {
    display: block;
  }
}
#is_shop .search {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  flex: 1 0 0;
  margin-top: 3.75rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 834.98px) {
  #is_shop .search {
    display: block;
  }
}
#is_shop .search .text {
  display: flex;
  align-items: center;
  flex: 1 0 0;
  height: auto;
  border: 1px solid #ffffff;
}
#is_shop .search .text > input {
  height: 100% !important;
  padding: 0.625rem !important;
}
#is_shop .search .select {
  margin-right: 1.25rem;
}
@media (max-width: 640.98px) {
  #is_shop .search .select {
    margin-right: 0;
    margin-bottom: 1.25rem;
  }
}
#is_shop .search .select > select {
  font-size: 1rem;
}
#is_shop .search .pager {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-left: 2.5rem;
}
#is_shop .search .pager .select {
  margin-right: 1.25rem;
  margin-bottom: 0;
}
#is_shop .search .pager .off {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 1.5rem;
  border-radius: 30px;
  background-color: #ffffff;
}
#is_shop .search .pager .off::before {
  font: var(--fa-font-solid);
  display: inline-block;
  color: #000000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
#is_shop .search .pager .prev.off {
  margin-right: 1.25rem;
}
#is_shop .search .pager .prev.off::before {
  content: "\f104";
}
#is_shop .search .pager .next.off::before {
  content: "\f105";
}
#is_shop .under {
  margin-bottom: 1.25rem;
}
#is_shop .under > ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#is_shop .under > ul > li {
  display: inline-block;
  margin-right: 0.625rem;
  margin-bottom: 0.625rem;
  background-color: #ffffff;
}
#is_shop .under > ul > li a {
  display: inline-block;
  width: auto;
  padding: 1rem;
}
#is_shop .order {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 0.3125rem;
  border-bottom: 1px solid #000000;
  display: none !important;
}
@media (max-width: 640.98px) {
  #is_shop .order {
    display: block;
  }
}
#is_shop .order > ul > li {
  margin-right: 0.625rem;
}
#is_shop .order > ul > li:last-child {
  margin-right: 0;
}
#is_shop .items {
  margin-bottom: -2.5rem;
}
#is_shop .items > article {
  flex: 0 0 auto;
  width: calc((100% - 5rem) / 3);
  margin-right: 2.5rem;
  margin-bottom: 2.5rem;
}
#is_shop .items > article:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 1000.98px) {
  #is_shop .items > article {
    width: calc((100% - 2.5rem) / 2);
  }
  #is_shop .items > article:nth-child(3n) {
    margin-right: 2.5rem;
  }
  #is_shop .items > article:nth-child(2n) {
    margin-right: 0;
  }
}
@media (max-width: 640.98px) {
  #is_shop .items > article {
    width: 100%;
  }
}
#is_shop .items .summary {
  margin-bottom: 0.9375rem;
  font-size: 0.875rem;
}
#is_shop .crumb {
  margin-bottom: 3.75rem;
}
#is_shop .crumb > ul {
  display: flex;
  align-items: center;
}
#is_shop .crumb > ul > li {
  margin-right: 0.625rem;
}
#is_shop .crumb > ul > li:last-child {
  margin-right: 0;
}
#is_shop .crumb > ul > li:last-child:after {
  content: none;
}
#is_shop .crumb > ul > li:after {
  margin-left: 0.625rem;
  color: #111111;
}
#is_shop .item {
  margin-bottom: 3.75rem;
}
#is_shop .item .photo {
  flex: 0 0 calc(70% - 3.75rem);
  margin-right: 2.5rem;
}
@media (max-width: 834.98px) {
  #is_shop .item .photo {
    height: 100vh;
    margin-right: 0;
    margin-bottom: 2.5rem;
  }
}
#is_shop .item .photo .large {
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 1.25rem;
  position: relative;
  display: block;
}
#is_shop .item .photo .large:has(a) {
  display: block;
}
#is_shop .item .photo .large:before {
  content: "";
  display: block;
  padding-top: 75%;
  text-align: center;
}
#is_shop .item .photo .large > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
#is_shop .item .photo .large img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 834.98px) {
  #is_shop .item .photo .large {
    height: 50vh;
  }
}
@media (max-width: 640.98px) {
  #is_shop .item .photo .large {
    height: auto;
  }
}
#is_shop .item .photo .small > ul {
  display: flex;
  align-items: center;
  margin-bottom: -1.25rem;
}
#is_shop .item .photo .small > ul > li {
  flex: 0 0 auto;
  width: calc((100% - 5rem) / 5);
  margin-right: 1.25rem;
  margin-bottom: 1.25rem;
}
#is_shop .item .photo .small > ul > li:nth-child(5) {
  margin-right: 0;
}
#is_shop .item .item_view {
  flex: 1 0 0;
}
#is_shop .item .item_view > h2 > span {
  margin-top: 0.3125rem;
}
#is_shop .item .item_view > h2 > span:before {
  content: "ITEM.";
  display: inline-block;
  font-size: 0.75rem;
}
#is_shop .item .item_view > ul {
  margin-bottom: 0.625rem;
}
#is_shop .item .struct .sku {
  margin-bottom: 2.5rem;
}
#is_shop .item .struct .sku .price {
  font-size: 1.25rem;
}
#is_shop .item .item_option > form > dl {
  margin-bottom: 1.25rem;
}
#is_shop .item .item_option > form > dl > dt {
  margin-bottom: 0.3125rem;
  font-size: 1rem;
}
#is_shop .item .addcart .count {
  margin-bottom: 1.25rem;
}
#is_shop .item .addcart .count > dt {
  margin-bottom: 0.3125rem;
}
#is_shop .item .addcart > button {
  margin-bottom: 1.25rem;
}
#is_shop .item .addcart > a {
  margin-bottom: 2.5rem;
  font-size: 0.75rem;
  text-align: right;
}
#is_shop .item .detail {
  padding: 1rem;
  background-color: #ffffff;
  border: 1px solid #ffffff;
}
#is_shop .attr {
  margin-bottom: 0.625rem;
}
#is_shop .attr > dl {
  margin-bottom: 0.625rem;
}
#is_shop .attr > dl:last-child {
  margin-bottom: 0;
}
#is_shop .attr > dl > dt, #is_shop .attr > dl > dd {
  padding: 1rem;
}
#is_shop .attr > dl > dt {
  flex: 0 0 20%;
  background-color: rgb(247, 247, 247);
}
#is_shop .attr > dl > dd {
  flex: 0 0 80%;
  background-color: #ffffff;
}
#is_shop .detail2 {
  margin-bottom: 3.75rem;
  padding: 1rem;
  background-color: #ffffff;
  border: 1px solid #ffffff;
}
#is_shop .bundle_set .flip {
  margin-bottom: 1.25rem;
  padding: 1rem;
  border: 1px solid #ffffff;
}
#is_shop .bundle_set .flip > ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -2.5rem;
}
#is_shop .bundle_set .flip > ul > li {
  flex: 0 0 auto;
  width: calc((100% - 5rem) / 3);
  margin-right: 2.5rem;
  margin-bottom: 2.5rem;
}
#is_shop .bundle_set .flip > ul > li:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 1000.98px) {
  #is_shop .bundle_set .flip > ul > li {
    width: calc((100% - 2.5rem) / 2);
  }
  #is_shop .bundle_set .flip > ul > li:nth-child(3n) {
    margin-right: 2.5rem;
  }
  #is_shop .bundle_set .flip > ul > li:nth-child(2n) {
    margin-right: 0;
  }
}
@media (max-width: 640.98px) {
  #is_shop .bundle_set .flip > ul > li {
    width: 100%;
  }
}
#is_shop .bundle_set .flip > ul > li:after {
  content: none;
}
#is_shop .bar {
  margin-bottom: 3.75rem;
}
#is_shop .bar > p {
  margin-bottom: 1.25rem;
  text-align: center;
}
#is_shop .bar > p:before {
  content: "上記商品を";
  display: inline-block;
}
#is_shop .bar > p > span {
  font-size: 1.375rem;
  font-family: Noto Serif JP, sans-serif;
  font-weight: 500;
  color: #ff5454;
}
#is_shop .bar > p > label {
  font-size: 0.75rem;
}
#is_shop .relay .flip {
  margin-bottom: 3.75rem;
  padding: 1rem;
  border: 1px solid #ffffff;
  overflow: hidden;
}
#is_shop .relay .flip > ul {
  display: flex;
  width: 100% !important;
}
#is_shop .relay .flip > ul > li {
  flex: 1 1 0;
  margin-right: 2.5rem;
}
#is_shop .relay .flip > ul > li:last-child {
  margin-right: 0;
}
#is_shop .form_wrap {
  margin-top: 1.25rem;
  margin-bottom: 3.75rem;
}
#is_shop .form_wrap > dl {
  border: 1px solid #e3e3e3;
  border-bottom: none;
}
#is_shop .form_wrap > dl:last-child {
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 640.98px) {
  #is_shop .form_wrap > dl {
    display: block;
  }
}
#is_shop .form_wrap > dl > dt, #is_shop .form_wrap > dl > dd {
  padding: 1rem;
  border-bottom: none;
  border-right: none;
}
@media (max-width: 640.98px) {
  #is_shop .form_wrap > dl > dt, #is_shop .form_wrap > dl > dd {
    width: 100%;
  }
}
#is_shop .form_wrap > dl > dt {
  background-color: rgb(247, 247, 247);
}
#is_shop .form_wrap > dl > dd {
  background-color: #ffffff;
}
#is_shop #sumcart > ul {
  margin-bottom: 3.75rem;
}
#is_shop #sumcart > ul > li {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #ffffff;
}
#is_shop #sumcart > ul > li:last-child {
  margin-bottom: 0;
}
@media (max-width: 834.98px) {
  #is_shop #sumcart > ul > li {
    flex-direction: column;
    width: 100%;
    max-width: 550px;
    margin-right: auto;
    margin-left: auto;
  }
}
#is_shop #sumcart .photo {
  flex: 0 0 10%;
  margin-right: 1.25rem;
}
@media (max-width: 834.98px) {
  #is_shop #sumcart .photo {
    flex: 1 0 0;
    margin-right: 0;
    margin-bottom: 0.625rem;
  }
}
#is_shop #sumcart .photo .photo {
  display: inline-block;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
}
@media (max-width: 834.98px) {
  #is_shop #sumcart .photo .photo {
    height: 100px;
  }
}
#is_shop #sumcart .item {
  flex: 0 0 60%;
  margin-right: 1.25rem;
  margin-bottom: 0;
}
@media (max-width: 834.98px) {
  #is_shop #sumcart .item {
    margin-right: 0;
    margin-bottom: 0.625rem;
  }
}
#is_shop #sumcart .item .name {
  display: inline-block;
  margin-bottom: 0.3125rem;
}
#is_shop #sumcart .item .number {
  margin-bottom: 0.3125rem;
}
#is_shop #sumcart .item .number:before {
  content: "ITEM.";
  display: inline-block;
}
#is_shop #sumcart .count {
  flex: 1 0 0;
  align-items: center;
}
#is_shop #sumcart .count > * {
  flex: 1 0 0;
}
#is_shop #sumcart .count > input[type=text] {
  display: inline-block;
  max-width: 80px;
  margin-right: 0.625rem;
  padding: 1rem;
  border: 1px solid #ffffff;
  background-color: #ffffff;
}
@media (max-width: 834.98px) {
  #is_shop #sumcart .count > input[type=text] {
    max-width: 100%;
  }
}
#is_shop #sumcart .update,
#is_shop #sumcart .remove {
  font-size: 1rem;
  font-family: Noto Serif JP, sans-serif;
  text-align: center;
  text-decoration: underline;
}
#is_shop #sumcart .update {
  margin-right: 0.625rem;
}
#is_shop #sumcart .remove {
  color: #ff5454;
}
#is_shop #sumcart .sum {
  margin-bottom: 3.75rem;
  padding: 1rem;
  border: 1px solid #ffffff;
}
#is_shop #sumcart .sum > div:not(.button) {
  margin-bottom: 1.25rem;
}
#is_shop #sumcart .sum > div > div:nth-child(2) {
  margin-left: auto;
}
#is_shop #sumcart .sum .sum_count:before {
  content: "購入点数:";
}
#is_shop #sumcart .sum .sum_price {
  align-items: center;
  justify-content: flex-end;
}
#is_shop #sumcart .sum .sum_price > dt {
  flex: 0 0 auto;
  margin-right: 0.625rem;
  font-size: 1rem;
}
#is_shop #sumcart .sum .sum_price > dd {
  font-family: Noto Serif JP, sans-serif;
  font-weight: 500;
  font-size: 1.375rem;
  color: #ff5454;
}
#is_shop #sumcart .sum .limit {
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
  font-family: Noto Serif JP, sans-serif;
  font-weight: 500;
  text-align: right;
}
#is_shop #sumcart .sum > p:not(.limit) {
  margin-bottom: 2.5rem;
  font-size: 0.75rem;
  text-align: right;
}
@media (max-width: 640.98px) {
  #is_shop #sumcart .sum .button {
    align-items: center;
  }
}
#is_shop #sumcart .sum .button .purchase,
#is_shop #sumcart .sum .button .back {
  max-width: 300px;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}
@media (max-width: 640.98px) {
  #is_shop #sumcart .sum .button .purchase {
    margin-bottom: 1.25rem;
  }
}
#is_shop #sumcart .sum .button .back {
  margin-right: 3.75rem;
}
@media (max-width: 640.98px) {
  #is_shop #sumcart .sum .button .back {
    margin-right: 0;
  }
}
#is_shop .postage {
  margin-bottom: 3.75rem;
  padding: 1rem;
  background-color: #ffffff;
  border: 1px solid #ffffff;
}
#is_shop .form_wrap > dl:last-of-type {
  border-bottom: 1px solid #ffffff;
}
#is_shop .form_wrap > dl > dt {
  flex: 0 0 20%;
}
#is_shop .form_wrap > dl > dd {
  flex: 1 0 0;
}
#is_shop .form_wrap .next {
  margin-top: 3.75rem;
}
#is_shop .form_wrap .confirm {
  margin-top: 5rem;
}
#is_shop .shipment p {
  padding: 1rem;
  background-color: #ffffff;
  border: 1px solid #ffffff;
}
#is_shop .purchase .addrs > ul {
  margin-bottom: 3.75rem;
}
#is_shop .purchase .addrs > ul > li {
  margin-bottom: 3.75rem;
  padding: 1rem;
  background-color: #ffffff;
  border: 1px solid #ffffff;
}
#is_shop .purchase .addrs > ul > li:last-child {
  margin-bottom: 0;
}
#is_shop .purchase .addrs > ul > li > dl:first-child > dd {
  margin-bottom: 0.625rem;
  font-family: Noto Serif JP, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
}
#is_shop .purchase .addrs .link {
  margin-top: 3.75rem;
}
#is_shop .purchase .addrs .deliver {
  text-decoration: underline;
}
#is_shop .purchase .addrs .edit {
  margin-right: 2.5rem;
}
#is_shop .purchase .addrs .remove {
  color: #ff5454;
}
#is_shop .purchase .next {
  margin-bottom: 1.25rem;
}
#is_shop .purchase .add_deliver {
  display: block;
  width: 100%;
  margin-bottom: 3.75rem;
  text-align: center;
  text-decoration: underline;
}
#is_shop .purchase.confirm .edit_customer,
#is_shop .purchase.confirm .edit_deliver,
#is_shop .purchase.confirm .edit_payment,
#is_shop .purchase.confirm .edit_shipment {
  margin-top: 2.5rem;
}
#is_shop .purchase.confirm .sub_total {
  border-bottom: 1px solid #ffffff;
}
#is_shop .purchase.confirm .deliver_item > dd > ul > li {
  margin-bottom: 0.625rem;
  padding: 1rem;
  background-color: #ffffff;
}
@media (max-width: 834.98px) {
  #is_shop .purchase.confirm .deliver_item > dd > ul > li {
    flex-direction: column;
  }
}
#is_shop .purchase.confirm .deliver_item .photo {
  flex: 0 0 20%;
  margin-right: 0.625rem;
}
@media (max-width: 834.98px) {
  #is_shop .purchase.confirm .deliver_item .photo {
    width: 100%;
    flex: 1;
    margin-right: 0;
    margin-bottom: 0.625rem;
  }
}
#is_shop .purchase.confirm .deliver_item .photo .photo {
  flex: none;
  width: 100%;
  margin-right: 0;
}
#is_shop .purchase.confirm .deliver_item .item {
  flex: 0 0 auto;
  margin-right: 0.625rem;
}
@media (max-width: 834.98px) {
  #is_shop .purchase.confirm .deliver_item .item {
    margin-right: 0;
    margin-bottom: 0.625rem;
  }
}
#is_shop .purchase.confirm .deliver_item .item .number {
  font-size: 0.75rem;
}
#is_shop .purchase.confirm .deliver_item .item .number::before {
  content: "ITEM.";
}
#is_shop .purchase.confirm .deliver_item .price,
#is_shop .purchase.confirm .deliver_item .count,
#is_shop .purchase.confirm .deliver_item .subtotal {
  width: 100%;
  text-align: right;
}
#is_shop .purchase.confirm .deliver_item .price {
  margin-left: auto;
  margin-right: 0.625rem;
}
@media (max-width: 834.98px) {
  #is_shop .purchase.confirm .deliver_item .price {
    margin-left: 0;
    margin-right: 0;
  }
}
#is_shop .purchase.confirm .deliver_item .count {
  margin-right: 0.625rem;
}
@media (max-width: 834.98px) {
  #is_shop .purchase.confirm .deliver_item .count {
    margin-right: 0;
  }
}
#is_shop .purchase.confirm .deliver_item .count > p {
  font-size: 0.75rem;
}
#is_shop .purchase.confirm .total > dd {
  justify-content: flex-end;
}
#is_shop .purchase.confirm .total > dd > div:first-child {
  margin-right: 0.625rem;
}
#is_shop .purchase.confirm .total.amount > dd {
  font-family: Noto Serif JP, sans-serif;
  font-weight: 500;
}
#is_shop .purchase.confirm .total.amount > dd > div > p {
  color: #ff5454;
  font-family: Noto Serif JP, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
}
#is_shop .purchase.confirm .sub_total .item {
  margin-bottom: 0;
}
#is_shop .purchase.confirm .sub_total > dd > ul > li > div:nth-child(4n) {
  margin-left: auto;
  margin-right: 0.625rem;
}
#is_shop .purchase.confirm .sub_total > dd > ul > li > div:nth-child(n+3) {
  flex: 0 0 auto;
}
#is_shop .purchase.accept .accept {
  margin-top: 6.25rem;
  margin-bottom: 3.75rem;
}/*# sourceMappingURL=common_style.css.map */