@charset "UTF-8";
body {
  font-family: "NanumSquare", sans-serif;
  overflow-x: hidden;
  background-color: #F5F3EE;
}

.main {
  overflow-x: hidden;
}

.main-body .main {
  overflow: visible;
}
.main-body .main .container {
  padding-top: 0;
}

.header {
  position: fixed;
  width: 100%;
  height: 3.75rem;
  border-bottom: 1px solid #000;
  background-color: #fff;
  z-index: 6;
}
@media (min-width: 1025px) {
  .header {
    height: 5rem;
  }
}
.header .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: auto;
}
.header .container .menu-box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 4.0625rem;
  height: 100%;
  border-right: 1px solid #000;
}
@media (min-width: 1025px) {
  .header .container .menu-box {
    padding: 1.5625rem;
    border-left: 1px solid #000;
  }
  .header .container .menu-box .icon-menu {
    width: 2.25rem;
    height: 2.25rem;
  }
}
.header .container .logo-box h1 {
  display: flex;
}
.header .container .logo-box a {
  display: flex;
  align-items: center;
  height: 100%;
}
.header .container .logo-box a i {
  width: 8.375rem;
  height: 1.3125rem;
  background-size: contain;
}
@media (min-width: 1025px) {
  .header .container .logo-box a i {
    width: 15.25rem;
    height: 2.375rem;
  }
}
.header .container .lang-box {
  min-width: 4.0625rem;
  height: 100%;
  border-left: 1px solid #000;
}
@media (min-width: 1025px) {
  .header .container .lang-box {
    border-right: 1px solid #000;
  }
}
.header .nav-wrap {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 10;
  transform: translateY(-100%);
  transition: all 0.3s linear;
}
.header .nav-wrap.active {
  transform: translateY(0);
}
@media (min-width: 1025px) {
  .header .nav-wrap {
    position: absolute;
    left: 0;
    width: 23.75rem;
    border-right: 1px solid #000;
    border-left: 1px solid #000;
    transform: translate(-100%, 0);
    opacity: 0;
  }
  .header .nav-wrap.active {
    transform: translate(0, 0);
    opacity: 1;
  }
}
.header .nav-wrap .nav-container .nav-header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.75rem;
  border-bottom: 1px solid #000;
}
@media (min-width: 1025px) {
  .header .nav-wrap .nav-container .nav-header {
    height: 5rem;
  }
  .header .nav-wrap .nav-container .nav-header .icon-close {
    width: 2.25rem;
    height: 2.25rem;
  }
}
.header .nav-wrap .nav-container .nav-content .menu-list-box {
  padding: 3.75rem 0;
  text-align: center;
  border-bottom: 1px solid #000;
}
.header .nav-wrap .nav-container .nav-content .menu-list-box h2 {
  font-size: 1.25rem;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .header .nav-wrap .nav-container .nav-content .menu-list-box h2 {
    font-size: 1.375rem;
  }
}
.header .nav-wrap .nav-container .nav-content .menu-list-box ul {
  margin-top: 1.25rem;
}
.header .nav-wrap .nav-container .nav-content .menu-list-box ul li {
  padding-top: 20px;
  font-size: 0.875rem;
  cursor: pointer;
}
.header .nav-wrap .nav-container .nav-content .menu-list-box ul li:first-child {
  padding-top: 0;
}
@media (min-width: 1025px) {
  .header .nav-wrap .nav-container .nav-content .menu-list-box ul {
    margin-top: 3.125rem;
  }
  .header .nav-wrap .nav-container .nav-content .menu-list-box ul li {
    padding-top: 1.875rem;
    font-size: 1rem;
  }
}
.header .masking {
  position: fixed;
  top: 0;
  height: calc(100vh - 4.0625rem);
  width: calc((100% - 1200px) / 2);
  background-color: #F5F3EE;
  z-index: 10;
}
.header .masking::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 5rem;
  background-color: #fff;
  border-bottom: 1px solid #000;
  z-index: 10;
}

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #fff;
}
@media (min-width: 1025px) {
  .footer {
    border-top: 1px solid #000;
    z-index: 1;
  }
}
.footer .container ul li {
  padding: 0.9375rem 0;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 300;
  border-top: 1px solid #000;
}
.footer .container ul li a {
  font-weight: 400;
}
@media (min-width: 1025px) {
  .footer .container {
    max-width: 1200px;
    margin: auto;
  }
  .footer .container ul {
    display: flex;
    border-right: 1px solid #000;
    border-left: 1px solid #000;
  }
  .footer .container ul li {
    flex: 1 1;
    width: 50%;
    padding: 1.25rem 0;
    border-top: none;
    font-size: 0.9375rem;
  }
  .footer .container ul li:last-child {
    border-left: 1px solid #000;
  }
}

.chat-btn-wrap {
  position: fixed;
  right: 1.25rem;
  bottom: 7.5rem;
  height: 0;
  z-index: 6;
}
.chat-btn-wrap > .chat-bubble {
  max-width: 300px;
}
.chat-btn-wrap > .chat-bubble p,
.chat-btn-wrap > .chat-bubble a {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.chat-btn-wrap > .chat-bubble a {
  position: relative;
  width: 100%;
  padding-right: 15px;
}
.chat-btn-wrap > .chat-bubble a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: block;
  width: 10px;
  height: 10px;
  background: #fff url(../images/icons/bubble-arrow.svg) center/cover no-repeat;
}
.chat-btn-wrap > .chat-bubble:hover p,
.chat-btn-wrap > .chat-bubble:hover a {
  -webkit-box-orient: unset;
}
@media (min-width: 1025px) {
  .chat-btn-wrap {
    max-width: 1200px;
    right: 0;
    bottom: 6.375rem;
    left: 0;
    margin: auto;
  }
  .chat-btn-wrap .chat-bubble {
    position: absolute;
    right: 1.25rem;
    bottom: 6.5625rem;
  }
  .chat-btn-wrap .icon-chatbot-pc {
    width: 69px;
  }
}
.chat-btn-wrap .btn-chatbot {
  position: absolute;
  bottom: 0;
  right: 0;
  display: inline-block;
}

.chat-bubble {
  position: fixed;
  gap: 0.5625rem;
  right: 2.5rem;
  bottom: 11.875rem;
  max-width: 80%;
  padding: 1rem 0.9375rem;
  border: 1px solid #000;
  border-radius: 5px;
  background-color: #fff;
}
.chat-bubble .triangle {
  position: absolute;
  width: 9px;
  height: 9px;
  bottom: -9px;
  right: 10px;
  background: transparent url(../images/icons/bubble-triangle.svg) bottom right no-repeat;
  background-size: 16px auto;
}
.chat-bubble p,
.chat-bubble a {
  font-size: 0.6875rem;
  line-height: 1.4;
  word-break: keep-all;
}
@media (min-width: 1025px) {
  .chat-bubble p,
  .chat-bubble a {
    font-size: 0.875rem;
  }
}
@media (min-width: 1025px) {
  .chat-bubble {
    right: 1.25rem;
    bottom: 12.5rem;
  }
}

.floating-cookie {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 40px 20px;
  background-color: #fff;
  z-index: 10;
  transform: translateY(0);
}
@media (min-width: 1025px) {
  .floating-cookie .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
  }
  .floating-cookie .container .wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 min(7.2916666667vw, 8.75rem);
  }
}
.floating-cookie.closed {
  transform: translateY(100%);
  transition: transform 0.3s;
}
.floating-cookie .txt {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 20.72px;
  word-break: keep-all;
}
@media (min-width: 1025px) {
  .floating-cookie .txt {
    font-size: 1rem;
    line-height: 23.68px;
  }
}
.floating-cookie .txt .btn-link {
  margin: 0;
}
.floating-cookie .btn-link {
  display: inline-block;
  margin: 2.5rem 0 1.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: underline;
}
@media (min-width: 1025px) {
  .floating-cookie .btn-link {
    font-size: 1rem;
  }
}
.floating-cookie .btn-wrap {
  display: flex;
  gap: 0.625rem;
}

.popup-store {
  position: fixed;
  width: 80%;
  max-width: 640px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px;
  z-index: 99;
}

@media (min-width: 1025px) {
  .popup-store-wrap {
    position: fixed;
    display: flex;
    justify-content: center;
    gap: min(0.5208333333vw, 0.625rem);
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    padding: 10px;
    z-index: 99;
  }
  .popup-store-wrap .popup-store {
    position: static;
    transform: unset;
  }
}
.hidden {
  display: none;
}

.ellipsis {
  overflow-x: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

::-webkit-scrollbar {
  display: block;
  width: 4px;
  height: 2px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #e3e3e3;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--d2-gray-9);
}

[type=number] {
  font-family: "RobotoMono", "NotoSans", sans-serif;
}

.btn-link {
  text-decoration: underline;
  white-space: nowrap;
  cursor: pointer;
}

.img-wrap img {
  image-rendering: -webkit-optimize-contrast;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* 문서
   ========================================================================== */
/**
 * 1. 모든 브라우저에서 줄 높이를 수정합니다.
 * 2. iOS에서 방향 변경 후 글꼴 크기 조정을 방지합니다.
 */
html {
  line-height: 1.6;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * 기본 설정 요소입니다.
 */
* {
  box-sizing: border-box;
}

::before,
::after {
  box-sizing: border-box;
}

/* 섹션
   ========================================================================== */
/**
 * 모든 브라우저에서 여백을 제거합니다.
 */
body {
  position: relative;
  font-family: "Noto Sans JP", "Noto Sans SC", "Noto Sans TC", "RobotoMono", "NeueHelveticaPro65Medium", "NotoSans", sans-serif;
  margin: 0;
}

/**
 * IE에서 `main` 요소를 일관되게 렌더링합니다.
 */
main {
  display: block;
}

/* 콘텐츠 그룹화
   ========================================================================== */
/**
 * 1. Firefox에서 올바른 상자 크기를 추가합니다.
 * 2. Edge 및 IE에서 오버플로를 표시합니다.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. 모든 브라우저에서 글꼴 크기의 상속 및 크기 조정을 수정합니다.
 * 2. 모든 브라우저에서 서로 다른 `em` 글꼴 크기를 수정합니다.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* 텍스트 레벨 시멘틱
   ========================================================================== */
/**
 * 1. IE 10의 활성 링크에서 회색 배경을 제거합니다.
 * 2. 링크 디폴트 스타일 제거
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

/**
 * 1. Chrome 57-에서 하단 테두리 제거
 * 2. Chrome, Edge, IE, Opera 및 Safari에 올바른 텍스트 장식을 추가합니다.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
}

/**
 * Chrome, Edge, Safari에서 올바른 글꼴 두께를 추가합니다.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. 모든 브라우저에서 글꼴 크기의 상속 및 크기 조정을 수정합니다.
 * 2. 모든 브라우저에서 서로 다른 `em` 글꼴 크기를 수정합니다.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * 모든 브라우저에 올바른 글꼴 크기를 추가합니다.
 */
small {
  font-size: 80%;
}

/**
 * 모든 브라우저에서 `sub` 및 `sup` 요소가 행 높이에 영향을 주지 않도록 방지합니다.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* 삽입된 콘텐츠
   ========================================================================== */
/**
 * IE 10에서 링크 내부 이미지의 테두리를 제거합니다.
 */
img {
  border-style: none;
  max-width: 100%;
}

/* 양식
   ========================================================================== */
/**
 * 1. 모든 브라우저에서 글꼴 스타일을 변경합니다.
 * 2. Firefox 및 Safari에서 여백을 제거합니다.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.6;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * IE에서 오버플로를 표시합니다.
 * 1. Edge에 오버플로를 표시합니다.
 */
button,
input {
  /* 1 */
  overflow: visible;
  outline: none;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input:autofill,
input:autofill:hover,
input:autofill:focus,
input:autofill:active {
  -webkit-text-fill-color: #000;
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
  box-shadow: 0 0 0px 1000px #fff inset;
  transition: background-color 5000s ease-in-out 0s;
}

/**
 * Edge, Firefox 및 IE에서 text-transform 상속을 제거합니다.
 * 1. Firefox에서 text-transform 상속을 제거합니다.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * iOS 및 Safari에서 클릭 가능한 유형의 스타일을 지정할 수 없는 문제를 수정합니다.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * button 기본 스타일을 제거합니다.
 */
button {
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: none;
  cursor: pointer;
  outline: none;
  font-size: 15px;
  font-family: "Noto Sans JP", "Noto Sans SC", "Noto Sans TC", "RobotoMono", "NeueHelveticaPro65Medium", "NotoSans", sans-serif;
  color: inherit;
}
button:disabled {
  cursor: default;
}

/**
 * Firefox에서 내부 테두리와 패딩을 제거합니다.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * 이전 규칙에 의해 설정되지 않은 포커스 스타일을 복원합니다.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Firefox에서 패딩을 수정합니다.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Edge 및 IE에서 텍스트 줄 바꿈을 수정합니다.
 * 2. IE의 `fieldset` 요소에서 색상 상속을 수정합니다.
 * 3. 개발자가 모든 브라우저에서 `fieldset` 요소를 0으로 처리할 때 발견되지 않도록 패딩을 제거합니다.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Chrome, Firefox, Opera에서 올바른 수직 정렬을 추가합니다.
 */
progress {
  vertical-align: baseline;
}

/**
 * IE 10+에서 기본 수직 스크롤 막대를 제거합니다.
 */
textarea {
  overflow: auto;
}

/**
 * 1. IE 10에서 올바른 상자 크기를 추가합니다.
 * 2. IE 10에서 패딩을 제거합니다.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Chrome에서 증가 및 감소 버튼의 커서 스타일을 수정합니다.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Chrome, Safari에서 서로 다른 모습을 수정합니다.
 * 2. Safari에서 outline 스타일을 수정합니다.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * macOS의 Chrome 및 Safari에서 내부 패딩을 제거합니다.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. iOS 및 Safari에서 클릭 가능한 유형의 스타일을 지정할 수 없는 문제를 수정합니다.
 * 2. Safari에서 글꼴 속성을 `상속`으로 변경합니다.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* 인터렉티브
   ========================================================================== */
/*
 * Edge, IE 10+, Firefox에 올바른 디스플레이를 추가합니다.
 */
details {
  display: block;
}

/*
 * 모든 브라우저에 올바른 디스플레이를 추가합니다.
 */
summary {
  display: list-item;
}

/* 기타
   ========================================================================== */
/**
 * IE 10+에서 올바른 디스플레이를 추가합니다.
 */
template {
  display: none;
}

/**
 * IE 10에 올바른 디스플레이를 추가하세요.
 */
[hidden] {
  display: none;
}

/**
 * heading 스타일을 초기화합니다.
 */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

/**
 * paragraph 스타일을 초기화합니다.
 */
p {
  margin: 0;
}

/**
 * list 스타일을 초기화합니다.
 */
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/**
 * address 스타일을 초기화합니다.
 */
address {
  font-style: normal;
}

/**
 * dl 스타일을 초기화합니다.
 */
dl {
  margin-block-start: 0;
  margin-block-end: 0;
}
dl dd {
  margin-inline-start: 0;
}

/**
 * table 스타일을 초기화합니다.
 */
table {
  border-spacing: 0;
  border-collapse: collapse;
}

:root {
  --d2-white: #fff;
  --d2-gray-1: #111;
  --d2-gray-2: #222;
  --d2-gray-3: #333;
  --d2-gray-4: #444;
  --d2-gray-5: #555;
  --d2-gray-6: #666;
  --d2-gray-7: #777;
  --d2-gray-8: #888;
  --d2-gray-9: #999;
  --d2-black: #000;
  --d2-line1: #efefef;
  --d2-line2: #e3e3e3;
  --d2-bg1: #F5F3EE;
  --d2-white-rgb: 255, 255, 255;
  --d2-gray-1-rgb: 17, 17, 17;
  --d2-gray-2-rgb: 34, 34, 34;
  --d2-gray-3-rgb: 51, 51, 51;
  --d2-gray-4-rgb: 68, 68, 68;
  --d2-gray-5-rgb: 85, 85, 85;
  --d2-gray-6-rgb: 102, 102, 102;
  --d2-gray-7-rgb: 119, 119, 119;
  --d2-gray-8-rgb: 136, 136, 136;
  --d2-gray-9-rgb: 153, 153, 153;
  --d2-black-rgb: 0, 0, 0;
  --d2-line1-rgb: 239, 239, 239;
  --d2-line2-rgb: 227, 227, 227;
  --d2-bg1-rgb: 245, 243, 238;
  --d2-primary: #e64d2c;
  --d2-primary10: #fdedea;
  --d2-primary40: #f5b8ab;
  --d2-primary70: #ee836b;
  --d2-primary100: #e64d2c;
  --d2-secondary: #3b4951;
  --d2-secondary10: #ecedee;
  --d2-secondary40: #b1b7ba;
  --d2-secondary70: #768085;
  --d2-secondary100: #3b4951;
  --d2-tertiary: #59a5d8;
  --d2-success: #4bb74c;
  --d2-error: #ff6767;
  --d2-etc1: #2c46e6;
  --d2-etc2: #068b01;
  --d2-primary-rgb: 230, 77, 44;
  --d2-primary10-rgb: 253, 237, 234;
  --d2-primary40-rgb: 245, 184, 171;
  --d2-primary70-rgb: 238, 131, 107;
  --d2-primary100-rgb: 230, 77, 44;
  --d2-secondary-rgb: 59, 73, 81;
  --d2-secondary10-rgb: 236, 237, 238;
  --d2-secondary40-rgb: 177, 183, 186;
  --d2-secondary70-rgb: 118, 128, 133;
  --d2-secondary100-rgb: 59, 73, 81;
  --d2-tertiary-rgb: 89, 165, 216;
  --d2-success-rgb: 75, 183, 76;
  --d2-error-rgb: 255, 103, 103;
  --d2-etc1-rgb: 44, 70, 230;
  --d2-etc2-rgb: 6, 139, 1;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-inline-grid {
  display: inline-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;
}

.cursor-auto {
  cursor: auto !important;
}

.cursor-default {
  cursor: default !important;
}

.cursor-help {
  cursor: help !important;
}

.cursor-pointer {
  cursor: pointer !important;
}

.cursor-crosshair {
  cursor: crosshair !important;
}

.cursor-move {
  cursor: move !important;
}

.cursor-copy {
  cursor: copy !important;
}

.cursor-grabbing {
  cursor: grabbing !important;
}

.text-white {
  --d2-text-opacity: 1;
  color: rgba(var(--d2-white-rgb), var(--d2-text-opacity)) !important;
}

.text-gray-1 {
  --d2-text-opacity: 1;
  color: rgba(var(--d2-gray-1-rgb), var(--d2-text-opacity)) !important;
}

.text-gray-2 {
  --d2-text-opacity: 1;
  color: rgba(var(--d2-gray-2-rgb), var(--d2-text-opacity)) !important;
}

.text-gray-3 {
  --d2-text-opacity: 1;
  color: rgba(var(--d2-gray-3-rgb), var(--d2-text-opacity)) !important;
}

.text-gray-4 {
  --d2-text-opacity: 1;
  color: rgba(var(--d2-gray-4-rgb), var(--d2-text-opacity)) !important;
}

.text-gray-5 {
  --d2-text-opacity: 1;
  color: rgba(var(--d2-gray-5-rgb), var(--d2-text-opacity)) !important;
}

.text-gray-6 {
  --d2-text-opacity: 1;
  color: rgba(var(--d2-gray-6-rgb), var(--d2-text-opacity)) !important;
}

.text-gray-7 {
  --d2-text-opacity: 1;
  color: rgba(var(--d2-gray-7-rgb), var(--d2-text-opacity)) !important;
}

.text-gray-8 {
  --d2-text-opacity: 1;
  color: rgba(var(--d2-gray-8-rgb), var(--d2-text-opacity)) !important;
}

.text-gray-9 {
  --d2-text-opacity: 1;
  color: rgba(var(--d2-gray-9-rgb), var(--d2-text-opacity)) !important;
}

.text-black {
  --d2-text-opacity: 1;
  color: rgba(var(--d2-black-rgb), var(--d2-text-opacity)) !important;
}

.text-line1 {
  --d2-text-opacity: 1;
  color: rgba(var(--d2-line1-rgb), var(--d2-text-opacity)) !important;
}

.text-line2 {
  --d2-text-opacity: 1;
  color: rgba(var(--d2-line2-rgb), var(--d2-text-opacity)) !important;
}

.text-bg1 {
  --d2-text-opacity: 1;
  color: rgba(var(--d2-bg1-rgb), var(--d2-text-opacity)) !important;
}

.text-primary {
  --d2-text-opacity: 1;
  color: rgba(var(--d2-primary-rgb), var(--d2-text-opacity)) !important;
}

.text-primary10 {
  --d2-text-opacity: 1;
  color: rgba(var(--d2-primary10-rgb), var(--d2-text-opacity)) !important;
}

.text-primary40 {
  --d2-text-opacity: 1;
  color: rgba(var(--d2-primary40-rgb), var(--d2-text-opacity)) !important;
}

.text-primary70 {
  --d2-text-opacity: 1;
  color: rgba(var(--d2-primary70-rgb), var(--d2-text-opacity)) !important;
}

.text-primary100 {
  --d2-text-opacity: 1;
  color: rgba(var(--d2-primary100-rgb), var(--d2-text-opacity)) !important;
}

.text-secondary {
  --d2-text-opacity: 1;
  color: rgba(var(--d2-secondary-rgb), var(--d2-text-opacity)) !important;
}

.text-secondary10 {
  --d2-text-opacity: 1;
  color: rgba(var(--d2-secondary10-rgb), var(--d2-text-opacity)) !important;
}

.text-secondary40 {
  --d2-text-opacity: 1;
  color: rgba(var(--d2-secondary40-rgb), var(--d2-text-opacity)) !important;
}

.text-secondary70 {
  --d2-text-opacity: 1;
  color: rgba(var(--d2-secondary70-rgb), var(--d2-text-opacity)) !important;
}

.text-secondary100 {
  --d2-text-opacity: 1;
  color: rgba(var(--d2-secondary100-rgb), var(--d2-text-opacity)) !important;
}

.text-tertiary {
  --d2-text-opacity: 1;
  color: rgba(var(--d2-tertiary-rgb), var(--d2-text-opacity)) !important;
}

.text-success {
  --d2-text-opacity: 1;
  color: rgba(var(--d2-success-rgb), var(--d2-text-opacity)) !important;
}

.text-error {
  --d2-text-opacity: 1;
  color: rgba(var(--d2-error-rgb), var(--d2-text-opacity)) !important;
}

.text-etc1 {
  --d2-text-opacity: 1;
  color: rgba(var(--d2-etc1-rgb), var(--d2-text-opacity)) !important;
}

.text-etc2 {
  --d2-text-opacity: 1;
  color: rgba(var(--d2-etc2-rgb), var(--d2-text-opacity)) !important;
}

.bg-white {
  --d2-bg-opacity: 1;
  background-color: rgba(var(--d2-white-rgb), var(--d2-bg-opacity)) !important;
}

.bg-gray-1 {
  --d2-bg-opacity: 1;
  background-color: rgba(var(--d2-gray-1-rgb), var(--d2-bg-opacity)) !important;
}

.bg-gray-2 {
  --d2-bg-opacity: 1;
  background-color: rgba(var(--d2-gray-2-rgb), var(--d2-bg-opacity)) !important;
}

.bg-gray-3 {
  --d2-bg-opacity: 1;
  background-color: rgba(var(--d2-gray-3-rgb), var(--d2-bg-opacity)) !important;
}

.bg-gray-4 {
  --d2-bg-opacity: 1;
  background-color: rgba(var(--d2-gray-4-rgb), var(--d2-bg-opacity)) !important;
}

.bg-gray-5 {
  --d2-bg-opacity: 1;
  background-color: rgba(var(--d2-gray-5-rgb), var(--d2-bg-opacity)) !important;
}

.bg-gray-6 {
  --d2-bg-opacity: 1;
  background-color: rgba(var(--d2-gray-6-rgb), var(--d2-bg-opacity)) !important;
}

.bg-gray-7 {
  --d2-bg-opacity: 1;
  background-color: rgba(var(--d2-gray-7-rgb), var(--d2-bg-opacity)) !important;
}

.bg-gray-8 {
  --d2-bg-opacity: 1;
  background-color: rgba(var(--d2-gray-8-rgb), var(--d2-bg-opacity)) !important;
}

.bg-gray-9 {
  --d2-bg-opacity: 1;
  background-color: rgba(var(--d2-gray-9-rgb), var(--d2-bg-opacity)) !important;
}

.bg-black {
  --d2-bg-opacity: 1;
  background-color: rgba(var(--d2-black-rgb), var(--d2-bg-opacity)) !important;
}

.bg-line1 {
  --d2-bg-opacity: 1;
  background-color: rgba(var(--d2-line1-rgb), var(--d2-bg-opacity)) !important;
}

.bg-line2 {
  --d2-bg-opacity: 1;
  background-color: rgba(var(--d2-line2-rgb), var(--d2-bg-opacity)) !important;
}

.bg-bg1 {
  --d2-bg-opacity: 1;
  background-color: rgba(var(--d2-bg1-rgb), var(--d2-bg-opacity)) !important;
}

.bg-primary {
  --d2-bg-opacity: 1;
  background-color: rgba(var(--d2-primary-rgb), var(--d2-bg-opacity)) !important;
}

.bg-primary10 {
  --d2-bg-opacity: 1;
  background-color: rgba(var(--d2-primary10-rgb), var(--d2-bg-opacity)) !important;
}

.bg-primary40 {
  --d2-bg-opacity: 1;
  background-color: rgba(var(--d2-primary40-rgb), var(--d2-bg-opacity)) !important;
}

.bg-primary70 {
  --d2-bg-opacity: 1;
  background-color: rgba(var(--d2-primary70-rgb), var(--d2-bg-opacity)) !important;
}

.bg-primary100 {
  --d2-bg-opacity: 1;
  background-color: rgba(var(--d2-primary100-rgb), var(--d2-bg-opacity)) !important;
}

.bg-secondary {
  --d2-bg-opacity: 1;
  background-color: rgba(var(--d2-secondary-rgb), var(--d2-bg-opacity)) !important;
}

.bg-secondary10 {
  --d2-bg-opacity: 1;
  background-color: rgba(var(--d2-secondary10-rgb), var(--d2-bg-opacity)) !important;
}

.bg-secondary40 {
  --d2-bg-opacity: 1;
  background-color: rgba(var(--d2-secondary40-rgb), var(--d2-bg-opacity)) !important;
}

.bg-secondary70 {
  --d2-bg-opacity: 1;
  background-color: rgba(var(--d2-secondary70-rgb), var(--d2-bg-opacity)) !important;
}

.bg-secondary100 {
  --d2-bg-opacity: 1;
  background-color: rgba(var(--d2-secondary100-rgb), var(--d2-bg-opacity)) !important;
}

.bg-tertiary {
  --d2-bg-opacity: 1;
  background-color: rgba(var(--d2-tertiary-rgb), var(--d2-bg-opacity)) !important;
}

.bg-success {
  --d2-bg-opacity: 1;
  background-color: rgba(var(--d2-success-rgb), var(--d2-bg-opacity)) !important;
}

.bg-error {
  --d2-bg-opacity: 1;
  background-color: rgba(var(--d2-error-rgb), var(--d2-bg-opacity)) !important;
}

.bg-etc1 {
  --d2-bg-opacity: 1;
  background-color: rgba(var(--d2-etc1-rgb), var(--d2-bg-opacity)) !important;
}

.bg-etc2 {
  --d2-bg-opacity: 1;
  background-color: rgba(var(--d2-etc2-rgb), var(--d2-bg-opacity)) !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.overflow-x-auto {
  overflow-x: auto !important;
}

.overflow-x-hidden {
  overflow-x: hidden !important;
}

.overflow-x-visible {
  overflow-x: visible !important;
}

.overflow-x-scroll {
  overflow-x: scroll !important;
}

.overflow-y-auto {
  overflow-y: auto !important;
}

.overflow-y-hidden {
  overflow-y: hidden !important;
}

.overflow-y-visible {
  overflow-y: visible !important;
}

.overflow-y-scroll {
  overflow-y: scroll !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.lh-24-11 {
  line-height: 2.1818181818 !important;
}

.lh-24-13 {
  line-height: 1.8461538462 !important;
}

.lh-28 {
  line-height: 1.8666666667 !important;
}

.lh-30 {
  line-height: 1.875 !important;
}

.lh-32 {
  line-height: 1.7777777778 !important;
}

.lh-34 {
  line-height: 1.7 !important;
}

.lh-36 {
  line-height: 1.6363636364 !important;
}

.lh-38 {
  line-height: 1.5833333333 !important;
}

.lh-42 {
  line-height: 1.5 !important;
}

.lh-46 {
  line-height: 1.4375 !important;
}

.lh-50 {
  line-height: 1.3888888889 !important;
}

.lh-62 {
  line-height: 1.2916666667 !important;
}

.lh-66 {
  line-height: 1.2692307692 !important;
}

.fs-13 {
  font-size: 3.25rem !important;
}

.fs-12 {
  font-size: 3rem !important;
}

.fs-11 {
  font-size: 2.75rem !important;
}

.fs-10 {
  font-size: 2.5rem !important;
}

.fs-9 {
  font-size: 2.25rem !important;
}

.fs-8 {
  font-size: 2rem !important;
}

.fs-7 {
  font-size: 1.75rem !important;
}

.fs-6 {
  font-size: 1.5rem !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-4 {
  font-size: 1rem !important;
}

.fs-3 {
  font-size: 0.75rem !important;
}

.fs-2 {
  font-size: 0.5rem !important;
}

.fs-1 {
  font-size: 0.25rem !important;
}

.fs-x11 {
  font-size: 0.6875rem !important;
}

.fs-x13 {
  font-size: 0.8125rem !important;
}

.fs-x15 {
  font-size: 0.9375rem !important;
}

.fs-x18 {
  font-size: 1.125rem !important;
}

.fs-x22 {
  font-size: 1.375rem !important;
}

.fw-100 {
  font-weight: 100 !important;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

.ff-base {
  font-family: "Noto Sans JP", "Noto Sans SC", "Noto Sans TC", "RobotoMono", "NeueHelveticaPro65Medium", "NotoSans", sans-serif !important;
}

.ff-kor {
  font-family: "Noto Sans JP", "Noto Sans SC", "Noto Sans TC", "NeueHelveticaPro65Medium", "NotoSans", sans-serif !important;
}

.ff-eng {
  font-family: "Noto Sans JP", "Noto Sans SC", "Noto Sans TC", "NeueHelveticaPro65Medium", "NotoSans", sans-serif !important;
}

.ff-num {
  font-family: "RobotoMono", "NotoSans", sans-serif !important;
}

.ff-mix2 {
  font-family: "Noto Sans JP", "Noto Sans SC", "Noto Sans TC", "RobotoMono", "NeueHelveticaPro65Medium", "NotoSans", sans-serif !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.flex-fill {
  flex: 1 1 auto !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-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !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;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.m-20 {
  margin: 5rem !important;
}

.m-19 {
  margin: 4.75rem !important;
}

.m-18 {
  margin: 4.5rem !important;
}

.m-17 {
  margin: 4.25rem !important;
}

.m-16 {
  margin: 4rem !important;
}

.m-15 {
  margin: 3.75rem !important;
}

.m-14 {
  margin: 3.5rem !important;
}

.m-13 {
  margin: 3.25rem !important;
}

.m-12 {
  margin: 3rem !important;
}

.m-11 {
  margin: 2.75rem !important;
}

.m-10 {
  margin: 2.5rem !important;
}

.m-9 {
  margin: 2.25rem !important;
}

.m-8 {
  margin: 2rem !important;
}

.m-7 {
  margin: 1.75rem !important;
}

.m-6 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 1.25rem !important;
}

.m-4 {
  margin: 1rem !important;
}

.m-3 {
  margin: 0.75rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-20 {
  margin-right: 5rem !important;
  margin-left: 5rem !important;
}

.mx-19 {
  margin-right: 4.75rem !important;
  margin-left: 4.75rem !important;
}

.mx-18 {
  margin-right: 4.5rem !important;
  margin-left: 4.5rem !important;
}

.mx-17 {
  margin-right: 4.25rem !important;
  margin-left: 4.25rem !important;
}

.mx-16 {
  margin-right: 4rem !important;
  margin-left: 4rem !important;
}

.mx-15 {
  margin-right: 3.75rem !important;
  margin-left: 3.75rem !important;
}

.mx-14 {
  margin-right: 3.5rem !important;
  margin-left: 3.5rem !important;
}

.mx-13 {
  margin-right: 3.25rem !important;
  margin-left: 3.25rem !important;
}

.mx-12 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-11 {
  margin-right: 2.75rem !important;
  margin-left: 2.75rem !important;
}

.mx-10 {
  margin-right: 2.5rem !important;
  margin-left: 2.5rem !important;
}

.mx-9 {
  margin-right: 2.25rem !important;
  margin-left: 2.25rem !important;
}

.mx-8 {
  margin-right: 2rem !important;
  margin-left: 2rem !important;
}

.mx-7 {
  margin-right: 1.75rem !important;
  margin-left: 1.75rem !important;
}

.mx-6 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 1.25rem !important;
  margin-left: 1.25rem !important;
}

.mx-4 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-3 {
  margin-right: 0.75rem !important;
  margin-left: 0.75rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-20 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

.my-19 {
  margin-top: 4.75rem !important;
  margin-bottom: 4.75rem !important;
}

.my-18 {
  margin-top: 4.5rem !important;
  margin-bottom: 4.5rem !important;
}

.my-17 {
  margin-top: 4.25rem !important;
  margin-bottom: 4.25rem !important;
}

.my-16 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.my-15 {
  margin-top: 3.75rem !important;
  margin-bottom: 3.75rem !important;
}

.my-14 {
  margin-top: 3.5rem !important;
  margin-bottom: 3.5rem !important;
}

.my-13 {
  margin-top: 3.25rem !important;
  margin-bottom: 3.25rem !important;
}

.my-12 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-11 {
  margin-top: 2.75rem !important;
  margin-bottom: 2.75rem !important;
}

.my-10 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

.my-9 {
  margin-top: 2.25rem !important;
  margin-bottom: 2.25rem !important;
}

.my-8 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.my-7 {
  margin-top: 1.75rem !important;
  margin-bottom: 1.75rem !important;
}

.my-6 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important;
}

.my-4 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-3 {
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-20 {
  margin-top: 5rem !important;
}

.mt-19 {
  margin-top: 4.75rem !important;
}

.mt-18 {
  margin-top: 4.5rem !important;
}

.mt-17 {
  margin-top: 4.25rem !important;
}

.mt-16 {
  margin-top: 4rem !important;
}

.mt-15 {
  margin-top: 3.75rem !important;
}

.mt-14 {
  margin-top: 3.5rem !important;
}

.mt-13 {
  margin-top: 3.25rem !important;
}

.mt-12 {
  margin-top: 3rem !important;
}

.mt-11 {
  margin-top: 2.75rem !important;
}

.mt-10 {
  margin-top: 2.5rem !important;
}

.mt-9 {
  margin-top: 2.25rem !important;
}

.mt-8 {
  margin-top: 2rem !important;
}

.mt-7 {
  margin-top: 1.75rem !important;
}

.mt-6 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 1.25rem !important;
}

.mt-4 {
  margin-top: 1rem !important;
}

.mt-3 {
  margin-top: 0.75rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-20 {
  margin-right: 5rem !important;
}

.me-19 {
  margin-right: 4.75rem !important;
}

.me-18 {
  margin-right: 4.5rem !important;
}

.me-17 {
  margin-right: 4.25rem !important;
}

.me-16 {
  margin-right: 4rem !important;
}

.me-15 {
  margin-right: 3.75rem !important;
}

.me-14 {
  margin-right: 3.5rem !important;
}

.me-13 {
  margin-right: 3.25rem !important;
}

.me-12 {
  margin-right: 3rem !important;
}

.me-11 {
  margin-right: 2.75rem !important;
}

.me-10 {
  margin-right: 2.5rem !important;
}

.me-9 {
  margin-right: 2.25rem !important;
}

.me-8 {
  margin-right: 2rem !important;
}

.me-7 {
  margin-right: 1.75rem !important;
}

.me-6 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 1.25rem !important;
}

.me-4 {
  margin-right: 1rem !important;
}

.me-3 {
  margin-right: 0.75rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-20 {
  margin-bottom: 5rem !important;
}

.mb-19 {
  margin-bottom: 4.75rem !important;
}

.mb-18 {
  margin-bottom: 4.5rem !important;
}

.mb-17 {
  margin-bottom: 4.25rem !important;
}

.mb-16 {
  margin-bottom: 4rem !important;
}

.mb-15 {
  margin-bottom: 3.75rem !important;
}

.mb-14 {
  margin-bottom: 3.5rem !important;
}

.mb-13 {
  margin-bottom: 3.25rem !important;
}

.mb-12 {
  margin-bottom: 3rem !important;
}

.mb-11 {
  margin-bottom: 2.75rem !important;
}

.mb-10 {
  margin-bottom: 2.5rem !important;
}

.mb-9 {
  margin-bottom: 2.25rem !important;
}

.mb-8 {
  margin-bottom: 2rem !important;
}

.mb-7 {
  margin-bottom: 1.75rem !important;
}

.mb-6 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 1.25rem !important;
}

.mb-4 {
  margin-bottom: 1rem !important;
}

.mb-3 {
  margin-bottom: 0.75rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-20 {
  margin-left: 5rem !important;
}

.ms-19 {
  margin-left: 4.75rem !important;
}

.ms-18 {
  margin-left: 4.5rem !important;
}

.ms-17 {
  margin-left: 4.25rem !important;
}

.ms-16 {
  margin-left: 4rem !important;
}

.ms-15 {
  margin-left: 3.75rem !important;
}

.ms-14 {
  margin-left: 3.5rem !important;
}

.ms-13 {
  margin-left: 3.25rem !important;
}

.ms-12 {
  margin-left: 3rem !important;
}

.ms-11 {
  margin-left: 2.75rem !important;
}

.ms-10 {
  margin-left: 2.5rem !important;
}

.ms-9 {
  margin-left: 2.25rem !important;
}

.ms-8 {
  margin-left: 2rem !important;
}

.ms-7 {
  margin-left: 1.75rem !important;
}

.ms-6 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 1.25rem !important;
}

.ms-4 {
  margin-left: 1rem !important;
}

.ms-3 {
  margin-left: 0.75rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.m-n20 {
  margin: -5rem !important;
}

.m-n19 {
  margin: -4.75rem !important;
}

.m-n18 {
  margin: -4.5rem !important;
}

.m-n17 {
  margin: -4.25rem !important;
}

.m-n16 {
  margin: -4rem !important;
}

.m-n15 {
  margin: -3.75rem !important;
}

.m-n14 {
  margin: -3.5rem !important;
}

.m-n13 {
  margin: -3.25rem !important;
}

.m-n12 {
  margin: -3rem !important;
}

.m-n11 {
  margin: -2.75rem !important;
}

.m-n10 {
  margin: -2.5rem !important;
}

.m-n9 {
  margin: -2.25rem !important;
}

.m-n8 {
  margin: -2rem !important;
}

.m-n7 {
  margin: -1.75rem !important;
}

.m-n6 {
  margin: -1.5rem !important;
}

.m-n5 {
  margin: -1.25rem !important;
}

.m-n4 {
  margin: -1rem !important;
}

.m-n3 {
  margin: -0.75rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mx-n20 {
  margin-right: -5rem !important;
  margin-left: -5rem !important;
}

.mx-n19 {
  margin-right: -4.75rem !important;
  margin-left: -4.75rem !important;
}

.mx-n18 {
  margin-right: -4.5rem !important;
  margin-left: -4.5rem !important;
}

.mx-n17 {
  margin-right: -4.25rem !important;
  margin-left: -4.25rem !important;
}

.mx-n16 {
  margin-right: -4rem !important;
  margin-left: -4rem !important;
}

.mx-n15 {
  margin-right: -3.75rem !important;
  margin-left: -3.75rem !important;
}

.mx-n14 {
  margin-right: -3.5rem !important;
  margin-left: -3.5rem !important;
}

.mx-n13 {
  margin-right: -3.25rem !important;
  margin-left: -3.25rem !important;
}

.mx-n12 {
  margin-right: -3rem !important;
  margin-left: -3rem !important;
}

.mx-n11 {
  margin-right: -2.75rem !important;
  margin-left: -2.75rem !important;
}

.mx-n10 {
  margin-right: -2.5rem !important;
  margin-left: -2.5rem !important;
}

.mx-n9 {
  margin-right: -2.25rem !important;
  margin-left: -2.25rem !important;
}

.mx-n8 {
  margin-right: -2rem !important;
  margin-left: -2rem !important;
}

.mx-n7 {
  margin-right: -1.75rem !important;
  margin-left: -1.75rem !important;
}

.mx-n6 {
  margin-right: -1.5rem !important;
  margin-left: -1.5rem !important;
}

.mx-n5 {
  margin-right: -1.25rem !important;
  margin-left: -1.25rem !important;
}

.mx-n4 {
  margin-right: -1rem !important;
  margin-left: -1rem !important;
}

.mx-n3 {
  margin-right: -0.75rem !important;
  margin-left: -0.75rem !important;
}

.mx-n2 {
  margin-right: -0.5rem !important;
  margin-left: -0.5rem !important;
}

.mx-n1 {
  margin-right: -0.25rem !important;
  margin-left: -0.25rem !important;
}

.my-n20 {
  margin-top: -5rem !important;
  margin-bottom: -5rem !important;
}

.my-n19 {
  margin-top: -4.75rem !important;
  margin-bottom: -4.75rem !important;
}

.my-n18 {
  margin-top: -4.5rem !important;
  margin-bottom: -4.5rem !important;
}

.my-n17 {
  margin-top: -4.25rem !important;
  margin-bottom: -4.25rem !important;
}

.my-n16 {
  margin-top: -4rem !important;
  margin-bottom: -4rem !important;
}

.my-n15 {
  margin-top: -3.75rem !important;
  margin-bottom: -3.75rem !important;
}

.my-n14 {
  margin-top: -3.5rem !important;
  margin-bottom: -3.5rem !important;
}

.my-n13 {
  margin-top: -3.25rem !important;
  margin-bottom: -3.25rem !important;
}

.my-n12 {
  margin-top: -3rem !important;
  margin-bottom: -3rem !important;
}

.my-n11 {
  margin-top: -2.75rem !important;
  margin-bottom: -2.75rem !important;
}

.my-n10 {
  margin-top: -2.5rem !important;
  margin-bottom: -2.5rem !important;
}

.my-n9 {
  margin-top: -2.25rem !important;
  margin-bottom: -2.25rem !important;
}

.my-n8 {
  margin-top: -2rem !important;
  margin-bottom: -2rem !important;
}

.my-n7 {
  margin-top: -1.75rem !important;
  margin-bottom: -1.75rem !important;
}

.my-n6 {
  margin-top: -1.5rem !important;
  margin-bottom: -1.5rem !important;
}

.my-n5 {
  margin-top: -1.25rem !important;
  margin-bottom: -1.25rem !important;
}

.my-n4 {
  margin-top: -1rem !important;
  margin-bottom: -1rem !important;
}

.my-n3 {
  margin-top: -0.75rem !important;
  margin-bottom: -0.75rem !important;
}

.my-n2 {
  margin-top: -0.5rem !important;
  margin-bottom: -0.5rem !important;
}

.my-n1 {
  margin-top: -0.25rem !important;
  margin-bottom: -0.25rem !important;
}

.mt-n20 {
  margin-top: -5rem !important;
}

.mt-n19 {
  margin-top: -4.75rem !important;
}

.mt-n18 {
  margin-top: -4.5rem !important;
}

.mt-n17 {
  margin-top: -4.25rem !important;
}

.mt-n16 {
  margin-top: -4rem !important;
}

.mt-n15 {
  margin-top: -3.75rem !important;
}

.mt-n14 {
  margin-top: -3.5rem !important;
}

.mt-n13 {
  margin-top: -3.25rem !important;
}

.mt-n12 {
  margin-top: -3rem !important;
}

.mt-n11 {
  margin-top: -2.75rem !important;
}

.mt-n10 {
  margin-top: -2.5rem !important;
}

.mt-n9 {
  margin-top: -2.25rem !important;
}

.mt-n8 {
  margin-top: -2rem !important;
}

.mt-n7 {
  margin-top: -1.75rem !important;
}

.mt-n6 {
  margin-top: -1.5rem !important;
}

.mt-n5 {
  margin-top: -1.25rem !important;
}

.mt-n4 {
  margin-top: -1rem !important;
}

.mt-n3 {
  margin-top: -0.75rem !important;
}

.mt-n2 {
  margin-top: -0.5rem !important;
}

.mt-n1 {
  margin-top: -0.25rem !important;
}

.me-n20 {
  margin-right: -5rem !important;
}

.me-n19 {
  margin-right: -4.75rem !important;
}

.me-n18 {
  margin-right: -4.5rem !important;
}

.me-n17 {
  margin-right: -4.25rem !important;
}

.me-n16 {
  margin-right: -4rem !important;
}

.me-n15 {
  margin-right: -3.75rem !important;
}

.me-n14 {
  margin-right: -3.5rem !important;
}

.me-n13 {
  margin-right: -3.25rem !important;
}

.me-n12 {
  margin-right: -3rem !important;
}

.me-n11 {
  margin-right: -2.75rem !important;
}

.me-n10 {
  margin-right: -2.5rem !important;
}

.me-n9 {
  margin-right: -2.25rem !important;
}

.me-n8 {
  margin-right: -2rem !important;
}

.me-n7 {
  margin-right: -1.75rem !important;
}

.me-n6 {
  margin-right: -1.5rem !important;
}

.me-n5 {
  margin-right: -1.25rem !important;
}

.me-n4 {
  margin-right: -1rem !important;
}

.me-n3 {
  margin-right: -0.75rem !important;
}

.me-n2 {
  margin-right: -0.5rem !important;
}

.me-n1 {
  margin-right: -0.25rem !important;
}

.mb-n20 {
  margin-bottom: -5rem !important;
}

.mb-n19 {
  margin-bottom: -4.75rem !important;
}

.mb-n18 {
  margin-bottom: -4.5rem !important;
}

.mb-n17 {
  margin-bottom: -4.25rem !important;
}

.mb-n16 {
  margin-bottom: -4rem !important;
}

.mb-n15 {
  margin-bottom: -3.75rem !important;
}

.mb-n14 {
  margin-bottom: -3.5rem !important;
}

.mb-n13 {
  margin-bottom: -3.25rem !important;
}

.mb-n12 {
  margin-bottom: -3rem !important;
}

.mb-n11 {
  margin-bottom: -2.75rem !important;
}

.mb-n10 {
  margin-bottom: -2.5rem !important;
}

.mb-n9 {
  margin-bottom: -2.25rem !important;
}

.mb-n8 {
  margin-bottom: -2rem !important;
}

.mb-n7 {
  margin-bottom: -1.75rem !important;
}

.mb-n6 {
  margin-bottom: -1.5rem !important;
}

.mb-n5 {
  margin-bottom: -1.25rem !important;
}

.mb-n4 {
  margin-bottom: -1rem !important;
}

.mb-n3 {
  margin-bottom: -0.75rem !important;
}

.mb-n2 {
  margin-bottom: -0.5rem !important;
}

.mb-n1 {
  margin-bottom: -0.25rem !important;
}

.ms-n20 {
  margin-left: -5rem !important;
}

.ms-n19 {
  margin-left: -4.75rem !important;
}

.ms-n18 {
  margin-left: -4.5rem !important;
}

.ms-n17 {
  margin-left: -4.25rem !important;
}

.ms-n16 {
  margin-left: -4rem !important;
}

.ms-n15 {
  margin-left: -3.75rem !important;
}

.ms-n14 {
  margin-left: -3.5rem !important;
}

.ms-n13 {
  margin-left: -3.25rem !important;
}

.ms-n12 {
  margin-left: -3rem !important;
}

.ms-n11 {
  margin-left: -2.75rem !important;
}

.ms-n10 {
  margin-left: -2.5rem !important;
}

.ms-n9 {
  margin-left: -2.25rem !important;
}

.ms-n8 {
  margin-left: -2rem !important;
}

.ms-n7 {
  margin-left: -1.75rem !important;
}

.ms-n6 {
  margin-left: -1.5rem !important;
}

.ms-n5 {
  margin-left: -1.25rem !important;
}

.ms-n4 {
  margin-left: -1rem !important;
}

.ms-n3 {
  margin-left: -0.75rem !important;
}

.ms-n2 {
  margin-left: -0.5rem !important;
}

.ms-n1 {
  margin-left: -0.25rem !important;
}

.p-20 {
  padding: 5rem !important;
}

.p-19 {
  padding: 4.75rem !important;
}

.p-18 {
  padding: 4.5rem !important;
}

.p-17 {
  padding: 4.25rem !important;
}

.p-16 {
  padding: 4rem !important;
}

.p-15 {
  padding: 3.75rem !important;
}

.p-14 {
  padding: 3.5rem !important;
}

.p-13 {
  padding: 3.25rem !important;
}

.p-12 {
  padding: 3rem !important;
}

.p-11 {
  padding: 2.75rem !important;
}

.p-10 {
  padding: 2.5rem !important;
}

.p-9 {
  padding: 2.25rem !important;
}

.p-8 {
  padding: 2rem !important;
}

.p-7 {
  padding: 1.75rem !important;
}

.p-6 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 1.25rem !important;
}

.p-4 {
  padding: 1rem !important;
}

.p-3 {
  padding: 0.75rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.px-20 {
  padding-right: 5rem !important;
  padding-left: 5rem !important;
}

.px-19 {
  padding-right: 4.75rem !important;
  padding-left: 4.75rem !important;
}

.px-18 {
  padding-right: 4.5rem !important;
  padding-left: 4.5rem !important;
}

.px-17 {
  padding-right: 4.25rem !important;
  padding-left: 4.25rem !important;
}

.px-16 {
  padding-right: 4rem !important;
  padding-left: 4rem !important;
}

.px-15 {
  padding-right: 3.75rem !important;
  padding-left: 3.75rem !important;
}

.px-14 {
  padding-right: 3.5rem !important;
  padding-left: 3.5rem !important;
}

.px-13 {
  padding-right: 3.25rem !important;
  padding-left: 3.25rem !important;
}

.px-12 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.px-11 {
  padding-right: 2.75rem !important;
  padding-left: 2.75rem !important;
}

.px-10 {
  padding-right: 2.5rem !important;
  padding-left: 2.5rem !important;
}

.px-9 {
  padding-right: 2.25rem !important;
  padding-left: 2.25rem !important;
}

.px-8 {
  padding-right: 2rem !important;
  padding-left: 2rem !important;
}

.px-7 {
  padding-right: 1.75rem !important;
  padding-left: 1.75rem !important;
}

.px-6 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 1.25rem !important;
  padding-left: 1.25rem !important;
}

.px-4 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-3 {
  padding-right: 0.75rem !important;
  padding-left: 0.75rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.py-20 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.py-19 {
  padding-top: 4.75rem !important;
  padding-bottom: 4.75rem !important;
}

.py-18 {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}

.py-17 {
  padding-top: 4.25rem !important;
  padding-bottom: 4.25rem !important;
}

.py-16 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.py-15 {
  padding-top: 3.75rem !important;
  padding-bottom: 3.75rem !important;
}

.py-14 {
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
}

.py-13 {
  padding-top: 3.25rem !important;
  padding-bottom: 3.25rem !important;
}

.py-12 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.py-11 {
  padding-top: 2.75rem !important;
  padding-bottom: 2.75rem !important;
}

.py-10 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

.py-9 {
  padding-top: 2.25rem !important;
  padding-bottom: 2.25rem !important;
}

.py-8 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.py-7 {
  padding-top: 1.75rem !important;
  padding-bottom: 1.75rem !important;
}

.py-6 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}

.py-4 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-3 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.pt-20 {
  padding-top: 5rem !important;
}

.pt-19 {
  padding-top: 4.75rem !important;
}

.pt-18 {
  padding-top: 4.5rem !important;
}

.pt-17 {
  padding-top: 4.25rem !important;
}

.pt-16 {
  padding-top: 4rem !important;
}

.pt-15 {
  padding-top: 3.75rem !important;
}

.pt-14 {
  padding-top: 3.5rem !important;
}

.pt-13 {
  padding-top: 3.25rem !important;
}

.pt-12 {
  padding-top: 3rem !important;
}

.pt-11 {
  padding-top: 2.75rem !important;
}

.pt-10 {
  padding-top: 2.5rem !important;
}

.pt-9 {
  padding-top: 2.25rem !important;
}

.pt-8 {
  padding-top: 2rem !important;
}

.pt-7 {
  padding-top: 1.75rem !important;
}

.pt-6 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 1.25rem !important;
}

.pt-4 {
  padding-top: 1rem !important;
}

.pt-3 {
  padding-top: 0.75rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pe-20 {
  padding-right: 5rem !important;
}

.pe-19 {
  padding-right: 4.75rem !important;
}

.pe-18 {
  padding-right: 4.5rem !important;
}

.pe-17 {
  padding-right: 4.25rem !important;
}

.pe-16 {
  padding-right: 4rem !important;
}

.pe-15 {
  padding-right: 3.75rem !important;
}

.pe-14 {
  padding-right: 3.5rem !important;
}

.pe-13 {
  padding-right: 3.25rem !important;
}

.pe-12 {
  padding-right: 3rem !important;
}

.pe-11 {
  padding-right: 2.75rem !important;
}

.pe-10 {
  padding-right: 2.5rem !important;
}

.pe-9 {
  padding-right: 2.25rem !important;
}

.pe-8 {
  padding-right: 2rem !important;
}

.pe-7 {
  padding-right: 1.75rem !important;
}

.pe-6 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 1.25rem !important;
}

.pe-4 {
  padding-right: 1rem !important;
}

.pe-3 {
  padding-right: 0.75rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pb-20 {
  padding-bottom: 5rem !important;
}

.pb-19 {
  padding-bottom: 4.75rem !important;
}

.pb-18 {
  padding-bottom: 4.5rem !important;
}

.pb-17 {
  padding-bottom: 4.25rem !important;
}

.pb-16 {
  padding-bottom: 4rem !important;
}

.pb-15 {
  padding-bottom: 3.75rem !important;
}

.pb-14 {
  padding-bottom: 3.5rem !important;
}

.pb-13 {
  padding-bottom: 3.25rem !important;
}

.pb-12 {
  padding-bottom: 3rem !important;
}

.pb-11 {
  padding-bottom: 2.75rem !important;
}

.pb-10 {
  padding-bottom: 2.5rem !important;
}

.pb-9 {
  padding-bottom: 2.25rem !important;
}

.pb-8 {
  padding-bottom: 2rem !important;
}

.pb-7 {
  padding-bottom: 1.75rem !important;
}

.pb-6 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 1.25rem !important;
}

.pb-4 {
  padding-bottom: 1rem !important;
}

.pb-3 {
  padding-bottom: 0.75rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.ps-20 {
  padding-left: 5rem !important;
}

.ps-19 {
  padding-left: 4.75rem !important;
}

.ps-18 {
  padding-left: 4.5rem !important;
}

.ps-17 {
  padding-left: 4.25rem !important;
}

.ps-16 {
  padding-left: 4rem !important;
}

.ps-15 {
  padding-left: 3.75rem !important;
}

.ps-14 {
  padding-left: 3.5rem !important;
}

.ps-13 {
  padding-left: 3.25rem !important;
}

.ps-12 {
  padding-left: 3rem !important;
}

.ps-11 {
  padding-left: 2.75rem !important;
}

.ps-10 {
  padding-left: 2.5rem !important;
}

.ps-9 {
  padding-left: 2.25rem !important;
}

.ps-8 {
  padding-left: 2rem !important;
}

.ps-7 {
  padding-left: 1.75rem !important;
}

.ps-6 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 1.25rem !important;
}

.ps-4 {
  padding-left: 1rem !important;
}

.ps-3 {
  padding-left: 0.75rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

@media (min-width: 360px) {
  .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-inline-grid {
    display: inline-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;
  }
  .lh-sm-24-11 {
    line-height: 2.1818181818 !important;
  }
  .lh-sm-24-13 {
    line-height: 1.8461538462 !important;
  }
  .lh-sm-28 {
    line-height: 1.8666666667 !important;
  }
  .lh-sm-30 {
    line-height: 1.875 !important;
  }
  .lh-sm-32 {
    line-height: 1.7777777778 !important;
  }
  .lh-sm-34 {
    line-height: 1.7 !important;
  }
  .lh-sm-36 {
    line-height: 1.6363636364 !important;
  }
  .lh-sm-38 {
    line-height: 1.5833333333 !important;
  }
  .lh-sm-42 {
    line-height: 1.5 !important;
  }
  .lh-sm-46 {
    line-height: 1.4375 !important;
  }
  .lh-sm-50 {
    line-height: 1.3888888889 !important;
  }
  .lh-sm-62 {
    line-height: 1.2916666667 !important;
  }
  .lh-sm-66 {
    line-height: 1.2692307692 !important;
  }
  .fs-sm-13 {
    font-size: 3.25rem !important;
  }
  .fs-sm-12 {
    font-size: 3rem !important;
  }
  .fs-sm-11 {
    font-size: 2.75rem !important;
  }
  .fs-sm-10 {
    font-size: 2.5rem !important;
  }
  .fs-sm-9 {
    font-size: 2.25rem !important;
  }
  .fs-sm-8 {
    font-size: 2rem !important;
  }
  .fs-sm-7 {
    font-size: 1.75rem !important;
  }
  .fs-sm-6 {
    font-size: 1.5rem !important;
  }
  .fs-sm-5 {
    font-size: 1.25rem !important;
  }
  .fs-sm-4 {
    font-size: 1rem !important;
  }
  .fs-sm-3 {
    font-size: 0.75rem !important;
  }
  .fs-sm-2 {
    font-size: 0.5rem !important;
  }
  .fs-sm-1 {
    font-size: 0.25rem !important;
  }
  .fs-sm-x11 {
    font-size: 0.6875rem !important;
  }
  .fs-sm-x13 {
    font-size: 0.8125rem !important;
  }
  .fs-sm-x15 {
    font-size: 0.9375rem !important;
  }
  .fs-sm-x18 {
    font-size: 1.125rem !important;
  }
  .fs-sm-x22 {
    font-size: 1.375rem !important;
  }
  .fw-sm-100 {
    font-weight: 100 !important;
  }
  .fw-sm-300 {
    font-weight: 300 !important;
  }
  .fw-sm-400 {
    font-weight: 400 !important;
  }
  .fw-sm-500 {
    font-weight: 500 !important;
  }
  .fw-sm-600 {
    font-weight: 600 !important;
  }
  .fw-sm-700 {
    font-weight: 700 !important;
  }
  .fw-sm-900 {
    font-weight: 900 !important;
  }
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !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-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !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;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .m-sm-20 {
    margin: 5rem !important;
  }
  .m-sm-19 {
    margin: 4.75rem !important;
  }
  .m-sm-18 {
    margin: 4.5rem !important;
  }
  .m-sm-17 {
    margin: 4.25rem !important;
  }
  .m-sm-16 {
    margin: 4rem !important;
  }
  .m-sm-15 {
    margin: 3.75rem !important;
  }
  .m-sm-14 {
    margin: 3.5rem !important;
  }
  .m-sm-13 {
    margin: 3.25rem !important;
  }
  .m-sm-12 {
    margin: 3rem !important;
  }
  .m-sm-11 {
    margin: 2.75rem !important;
  }
  .m-sm-10 {
    margin: 2.5rem !important;
  }
  .m-sm-9 {
    margin: 2.25rem !important;
  }
  .m-sm-8 {
    margin: 2rem !important;
  }
  .m-sm-7 {
    margin: 1.75rem !important;
  }
  .m-sm-6 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 1.25rem !important;
  }
  .m-sm-4 {
    margin: 1rem !important;
  }
  .m-sm-3 {
    margin: 0.75rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-20 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-sm-19 {
    margin-right: 4.75rem !important;
    margin-left: 4.75rem !important;
  }
  .mx-sm-18 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  .mx-sm-17 {
    margin-right: 4.25rem !important;
    margin-left: 4.25rem !important;
  }
  .mx-sm-16 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-sm-15 {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }
  .mx-sm-14 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-sm-13 {
    margin-right: 3.25rem !important;
    margin-left: 3.25rem !important;
  }
  .mx-sm-12 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-11 {
    margin-right: 2.75rem !important;
    margin-left: 2.75rem !important;
  }
  .mx-sm-10 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-sm-9 {
    margin-right: 2.25rem !important;
    margin-left: 2.25rem !important;
  }
  .mx-sm-8 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-sm-7 {
    margin-right: 1.75rem !important;
    margin-left: 1.75rem !important;
  }
  .mx-sm-6 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .mx-sm-4 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-3 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-sm-19 {
    margin-top: 4.75rem !important;
    margin-bottom: 4.75rem !important;
  }
  .my-sm-18 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .my-sm-17 {
    margin-top: 4.25rem !important;
    margin-bottom: 4.25rem !important;
  }
  .my-sm-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-sm-15 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
  .my-sm-14 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-sm-13 {
    margin-top: 3.25rem !important;
    margin-bottom: 3.25rem !important;
  }
  .my-sm-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-11 {
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }
  .my-sm-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-sm-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }
  .my-sm-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-sm-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }
  .my-sm-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .my-sm-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-20 {
    margin-top: 5rem !important;
  }
  .mt-sm-19 {
    margin-top: 4.75rem !important;
  }
  .mt-sm-18 {
    margin-top: 4.5rem !important;
  }
  .mt-sm-17 {
    margin-top: 4.25rem !important;
  }
  .mt-sm-16 {
    margin-top: 4rem !important;
  }
  .mt-sm-15 {
    margin-top: 3.75rem !important;
  }
  .mt-sm-14 {
    margin-top: 3.5rem !important;
  }
  .mt-sm-13 {
    margin-top: 3.25rem !important;
  }
  .mt-sm-12 {
    margin-top: 3rem !important;
  }
  .mt-sm-11 {
    margin-top: 2.75rem !important;
  }
  .mt-sm-10 {
    margin-top: 2.5rem !important;
  }
  .mt-sm-9 {
    margin-top: 2.25rem !important;
  }
  .mt-sm-8 {
    margin-top: 2rem !important;
  }
  .mt-sm-7 {
    margin-top: 1.75rem !important;
  }
  .mt-sm-6 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 1.25rem !important;
  }
  .mt-sm-4 {
    margin-top: 1rem !important;
  }
  .mt-sm-3 {
    margin-top: 0.75rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-20 {
    margin-right: 5rem !important;
  }
  .me-sm-19 {
    margin-right: 4.75rem !important;
  }
  .me-sm-18 {
    margin-right: 4.5rem !important;
  }
  .me-sm-17 {
    margin-right: 4.25rem !important;
  }
  .me-sm-16 {
    margin-right: 4rem !important;
  }
  .me-sm-15 {
    margin-right: 3.75rem !important;
  }
  .me-sm-14 {
    margin-right: 3.5rem !important;
  }
  .me-sm-13 {
    margin-right: 3.25rem !important;
  }
  .me-sm-12 {
    margin-right: 3rem !important;
  }
  .me-sm-11 {
    margin-right: 2.75rem !important;
  }
  .me-sm-10 {
    margin-right: 2.5rem !important;
  }
  .me-sm-9 {
    margin-right: 2.25rem !important;
  }
  .me-sm-8 {
    margin-right: 2rem !important;
  }
  .me-sm-7 {
    margin-right: 1.75rem !important;
  }
  .me-sm-6 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 1.25rem !important;
  }
  .me-sm-4 {
    margin-right: 1rem !important;
  }
  .me-sm-3 {
    margin-right: 0.75rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-20 {
    margin-bottom: 5rem !important;
  }
  .mb-sm-19 {
    margin-bottom: 4.75rem !important;
  }
  .mb-sm-18 {
    margin-bottom: 4.5rem !important;
  }
  .mb-sm-17 {
    margin-bottom: 4.25rem !important;
  }
  .mb-sm-16 {
    margin-bottom: 4rem !important;
  }
  .mb-sm-15 {
    margin-bottom: 3.75rem !important;
  }
  .mb-sm-14 {
    margin-bottom: 3.5rem !important;
  }
  .mb-sm-13 {
    margin-bottom: 3.25rem !important;
  }
  .mb-sm-12 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-11 {
    margin-bottom: 2.75rem !important;
  }
  .mb-sm-10 {
    margin-bottom: 2.5rem !important;
  }
  .mb-sm-9 {
    margin-bottom: 2.25rem !important;
  }
  .mb-sm-8 {
    margin-bottom: 2rem !important;
  }
  .mb-sm-7 {
    margin-bottom: 1.75rem !important;
  }
  .mb-sm-6 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 1.25rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 0.75rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-20 {
    margin-left: 5rem !important;
  }
  .ms-sm-19 {
    margin-left: 4.75rem !important;
  }
  .ms-sm-18 {
    margin-left: 4.5rem !important;
  }
  .ms-sm-17 {
    margin-left: 4.25rem !important;
  }
  .ms-sm-16 {
    margin-left: 4rem !important;
  }
  .ms-sm-15 {
    margin-left: 3.75rem !important;
  }
  .ms-sm-14 {
    margin-left: 3.5rem !important;
  }
  .ms-sm-13 {
    margin-left: 3.25rem !important;
  }
  .ms-sm-12 {
    margin-left: 3rem !important;
  }
  .ms-sm-11 {
    margin-left: 2.75rem !important;
  }
  .ms-sm-10 {
    margin-left: 2.5rem !important;
  }
  .ms-sm-9 {
    margin-left: 2.25rem !important;
  }
  .ms-sm-8 {
    margin-left: 2rem !important;
  }
  .ms-sm-7 {
    margin-left: 1.75rem !important;
  }
  .ms-sm-6 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 1.25rem !important;
  }
  .ms-sm-4 {
    margin-left: 1rem !important;
  }
  .ms-sm-3 {
    margin-left: 0.75rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .m-sm-n20 {
    margin: -5rem !important;
  }
  .m-sm-n19 {
    margin: -4.75rem !important;
  }
  .m-sm-n18 {
    margin: -4.5rem !important;
  }
  .m-sm-n17 {
    margin: -4.25rem !important;
  }
  .m-sm-n16 {
    margin: -4rem !important;
  }
  .m-sm-n15 {
    margin: -3.75rem !important;
  }
  .m-sm-n14 {
    margin: -3.5rem !important;
  }
  .m-sm-n13 {
    margin: -3.25rem !important;
  }
  .m-sm-n12 {
    margin: -3rem !important;
  }
  .m-sm-n11 {
    margin: -2.75rem !important;
  }
  .m-sm-n10 {
    margin: -2.5rem !important;
  }
  .m-sm-n9 {
    margin: -2.25rem !important;
  }
  .m-sm-n8 {
    margin: -2rem !important;
  }
  .m-sm-n7 {
    margin: -1.75rem !important;
  }
  .m-sm-n6 {
    margin: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -1.25rem !important;
  }
  .m-sm-n4 {
    margin: -1rem !important;
  }
  .m-sm-n3 {
    margin: -0.75rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .mx-sm-n20 {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }
  .mx-sm-n19 {
    margin-right: -4.75rem !important;
    margin-left: -4.75rem !important;
  }
  .mx-sm-n18 {
    margin-right: -4.5rem !important;
    margin-left: -4.5rem !important;
  }
  .mx-sm-n17 {
    margin-right: -4.25rem !important;
    margin-left: -4.25rem !important;
  }
  .mx-sm-n16 {
    margin-right: -4rem !important;
    margin-left: -4rem !important;
  }
  .mx-sm-n15 {
    margin-right: -3.75rem !important;
    margin-left: -3.75rem !important;
  }
  .mx-sm-n14 {
    margin-right: -3.5rem !important;
    margin-left: -3.5rem !important;
  }
  .mx-sm-n13 {
    margin-right: -3.25rem !important;
    margin-left: -3.25rem !important;
  }
  .mx-sm-n12 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .mx-sm-n11 {
    margin-right: -2.75rem !important;
    margin-left: -2.75rem !important;
  }
  .mx-sm-n10 {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }
  .mx-sm-n9 {
    margin-right: -2.25rem !important;
    margin-left: -2.25rem !important;
  }
  .mx-sm-n8 {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }
  .mx-sm-n7 {
    margin-right: -1.75rem !important;
    margin-left: -1.75rem !important;
  }
  .mx-sm-n6 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-sm-n5 {
    margin-right: -1.25rem !important;
    margin-left: -1.25rem !important;
  }
  .mx-sm-n4 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-sm-n3 {
    margin-right: -0.75rem !important;
    margin-left: -0.75rem !important;
  }
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .my-sm-n20 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .my-sm-n19 {
    margin-top: -4.75rem !important;
    margin-bottom: -4.75rem !important;
  }
  .my-sm-n18 {
    margin-top: -4.5rem !important;
    margin-bottom: -4.5rem !important;
  }
  .my-sm-n17 {
    margin-top: -4.25rem !important;
    margin-bottom: -4.25rem !important;
  }
  .my-sm-n16 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .my-sm-n15 {
    margin-top: -3.75rem !important;
    margin-bottom: -3.75rem !important;
  }
  .my-sm-n14 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }
  .my-sm-n13 {
    margin-top: -3.25rem !important;
    margin-bottom: -3.25rem !important;
  }
  .my-sm-n12 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .my-sm-n11 {
    margin-top: -2.75rem !important;
    margin-bottom: -2.75rem !important;
  }
  .my-sm-n10 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .my-sm-n9 {
    margin-top: -2.25rem !important;
    margin-bottom: -2.25rem !important;
  }
  .my-sm-n8 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .my-sm-n7 {
    margin-top: -1.75rem !important;
    margin-bottom: -1.75rem !important;
  }
  .my-sm-n6 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-sm-n5 {
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }
  .my-sm-n4 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-sm-n3 {
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }
  .my-sm-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-sm-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .mt-sm-n20 {
    margin-top: -5rem !important;
  }
  .mt-sm-n19 {
    margin-top: -4.75rem !important;
  }
  .mt-sm-n18 {
    margin-top: -4.5rem !important;
  }
  .mt-sm-n17 {
    margin-top: -4.25rem !important;
  }
  .mt-sm-n16 {
    margin-top: -4rem !important;
  }
  .mt-sm-n15 {
    margin-top: -3.75rem !important;
  }
  .mt-sm-n14 {
    margin-top: -3.5rem !important;
  }
  .mt-sm-n13 {
    margin-top: -3.25rem !important;
  }
  .mt-sm-n12 {
    margin-top: -3rem !important;
  }
  .mt-sm-n11 {
    margin-top: -2.75rem !important;
  }
  .mt-sm-n10 {
    margin-top: -2.5rem !important;
  }
  .mt-sm-n9 {
    margin-top: -2.25rem !important;
  }
  .mt-sm-n8 {
    margin-top: -2rem !important;
  }
  .mt-sm-n7 {
    margin-top: -1.75rem !important;
  }
  .mt-sm-n6 {
    margin-top: -1.5rem !important;
  }
  .mt-sm-n5 {
    margin-top: -1.25rem !important;
  }
  .mt-sm-n4 {
    margin-top: -1rem !important;
  }
  .mt-sm-n3 {
    margin-top: -0.75rem !important;
  }
  .mt-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .me-sm-n20 {
    margin-right: -5rem !important;
  }
  .me-sm-n19 {
    margin-right: -4.75rem !important;
  }
  .me-sm-n18 {
    margin-right: -4.5rem !important;
  }
  .me-sm-n17 {
    margin-right: -4.25rem !important;
  }
  .me-sm-n16 {
    margin-right: -4rem !important;
  }
  .me-sm-n15 {
    margin-right: -3.75rem !important;
  }
  .me-sm-n14 {
    margin-right: -3.5rem !important;
  }
  .me-sm-n13 {
    margin-right: -3.25rem !important;
  }
  .me-sm-n12 {
    margin-right: -3rem !important;
  }
  .me-sm-n11 {
    margin-right: -2.75rem !important;
  }
  .me-sm-n10 {
    margin-right: -2.5rem !important;
  }
  .me-sm-n9 {
    margin-right: -2.25rem !important;
  }
  .me-sm-n8 {
    margin-right: -2rem !important;
  }
  .me-sm-n7 {
    margin-right: -1.75rem !important;
  }
  .me-sm-n6 {
    margin-right: -1.5rem !important;
  }
  .me-sm-n5 {
    margin-right: -1.25rem !important;
  }
  .me-sm-n4 {
    margin-right: -1rem !important;
  }
  .me-sm-n3 {
    margin-right: -0.75rem !important;
  }
  .me-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .me-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n20 {
    margin-bottom: -5rem !important;
  }
  .mb-sm-n19 {
    margin-bottom: -4.75rem !important;
  }
  .mb-sm-n18 {
    margin-bottom: -4.5rem !important;
  }
  .mb-sm-n17 {
    margin-bottom: -4.25rem !important;
  }
  .mb-sm-n16 {
    margin-bottom: -4rem !important;
  }
  .mb-sm-n15 {
    margin-bottom: -3.75rem !important;
  }
  .mb-sm-n14 {
    margin-bottom: -3.5rem !important;
  }
  .mb-sm-n13 {
    margin-bottom: -3.25rem !important;
  }
  .mb-sm-n12 {
    margin-bottom: -3rem !important;
  }
  .mb-sm-n11 {
    margin-bottom: -2.75rem !important;
  }
  .mb-sm-n10 {
    margin-bottom: -2.5rem !important;
  }
  .mb-sm-n9 {
    margin-bottom: -2.25rem !important;
  }
  .mb-sm-n8 {
    margin-bottom: -2rem !important;
  }
  .mb-sm-n7 {
    margin-bottom: -1.75rem !important;
  }
  .mb-sm-n6 {
    margin-bottom: -1.5rem !important;
  }
  .mb-sm-n5 {
    margin-bottom: -1.25rem !important;
  }
  .mb-sm-n4 {
    margin-bottom: -1rem !important;
  }
  .mb-sm-n3 {
    margin-bottom: -0.75rem !important;
  }
  .mb-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ms-sm-n20 {
    margin-left: -5rem !important;
  }
  .ms-sm-n19 {
    margin-left: -4.75rem !important;
  }
  .ms-sm-n18 {
    margin-left: -4.5rem !important;
  }
  .ms-sm-n17 {
    margin-left: -4.25rem !important;
  }
  .ms-sm-n16 {
    margin-left: -4rem !important;
  }
  .ms-sm-n15 {
    margin-left: -3.75rem !important;
  }
  .ms-sm-n14 {
    margin-left: -3.5rem !important;
  }
  .ms-sm-n13 {
    margin-left: -3.25rem !important;
  }
  .ms-sm-n12 {
    margin-left: -3rem !important;
  }
  .ms-sm-n11 {
    margin-left: -2.75rem !important;
  }
  .ms-sm-n10 {
    margin-left: -2.5rem !important;
  }
  .ms-sm-n9 {
    margin-left: -2.25rem !important;
  }
  .ms-sm-n8 {
    margin-left: -2rem !important;
  }
  .ms-sm-n7 {
    margin-left: -1.75rem !important;
  }
  .ms-sm-n6 {
    margin-left: -1.5rem !important;
  }
  .ms-sm-n5 {
    margin-left: -1.25rem !important;
  }
  .ms-sm-n4 {
    margin-left: -1rem !important;
  }
  .ms-sm-n3 {
    margin-left: -0.75rem !important;
  }
  .ms-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .ms-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .p-sm-20 {
    padding: 5rem !important;
  }
  .p-sm-19 {
    padding: 4.75rem !important;
  }
  .p-sm-18 {
    padding: 4.5rem !important;
  }
  .p-sm-17 {
    padding: 4.25rem !important;
  }
  .p-sm-16 {
    padding: 4rem !important;
  }
  .p-sm-15 {
    padding: 3.75rem !important;
  }
  .p-sm-14 {
    padding: 3.5rem !important;
  }
  .p-sm-13 {
    padding: 3.25rem !important;
  }
  .p-sm-12 {
    padding: 3rem !important;
  }
  .p-sm-11 {
    padding: 2.75rem !important;
  }
  .p-sm-10 {
    padding: 2.5rem !important;
  }
  .p-sm-9 {
    padding: 2.25rem !important;
  }
  .p-sm-8 {
    padding: 2rem !important;
  }
  .p-sm-7 {
    padding: 1.75rem !important;
  }
  .p-sm-6 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 1.25rem !important;
  }
  .p-sm-4 {
    padding: 1rem !important;
  }
  .p-sm-3 {
    padding: 0.75rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .px-sm-20 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-sm-19 {
    padding-right: 4.75rem !important;
    padding-left: 4.75rem !important;
  }
  .px-sm-18 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  .px-sm-17 {
    padding-right: 4.25rem !important;
    padding-left: 4.25rem !important;
  }
  .px-sm-16 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-sm-15 {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
  }
  .px-sm-14 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-sm-13 {
    padding-right: 3.25rem !important;
    padding-left: 3.25rem !important;
  }
  .px-sm-12 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-sm-11 {
    padding-right: 2.75rem !important;
    padding-left: 2.75rem !important;
  }
  .px-sm-10 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-sm-9 {
    padding-right: 2.25rem !important;
    padding-left: 2.25rem !important;
  }
  .px-sm-8 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-sm-7 {
    padding-right: 1.75rem !important;
    padding-left: 1.75rem !important;
  }
  .px-sm-6 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .px-sm-4 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-3 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .py-sm-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-sm-19 {
    padding-top: 4.75rem !important;
    padding-bottom: 4.75rem !important;
  }
  .py-sm-18 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .py-sm-17 {
    padding-top: 4.25rem !important;
    padding-bottom: 4.25rem !important;
  }
  .py-sm-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-sm-15 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
  .py-sm-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-sm-13 {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
  }
  .py-sm-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-sm-11 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }
  .py-sm-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-sm-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }
  .py-sm-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-sm-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }
  .py-sm-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .py-sm-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .pt-sm-20 {
    padding-top: 5rem !important;
  }
  .pt-sm-19 {
    padding-top: 4.75rem !important;
  }
  .pt-sm-18 {
    padding-top: 4.5rem !important;
  }
  .pt-sm-17 {
    padding-top: 4.25rem !important;
  }
  .pt-sm-16 {
    padding-top: 4rem !important;
  }
  .pt-sm-15 {
    padding-top: 3.75rem !important;
  }
  .pt-sm-14 {
    padding-top: 3.5rem !important;
  }
  .pt-sm-13 {
    padding-top: 3.25rem !important;
  }
  .pt-sm-12 {
    padding-top: 3rem !important;
  }
  .pt-sm-11 {
    padding-top: 2.75rem !important;
  }
  .pt-sm-10 {
    padding-top: 2.5rem !important;
  }
  .pt-sm-9 {
    padding-top: 2.25rem !important;
  }
  .pt-sm-8 {
    padding-top: 2rem !important;
  }
  .pt-sm-7 {
    padding-top: 1.75rem !important;
  }
  .pt-sm-6 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 1.25rem !important;
  }
  .pt-sm-4 {
    padding-top: 1rem !important;
  }
  .pt-sm-3 {
    padding-top: 0.75rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pe-sm-20 {
    padding-right: 5rem !important;
  }
  .pe-sm-19 {
    padding-right: 4.75rem !important;
  }
  .pe-sm-18 {
    padding-right: 4.5rem !important;
  }
  .pe-sm-17 {
    padding-right: 4.25rem !important;
  }
  .pe-sm-16 {
    padding-right: 4rem !important;
  }
  .pe-sm-15 {
    padding-right: 3.75rem !important;
  }
  .pe-sm-14 {
    padding-right: 3.5rem !important;
  }
  .pe-sm-13 {
    padding-right: 3.25rem !important;
  }
  .pe-sm-12 {
    padding-right: 3rem !important;
  }
  .pe-sm-11 {
    padding-right: 2.75rem !important;
  }
  .pe-sm-10 {
    padding-right: 2.5rem !important;
  }
  .pe-sm-9 {
    padding-right: 2.25rem !important;
  }
  .pe-sm-8 {
    padding-right: 2rem !important;
  }
  .pe-sm-7 {
    padding-right: 1.75rem !important;
  }
  .pe-sm-6 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 1.25rem !important;
  }
  .pe-sm-4 {
    padding-right: 1rem !important;
  }
  .pe-sm-3 {
    padding-right: 0.75rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-20 {
    padding-bottom: 5rem !important;
  }
  .pb-sm-19 {
    padding-bottom: 4.75rem !important;
  }
  .pb-sm-18 {
    padding-bottom: 4.5rem !important;
  }
  .pb-sm-17 {
    padding-bottom: 4.25rem !important;
  }
  .pb-sm-16 {
    padding-bottom: 4rem !important;
  }
  .pb-sm-15 {
    padding-bottom: 3.75rem !important;
  }
  .pb-sm-14 {
    padding-bottom: 3.5rem !important;
  }
  .pb-sm-13 {
    padding-bottom: 3.25rem !important;
  }
  .pb-sm-12 {
    padding-bottom: 3rem !important;
  }
  .pb-sm-11 {
    padding-bottom: 2.75rem !important;
  }
  .pb-sm-10 {
    padding-bottom: 2.5rem !important;
  }
  .pb-sm-9 {
    padding-bottom: 2.25rem !important;
  }
  .pb-sm-8 {
    padding-bottom: 2rem !important;
  }
  .pb-sm-7 {
    padding-bottom: 1.75rem !important;
  }
  .pb-sm-6 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 1.25rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 0.75rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .ps-sm-20 {
    padding-left: 5rem !important;
  }
  .ps-sm-19 {
    padding-left: 4.75rem !important;
  }
  .ps-sm-18 {
    padding-left: 4.5rem !important;
  }
  .ps-sm-17 {
    padding-left: 4.25rem !important;
  }
  .ps-sm-16 {
    padding-left: 4rem !important;
  }
  .ps-sm-15 {
    padding-left: 3.75rem !important;
  }
  .ps-sm-14 {
    padding-left: 3.5rem !important;
  }
  .ps-sm-13 {
    padding-left: 3.25rem !important;
  }
  .ps-sm-12 {
    padding-left: 3rem !important;
  }
  .ps-sm-11 {
    padding-left: 2.75rem !important;
  }
  .ps-sm-10 {
    padding-left: 2.5rem !important;
  }
  .ps-sm-9 {
    padding-left: 2.25rem !important;
  }
  .ps-sm-8 {
    padding-left: 2rem !important;
  }
  .ps-sm-7 {
    padding-left: 1.75rem !important;
  }
  .ps-sm-6 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 1.25rem !important;
  }
  .ps-sm-4 {
    padding-left: 1rem !important;
  }
  .ps-sm-3 {
    padding-left: 0.75rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
}
@media (min-width: 768px) {
  .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-inline-grid {
    display: inline-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;
  }
  .lh-md-24-11 {
    line-height: 2.1818181818 !important;
  }
  .lh-md-24-13 {
    line-height: 1.8461538462 !important;
  }
  .lh-md-28 {
    line-height: 1.8666666667 !important;
  }
  .lh-md-30 {
    line-height: 1.875 !important;
  }
  .lh-md-32 {
    line-height: 1.7777777778 !important;
  }
  .lh-md-34 {
    line-height: 1.7 !important;
  }
  .lh-md-36 {
    line-height: 1.6363636364 !important;
  }
  .lh-md-38 {
    line-height: 1.5833333333 !important;
  }
  .lh-md-42 {
    line-height: 1.5 !important;
  }
  .lh-md-46 {
    line-height: 1.4375 !important;
  }
  .lh-md-50 {
    line-height: 1.3888888889 !important;
  }
  .lh-md-62 {
    line-height: 1.2916666667 !important;
  }
  .lh-md-66 {
    line-height: 1.2692307692 !important;
  }
  .fs-md-13 {
    font-size: 3.25rem !important;
  }
  .fs-md-12 {
    font-size: 3rem !important;
  }
  .fs-md-11 {
    font-size: 2.75rem !important;
  }
  .fs-md-10 {
    font-size: 2.5rem !important;
  }
  .fs-md-9 {
    font-size: 2.25rem !important;
  }
  .fs-md-8 {
    font-size: 2rem !important;
  }
  .fs-md-7 {
    font-size: 1.75rem !important;
  }
  .fs-md-6 {
    font-size: 1.5rem !important;
  }
  .fs-md-5 {
    font-size: 1.25rem !important;
  }
  .fs-md-4 {
    font-size: 1rem !important;
  }
  .fs-md-3 {
    font-size: 0.75rem !important;
  }
  .fs-md-2 {
    font-size: 0.5rem !important;
  }
  .fs-md-1 {
    font-size: 0.25rem !important;
  }
  .fs-md-x11 {
    font-size: 0.6875rem !important;
  }
  .fs-md-x13 {
    font-size: 0.8125rem !important;
  }
  .fs-md-x15 {
    font-size: 0.9375rem !important;
  }
  .fs-md-x18 {
    font-size: 1.125rem !important;
  }
  .fs-md-x22 {
    font-size: 1.375rem !important;
  }
  .fw-md-100 {
    font-weight: 100 !important;
  }
  .fw-md-300 {
    font-weight: 300 !important;
  }
  .fw-md-400 {
    font-weight: 400 !important;
  }
  .fw-md-500 {
    font-weight: 500 !important;
  }
  .fw-md-600 {
    font-weight: 600 !important;
  }
  .fw-md-700 {
    font-weight: 700 !important;
  }
  .fw-md-900 {
    font-weight: 900 !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !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-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !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;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .m-md-20 {
    margin: 5rem !important;
  }
  .m-md-19 {
    margin: 4.75rem !important;
  }
  .m-md-18 {
    margin: 4.5rem !important;
  }
  .m-md-17 {
    margin: 4.25rem !important;
  }
  .m-md-16 {
    margin: 4rem !important;
  }
  .m-md-15 {
    margin: 3.75rem !important;
  }
  .m-md-14 {
    margin: 3.5rem !important;
  }
  .m-md-13 {
    margin: 3.25rem !important;
  }
  .m-md-12 {
    margin: 3rem !important;
  }
  .m-md-11 {
    margin: 2.75rem !important;
  }
  .m-md-10 {
    margin: 2.5rem !important;
  }
  .m-md-9 {
    margin: 2.25rem !important;
  }
  .m-md-8 {
    margin: 2rem !important;
  }
  .m-md-7 {
    margin: 1.75rem !important;
  }
  .m-md-6 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 1.25rem !important;
  }
  .m-md-4 {
    margin: 1rem !important;
  }
  .m-md-3 {
    margin: 0.75rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-20 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-md-19 {
    margin-right: 4.75rem !important;
    margin-left: 4.75rem !important;
  }
  .mx-md-18 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  .mx-md-17 {
    margin-right: 4.25rem !important;
    margin-left: 4.25rem !important;
  }
  .mx-md-16 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-md-15 {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }
  .mx-md-14 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-md-13 {
    margin-right: 3.25rem !important;
    margin-left: 3.25rem !important;
  }
  .mx-md-12 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-11 {
    margin-right: 2.75rem !important;
    margin-left: 2.75rem !important;
  }
  .mx-md-10 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-md-9 {
    margin-right: 2.25rem !important;
    margin-left: 2.25rem !important;
  }
  .mx-md-8 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-md-7 {
    margin-right: 1.75rem !important;
    margin-left: 1.75rem !important;
  }
  .mx-md-6 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .mx-md-4 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-3 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-md-19 {
    margin-top: 4.75rem !important;
    margin-bottom: 4.75rem !important;
  }
  .my-md-18 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .my-md-17 {
    margin-top: 4.25rem !important;
    margin-bottom: 4.25rem !important;
  }
  .my-md-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-md-15 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
  .my-md-14 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-md-13 {
    margin-top: 3.25rem !important;
    margin-bottom: 3.25rem !important;
  }
  .my-md-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-11 {
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }
  .my-md-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-md-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }
  .my-md-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-md-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }
  .my-md-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .my-md-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-20 {
    margin-top: 5rem !important;
  }
  .mt-md-19 {
    margin-top: 4.75rem !important;
  }
  .mt-md-18 {
    margin-top: 4.5rem !important;
  }
  .mt-md-17 {
    margin-top: 4.25rem !important;
  }
  .mt-md-16 {
    margin-top: 4rem !important;
  }
  .mt-md-15 {
    margin-top: 3.75rem !important;
  }
  .mt-md-14 {
    margin-top: 3.5rem !important;
  }
  .mt-md-13 {
    margin-top: 3.25rem !important;
  }
  .mt-md-12 {
    margin-top: 3rem !important;
  }
  .mt-md-11 {
    margin-top: 2.75rem !important;
  }
  .mt-md-10 {
    margin-top: 2.5rem !important;
  }
  .mt-md-9 {
    margin-top: 2.25rem !important;
  }
  .mt-md-8 {
    margin-top: 2rem !important;
  }
  .mt-md-7 {
    margin-top: 1.75rem !important;
  }
  .mt-md-6 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 1.25rem !important;
  }
  .mt-md-4 {
    margin-top: 1rem !important;
  }
  .mt-md-3 {
    margin-top: 0.75rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-20 {
    margin-right: 5rem !important;
  }
  .me-md-19 {
    margin-right: 4.75rem !important;
  }
  .me-md-18 {
    margin-right: 4.5rem !important;
  }
  .me-md-17 {
    margin-right: 4.25rem !important;
  }
  .me-md-16 {
    margin-right: 4rem !important;
  }
  .me-md-15 {
    margin-right: 3.75rem !important;
  }
  .me-md-14 {
    margin-right: 3.5rem !important;
  }
  .me-md-13 {
    margin-right: 3.25rem !important;
  }
  .me-md-12 {
    margin-right: 3rem !important;
  }
  .me-md-11 {
    margin-right: 2.75rem !important;
  }
  .me-md-10 {
    margin-right: 2.5rem !important;
  }
  .me-md-9 {
    margin-right: 2.25rem !important;
  }
  .me-md-8 {
    margin-right: 2rem !important;
  }
  .me-md-7 {
    margin-right: 1.75rem !important;
  }
  .me-md-6 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 1.25rem !important;
  }
  .me-md-4 {
    margin-right: 1rem !important;
  }
  .me-md-3 {
    margin-right: 0.75rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-20 {
    margin-bottom: 5rem !important;
  }
  .mb-md-19 {
    margin-bottom: 4.75rem !important;
  }
  .mb-md-18 {
    margin-bottom: 4.5rem !important;
  }
  .mb-md-17 {
    margin-bottom: 4.25rem !important;
  }
  .mb-md-16 {
    margin-bottom: 4rem !important;
  }
  .mb-md-15 {
    margin-bottom: 3.75rem !important;
  }
  .mb-md-14 {
    margin-bottom: 3.5rem !important;
  }
  .mb-md-13 {
    margin-bottom: 3.25rem !important;
  }
  .mb-md-12 {
    margin-bottom: 3rem !important;
  }
  .mb-md-11 {
    margin-bottom: 2.75rem !important;
  }
  .mb-md-10 {
    margin-bottom: 2.5rem !important;
  }
  .mb-md-9 {
    margin-bottom: 2.25rem !important;
  }
  .mb-md-8 {
    margin-bottom: 2rem !important;
  }
  .mb-md-7 {
    margin-bottom: 1.75rem !important;
  }
  .mb-md-6 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 1.25rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1rem !important;
  }
  .mb-md-3 {
    margin-bottom: 0.75rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-20 {
    margin-left: 5rem !important;
  }
  .ms-md-19 {
    margin-left: 4.75rem !important;
  }
  .ms-md-18 {
    margin-left: 4.5rem !important;
  }
  .ms-md-17 {
    margin-left: 4.25rem !important;
  }
  .ms-md-16 {
    margin-left: 4rem !important;
  }
  .ms-md-15 {
    margin-left: 3.75rem !important;
  }
  .ms-md-14 {
    margin-left: 3.5rem !important;
  }
  .ms-md-13 {
    margin-left: 3.25rem !important;
  }
  .ms-md-12 {
    margin-left: 3rem !important;
  }
  .ms-md-11 {
    margin-left: 2.75rem !important;
  }
  .ms-md-10 {
    margin-left: 2.5rem !important;
  }
  .ms-md-9 {
    margin-left: 2.25rem !important;
  }
  .ms-md-8 {
    margin-left: 2rem !important;
  }
  .ms-md-7 {
    margin-left: 1.75rem !important;
  }
  .ms-md-6 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 1.25rem !important;
  }
  .ms-md-4 {
    margin-left: 1rem !important;
  }
  .ms-md-3 {
    margin-left: 0.75rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .m-md-n20 {
    margin: -5rem !important;
  }
  .m-md-n19 {
    margin: -4.75rem !important;
  }
  .m-md-n18 {
    margin: -4.5rem !important;
  }
  .m-md-n17 {
    margin: -4.25rem !important;
  }
  .m-md-n16 {
    margin: -4rem !important;
  }
  .m-md-n15 {
    margin: -3.75rem !important;
  }
  .m-md-n14 {
    margin: -3.5rem !important;
  }
  .m-md-n13 {
    margin: -3.25rem !important;
  }
  .m-md-n12 {
    margin: -3rem !important;
  }
  .m-md-n11 {
    margin: -2.75rem !important;
  }
  .m-md-n10 {
    margin: -2.5rem !important;
  }
  .m-md-n9 {
    margin: -2.25rem !important;
  }
  .m-md-n8 {
    margin: -2rem !important;
  }
  .m-md-n7 {
    margin: -1.75rem !important;
  }
  .m-md-n6 {
    margin: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -1.25rem !important;
  }
  .m-md-n4 {
    margin: -1rem !important;
  }
  .m-md-n3 {
    margin: -0.75rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .mx-md-n20 {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }
  .mx-md-n19 {
    margin-right: -4.75rem !important;
    margin-left: -4.75rem !important;
  }
  .mx-md-n18 {
    margin-right: -4.5rem !important;
    margin-left: -4.5rem !important;
  }
  .mx-md-n17 {
    margin-right: -4.25rem !important;
    margin-left: -4.25rem !important;
  }
  .mx-md-n16 {
    margin-right: -4rem !important;
    margin-left: -4rem !important;
  }
  .mx-md-n15 {
    margin-right: -3.75rem !important;
    margin-left: -3.75rem !important;
  }
  .mx-md-n14 {
    margin-right: -3.5rem !important;
    margin-left: -3.5rem !important;
  }
  .mx-md-n13 {
    margin-right: -3.25rem !important;
    margin-left: -3.25rem !important;
  }
  .mx-md-n12 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .mx-md-n11 {
    margin-right: -2.75rem !important;
    margin-left: -2.75rem !important;
  }
  .mx-md-n10 {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }
  .mx-md-n9 {
    margin-right: -2.25rem !important;
    margin-left: -2.25rem !important;
  }
  .mx-md-n8 {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }
  .mx-md-n7 {
    margin-right: -1.75rem !important;
    margin-left: -1.75rem !important;
  }
  .mx-md-n6 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-md-n5 {
    margin-right: -1.25rem !important;
    margin-left: -1.25rem !important;
  }
  .mx-md-n4 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-md-n3 {
    margin-right: -0.75rem !important;
    margin-left: -0.75rem !important;
  }
  .mx-md-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-md-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .my-md-n20 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .my-md-n19 {
    margin-top: -4.75rem !important;
    margin-bottom: -4.75rem !important;
  }
  .my-md-n18 {
    margin-top: -4.5rem !important;
    margin-bottom: -4.5rem !important;
  }
  .my-md-n17 {
    margin-top: -4.25rem !important;
    margin-bottom: -4.25rem !important;
  }
  .my-md-n16 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .my-md-n15 {
    margin-top: -3.75rem !important;
    margin-bottom: -3.75rem !important;
  }
  .my-md-n14 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }
  .my-md-n13 {
    margin-top: -3.25rem !important;
    margin-bottom: -3.25rem !important;
  }
  .my-md-n12 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .my-md-n11 {
    margin-top: -2.75rem !important;
    margin-bottom: -2.75rem !important;
  }
  .my-md-n10 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .my-md-n9 {
    margin-top: -2.25rem !important;
    margin-bottom: -2.25rem !important;
  }
  .my-md-n8 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .my-md-n7 {
    margin-top: -1.75rem !important;
    margin-bottom: -1.75rem !important;
  }
  .my-md-n6 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-md-n5 {
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }
  .my-md-n4 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-md-n3 {
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }
  .my-md-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-md-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .mt-md-n20 {
    margin-top: -5rem !important;
  }
  .mt-md-n19 {
    margin-top: -4.75rem !important;
  }
  .mt-md-n18 {
    margin-top: -4.5rem !important;
  }
  .mt-md-n17 {
    margin-top: -4.25rem !important;
  }
  .mt-md-n16 {
    margin-top: -4rem !important;
  }
  .mt-md-n15 {
    margin-top: -3.75rem !important;
  }
  .mt-md-n14 {
    margin-top: -3.5rem !important;
  }
  .mt-md-n13 {
    margin-top: -3.25rem !important;
  }
  .mt-md-n12 {
    margin-top: -3rem !important;
  }
  .mt-md-n11 {
    margin-top: -2.75rem !important;
  }
  .mt-md-n10 {
    margin-top: -2.5rem !important;
  }
  .mt-md-n9 {
    margin-top: -2.25rem !important;
  }
  .mt-md-n8 {
    margin-top: -2rem !important;
  }
  .mt-md-n7 {
    margin-top: -1.75rem !important;
  }
  .mt-md-n6 {
    margin-top: -1.5rem !important;
  }
  .mt-md-n5 {
    margin-top: -1.25rem !important;
  }
  .mt-md-n4 {
    margin-top: -1rem !important;
  }
  .mt-md-n3 {
    margin-top: -0.75rem !important;
  }
  .mt-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-md-n1 {
    margin-top: -0.25rem !important;
  }
  .me-md-n20 {
    margin-right: -5rem !important;
  }
  .me-md-n19 {
    margin-right: -4.75rem !important;
  }
  .me-md-n18 {
    margin-right: -4.5rem !important;
  }
  .me-md-n17 {
    margin-right: -4.25rem !important;
  }
  .me-md-n16 {
    margin-right: -4rem !important;
  }
  .me-md-n15 {
    margin-right: -3.75rem !important;
  }
  .me-md-n14 {
    margin-right: -3.5rem !important;
  }
  .me-md-n13 {
    margin-right: -3.25rem !important;
  }
  .me-md-n12 {
    margin-right: -3rem !important;
  }
  .me-md-n11 {
    margin-right: -2.75rem !important;
  }
  .me-md-n10 {
    margin-right: -2.5rem !important;
  }
  .me-md-n9 {
    margin-right: -2.25rem !important;
  }
  .me-md-n8 {
    margin-right: -2rem !important;
  }
  .me-md-n7 {
    margin-right: -1.75rem !important;
  }
  .me-md-n6 {
    margin-right: -1.5rem !important;
  }
  .me-md-n5 {
    margin-right: -1.25rem !important;
  }
  .me-md-n4 {
    margin-right: -1rem !important;
  }
  .me-md-n3 {
    margin-right: -0.75rem !important;
  }
  .me-md-n2 {
    margin-right: -0.5rem !important;
  }
  .me-md-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n20 {
    margin-bottom: -5rem !important;
  }
  .mb-md-n19 {
    margin-bottom: -4.75rem !important;
  }
  .mb-md-n18 {
    margin-bottom: -4.5rem !important;
  }
  .mb-md-n17 {
    margin-bottom: -4.25rem !important;
  }
  .mb-md-n16 {
    margin-bottom: -4rem !important;
  }
  .mb-md-n15 {
    margin-bottom: -3.75rem !important;
  }
  .mb-md-n14 {
    margin-bottom: -3.5rem !important;
  }
  .mb-md-n13 {
    margin-bottom: -3.25rem !important;
  }
  .mb-md-n12 {
    margin-bottom: -3rem !important;
  }
  .mb-md-n11 {
    margin-bottom: -2.75rem !important;
  }
  .mb-md-n10 {
    margin-bottom: -2.5rem !important;
  }
  .mb-md-n9 {
    margin-bottom: -2.25rem !important;
  }
  .mb-md-n8 {
    margin-bottom: -2rem !important;
  }
  .mb-md-n7 {
    margin-bottom: -1.75rem !important;
  }
  .mb-md-n6 {
    margin-bottom: -1.5rem !important;
  }
  .mb-md-n5 {
    margin-bottom: -1.25rem !important;
  }
  .mb-md-n4 {
    margin-bottom: -1rem !important;
  }
  .mb-md-n3 {
    margin-bottom: -0.75rem !important;
  }
  .mb-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ms-md-n20 {
    margin-left: -5rem !important;
  }
  .ms-md-n19 {
    margin-left: -4.75rem !important;
  }
  .ms-md-n18 {
    margin-left: -4.5rem !important;
  }
  .ms-md-n17 {
    margin-left: -4.25rem !important;
  }
  .ms-md-n16 {
    margin-left: -4rem !important;
  }
  .ms-md-n15 {
    margin-left: -3.75rem !important;
  }
  .ms-md-n14 {
    margin-left: -3.5rem !important;
  }
  .ms-md-n13 {
    margin-left: -3.25rem !important;
  }
  .ms-md-n12 {
    margin-left: -3rem !important;
  }
  .ms-md-n11 {
    margin-left: -2.75rem !important;
  }
  .ms-md-n10 {
    margin-left: -2.5rem !important;
  }
  .ms-md-n9 {
    margin-left: -2.25rem !important;
  }
  .ms-md-n8 {
    margin-left: -2rem !important;
  }
  .ms-md-n7 {
    margin-left: -1.75rem !important;
  }
  .ms-md-n6 {
    margin-left: -1.5rem !important;
  }
  .ms-md-n5 {
    margin-left: -1.25rem !important;
  }
  .ms-md-n4 {
    margin-left: -1rem !important;
  }
  .ms-md-n3 {
    margin-left: -0.75rem !important;
  }
  .ms-md-n2 {
    margin-left: -0.5rem !important;
  }
  .ms-md-n1 {
    margin-left: -0.25rem !important;
  }
  .p-md-20 {
    padding: 5rem !important;
  }
  .p-md-19 {
    padding: 4.75rem !important;
  }
  .p-md-18 {
    padding: 4.5rem !important;
  }
  .p-md-17 {
    padding: 4.25rem !important;
  }
  .p-md-16 {
    padding: 4rem !important;
  }
  .p-md-15 {
    padding: 3.75rem !important;
  }
  .p-md-14 {
    padding: 3.5rem !important;
  }
  .p-md-13 {
    padding: 3.25rem !important;
  }
  .p-md-12 {
    padding: 3rem !important;
  }
  .p-md-11 {
    padding: 2.75rem !important;
  }
  .p-md-10 {
    padding: 2.5rem !important;
  }
  .p-md-9 {
    padding: 2.25rem !important;
  }
  .p-md-8 {
    padding: 2rem !important;
  }
  .p-md-7 {
    padding: 1.75rem !important;
  }
  .p-md-6 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 1.25rem !important;
  }
  .p-md-4 {
    padding: 1rem !important;
  }
  .p-md-3 {
    padding: 0.75rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .px-md-20 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-md-19 {
    padding-right: 4.75rem !important;
    padding-left: 4.75rem !important;
  }
  .px-md-18 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  .px-md-17 {
    padding-right: 4.25rem !important;
    padding-left: 4.25rem !important;
  }
  .px-md-16 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-md-15 {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
  }
  .px-md-14 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-md-13 {
    padding-right: 3.25rem !important;
    padding-left: 3.25rem !important;
  }
  .px-md-12 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-md-11 {
    padding-right: 2.75rem !important;
    padding-left: 2.75rem !important;
  }
  .px-md-10 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-md-9 {
    padding-right: 2.25rem !important;
    padding-left: 2.25rem !important;
  }
  .px-md-8 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-md-7 {
    padding-right: 1.75rem !important;
    padding-left: 1.75rem !important;
  }
  .px-md-6 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .px-md-4 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-3 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .py-md-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-md-19 {
    padding-top: 4.75rem !important;
    padding-bottom: 4.75rem !important;
  }
  .py-md-18 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .py-md-17 {
    padding-top: 4.25rem !important;
    padding-bottom: 4.25rem !important;
  }
  .py-md-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-md-15 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
  .py-md-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-md-13 {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
  }
  .py-md-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-md-11 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }
  .py-md-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-md-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }
  .py-md-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-md-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }
  .py-md-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .py-md-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .pt-md-20 {
    padding-top: 5rem !important;
  }
  .pt-md-19 {
    padding-top: 4.75rem !important;
  }
  .pt-md-18 {
    padding-top: 4.5rem !important;
  }
  .pt-md-17 {
    padding-top: 4.25rem !important;
  }
  .pt-md-16 {
    padding-top: 4rem !important;
  }
  .pt-md-15 {
    padding-top: 3.75rem !important;
  }
  .pt-md-14 {
    padding-top: 3.5rem !important;
  }
  .pt-md-13 {
    padding-top: 3.25rem !important;
  }
  .pt-md-12 {
    padding-top: 3rem !important;
  }
  .pt-md-11 {
    padding-top: 2.75rem !important;
  }
  .pt-md-10 {
    padding-top: 2.5rem !important;
  }
  .pt-md-9 {
    padding-top: 2.25rem !important;
  }
  .pt-md-8 {
    padding-top: 2rem !important;
  }
  .pt-md-7 {
    padding-top: 1.75rem !important;
  }
  .pt-md-6 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 1.25rem !important;
  }
  .pt-md-4 {
    padding-top: 1rem !important;
  }
  .pt-md-3 {
    padding-top: 0.75rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pe-md-20 {
    padding-right: 5rem !important;
  }
  .pe-md-19 {
    padding-right: 4.75rem !important;
  }
  .pe-md-18 {
    padding-right: 4.5rem !important;
  }
  .pe-md-17 {
    padding-right: 4.25rem !important;
  }
  .pe-md-16 {
    padding-right: 4rem !important;
  }
  .pe-md-15 {
    padding-right: 3.75rem !important;
  }
  .pe-md-14 {
    padding-right: 3.5rem !important;
  }
  .pe-md-13 {
    padding-right: 3.25rem !important;
  }
  .pe-md-12 {
    padding-right: 3rem !important;
  }
  .pe-md-11 {
    padding-right: 2.75rem !important;
  }
  .pe-md-10 {
    padding-right: 2.5rem !important;
  }
  .pe-md-9 {
    padding-right: 2.25rem !important;
  }
  .pe-md-8 {
    padding-right: 2rem !important;
  }
  .pe-md-7 {
    padding-right: 1.75rem !important;
  }
  .pe-md-6 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 1.25rem !important;
  }
  .pe-md-4 {
    padding-right: 1rem !important;
  }
  .pe-md-3 {
    padding-right: 0.75rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-20 {
    padding-bottom: 5rem !important;
  }
  .pb-md-19 {
    padding-bottom: 4.75rem !important;
  }
  .pb-md-18 {
    padding-bottom: 4.5rem !important;
  }
  .pb-md-17 {
    padding-bottom: 4.25rem !important;
  }
  .pb-md-16 {
    padding-bottom: 4rem !important;
  }
  .pb-md-15 {
    padding-bottom: 3.75rem !important;
  }
  .pb-md-14 {
    padding-bottom: 3.5rem !important;
  }
  .pb-md-13 {
    padding-bottom: 3.25rem !important;
  }
  .pb-md-12 {
    padding-bottom: 3rem !important;
  }
  .pb-md-11 {
    padding-bottom: 2.75rem !important;
  }
  .pb-md-10 {
    padding-bottom: 2.5rem !important;
  }
  .pb-md-9 {
    padding-bottom: 2.25rem !important;
  }
  .pb-md-8 {
    padding-bottom: 2rem !important;
  }
  .pb-md-7 {
    padding-bottom: 1.75rem !important;
  }
  .pb-md-6 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 1.25rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1rem !important;
  }
  .pb-md-3 {
    padding-bottom: 0.75rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .ps-md-20 {
    padding-left: 5rem !important;
  }
  .ps-md-19 {
    padding-left: 4.75rem !important;
  }
  .ps-md-18 {
    padding-left: 4.5rem !important;
  }
  .ps-md-17 {
    padding-left: 4.25rem !important;
  }
  .ps-md-16 {
    padding-left: 4rem !important;
  }
  .ps-md-15 {
    padding-left: 3.75rem !important;
  }
  .ps-md-14 {
    padding-left: 3.5rem !important;
  }
  .ps-md-13 {
    padding-left: 3.25rem !important;
  }
  .ps-md-12 {
    padding-left: 3rem !important;
  }
  .ps-md-11 {
    padding-left: 2.75rem !important;
  }
  .ps-md-10 {
    padding-left: 2.5rem !important;
  }
  .ps-md-9 {
    padding-left: 2.25rem !important;
  }
  .ps-md-8 {
    padding-left: 2rem !important;
  }
  .ps-md-7 {
    padding-left: 1.75rem !important;
  }
  .ps-md-6 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 1.25rem !important;
  }
  .ps-md-4 {
    padding-left: 1rem !important;
  }
  .ps-md-3 {
    padding-left: 0.75rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
}
@media (min-width: 1025px) {
  .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-inline-grid {
    display: inline-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;
  }
  .lh-lg-24-11 {
    line-height: 2.1818181818 !important;
  }
  .lh-lg-24-13 {
    line-height: 1.8461538462 !important;
  }
  .lh-lg-28 {
    line-height: 1.8666666667 !important;
  }
  .lh-lg-30 {
    line-height: 1.875 !important;
  }
  .lh-lg-32 {
    line-height: 1.7777777778 !important;
  }
  .lh-lg-34 {
    line-height: 1.7 !important;
  }
  .lh-lg-36 {
    line-height: 1.6363636364 !important;
  }
  .lh-lg-38 {
    line-height: 1.5833333333 !important;
  }
  .lh-lg-42 {
    line-height: 1.5 !important;
  }
  .lh-lg-46 {
    line-height: 1.4375 !important;
  }
  .lh-lg-50 {
    line-height: 1.3888888889 !important;
  }
  .lh-lg-62 {
    line-height: 1.2916666667 !important;
  }
  .lh-lg-66 {
    line-height: 1.2692307692 !important;
  }
  .fs-lg-13 {
    font-size: 3.25rem !important;
  }
  .fs-lg-12 {
    font-size: 3rem !important;
  }
  .fs-lg-11 {
    font-size: 2.75rem !important;
  }
  .fs-lg-10 {
    font-size: 2.5rem !important;
  }
  .fs-lg-9 {
    font-size: 2.25rem !important;
  }
  .fs-lg-8 {
    font-size: 2rem !important;
  }
  .fs-lg-7 {
    font-size: 1.75rem !important;
  }
  .fs-lg-6 {
    font-size: 1.5rem !important;
  }
  .fs-lg-5 {
    font-size: 1.25rem !important;
  }
  .fs-lg-4 {
    font-size: 1rem !important;
  }
  .fs-lg-3 {
    font-size: 0.75rem !important;
  }
  .fs-lg-2 {
    font-size: 0.5rem !important;
  }
  .fs-lg-1 {
    font-size: 0.25rem !important;
  }
  .fs-lg-x11 {
    font-size: 0.6875rem !important;
  }
  .fs-lg-x13 {
    font-size: 0.8125rem !important;
  }
  .fs-lg-x15 {
    font-size: 0.9375rem !important;
  }
  .fs-lg-x18 {
    font-size: 1.125rem !important;
  }
  .fs-lg-x22 {
    font-size: 1.375rem !important;
  }
  .fw-lg-100 {
    font-weight: 100 !important;
  }
  .fw-lg-300 {
    font-weight: 300 !important;
  }
  .fw-lg-400 {
    font-weight: 400 !important;
  }
  .fw-lg-500 {
    font-weight: 500 !important;
  }
  .fw-lg-600 {
    font-weight: 600 !important;
  }
  .fw-lg-700 {
    font-weight: 700 !important;
  }
  .fw-lg-900 {
    font-weight: 900 !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !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-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !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;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .m-lg-20 {
    margin: 5rem !important;
  }
  .m-lg-19 {
    margin: 4.75rem !important;
  }
  .m-lg-18 {
    margin: 4.5rem !important;
  }
  .m-lg-17 {
    margin: 4.25rem !important;
  }
  .m-lg-16 {
    margin: 4rem !important;
  }
  .m-lg-15 {
    margin: 3.75rem !important;
  }
  .m-lg-14 {
    margin: 3.5rem !important;
  }
  .m-lg-13 {
    margin: 3.25rem !important;
  }
  .m-lg-12 {
    margin: 3rem !important;
  }
  .m-lg-11 {
    margin: 2.75rem !important;
  }
  .m-lg-10 {
    margin: 2.5rem !important;
  }
  .m-lg-9 {
    margin: 2.25rem !important;
  }
  .m-lg-8 {
    margin: 2rem !important;
  }
  .m-lg-7 {
    margin: 1.75rem !important;
  }
  .m-lg-6 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 1.25rem !important;
  }
  .m-lg-4 {
    margin: 1rem !important;
  }
  .m-lg-3 {
    margin: 0.75rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-20 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-lg-19 {
    margin-right: 4.75rem !important;
    margin-left: 4.75rem !important;
  }
  .mx-lg-18 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  .mx-lg-17 {
    margin-right: 4.25rem !important;
    margin-left: 4.25rem !important;
  }
  .mx-lg-16 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-lg-15 {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }
  .mx-lg-14 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-lg-13 {
    margin-right: 3.25rem !important;
    margin-left: 3.25rem !important;
  }
  .mx-lg-12 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-11 {
    margin-right: 2.75rem !important;
    margin-left: 2.75rem !important;
  }
  .mx-lg-10 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-lg-9 {
    margin-right: 2.25rem !important;
    margin-left: 2.25rem !important;
  }
  .mx-lg-8 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-lg-7 {
    margin-right: 1.75rem !important;
    margin-left: 1.75rem !important;
  }
  .mx-lg-6 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .mx-lg-4 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-3 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-lg-19 {
    margin-top: 4.75rem !important;
    margin-bottom: 4.75rem !important;
  }
  .my-lg-18 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .my-lg-17 {
    margin-top: 4.25rem !important;
    margin-bottom: 4.25rem !important;
  }
  .my-lg-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-lg-15 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
  .my-lg-14 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-lg-13 {
    margin-top: 3.25rem !important;
    margin-bottom: 3.25rem !important;
  }
  .my-lg-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-11 {
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }
  .my-lg-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-lg-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }
  .my-lg-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-lg-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }
  .my-lg-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .my-lg-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-20 {
    margin-top: 5rem !important;
  }
  .mt-lg-19 {
    margin-top: 4.75rem !important;
  }
  .mt-lg-18 {
    margin-top: 4.5rem !important;
  }
  .mt-lg-17 {
    margin-top: 4.25rem !important;
  }
  .mt-lg-16 {
    margin-top: 4rem !important;
  }
  .mt-lg-15 {
    margin-top: 3.75rem !important;
  }
  .mt-lg-14 {
    margin-top: 3.5rem !important;
  }
  .mt-lg-13 {
    margin-top: 3.25rem !important;
  }
  .mt-lg-12 {
    margin-top: 3rem !important;
  }
  .mt-lg-11 {
    margin-top: 2.75rem !important;
  }
  .mt-lg-10 {
    margin-top: 2.5rem !important;
  }
  .mt-lg-9 {
    margin-top: 2.25rem !important;
  }
  .mt-lg-8 {
    margin-top: 2rem !important;
  }
  .mt-lg-7 {
    margin-top: 1.75rem !important;
  }
  .mt-lg-6 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 1.25rem !important;
  }
  .mt-lg-4 {
    margin-top: 1rem !important;
  }
  .mt-lg-3 {
    margin-top: 0.75rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-20 {
    margin-right: 5rem !important;
  }
  .me-lg-19 {
    margin-right: 4.75rem !important;
  }
  .me-lg-18 {
    margin-right: 4.5rem !important;
  }
  .me-lg-17 {
    margin-right: 4.25rem !important;
  }
  .me-lg-16 {
    margin-right: 4rem !important;
  }
  .me-lg-15 {
    margin-right: 3.75rem !important;
  }
  .me-lg-14 {
    margin-right: 3.5rem !important;
  }
  .me-lg-13 {
    margin-right: 3.25rem !important;
  }
  .me-lg-12 {
    margin-right: 3rem !important;
  }
  .me-lg-11 {
    margin-right: 2.75rem !important;
  }
  .me-lg-10 {
    margin-right: 2.5rem !important;
  }
  .me-lg-9 {
    margin-right: 2.25rem !important;
  }
  .me-lg-8 {
    margin-right: 2rem !important;
  }
  .me-lg-7 {
    margin-right: 1.75rem !important;
  }
  .me-lg-6 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 1.25rem !important;
  }
  .me-lg-4 {
    margin-right: 1rem !important;
  }
  .me-lg-3 {
    margin-right: 0.75rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-20 {
    margin-bottom: 5rem !important;
  }
  .mb-lg-19 {
    margin-bottom: 4.75rem !important;
  }
  .mb-lg-18 {
    margin-bottom: 4.5rem !important;
  }
  .mb-lg-17 {
    margin-bottom: 4.25rem !important;
  }
  .mb-lg-16 {
    margin-bottom: 4rem !important;
  }
  .mb-lg-15 {
    margin-bottom: 3.75rem !important;
  }
  .mb-lg-14 {
    margin-bottom: 3.5rem !important;
  }
  .mb-lg-13 {
    margin-bottom: 3.25rem !important;
  }
  .mb-lg-12 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-11 {
    margin-bottom: 2.75rem !important;
  }
  .mb-lg-10 {
    margin-bottom: 2.5rem !important;
  }
  .mb-lg-9 {
    margin-bottom: 2.25rem !important;
  }
  .mb-lg-8 {
    margin-bottom: 2rem !important;
  }
  .mb-lg-7 {
    margin-bottom: 1.75rem !important;
  }
  .mb-lg-6 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 1.25rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 0.75rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-20 {
    margin-left: 5rem !important;
  }
  .ms-lg-19 {
    margin-left: 4.75rem !important;
  }
  .ms-lg-18 {
    margin-left: 4.5rem !important;
  }
  .ms-lg-17 {
    margin-left: 4.25rem !important;
  }
  .ms-lg-16 {
    margin-left: 4rem !important;
  }
  .ms-lg-15 {
    margin-left: 3.75rem !important;
  }
  .ms-lg-14 {
    margin-left: 3.5rem !important;
  }
  .ms-lg-13 {
    margin-left: 3.25rem !important;
  }
  .ms-lg-12 {
    margin-left: 3rem !important;
  }
  .ms-lg-11 {
    margin-left: 2.75rem !important;
  }
  .ms-lg-10 {
    margin-left: 2.5rem !important;
  }
  .ms-lg-9 {
    margin-left: 2.25rem !important;
  }
  .ms-lg-8 {
    margin-left: 2rem !important;
  }
  .ms-lg-7 {
    margin-left: 1.75rem !important;
  }
  .ms-lg-6 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 1.25rem !important;
  }
  .ms-lg-4 {
    margin-left: 1rem !important;
  }
  .ms-lg-3 {
    margin-left: 0.75rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .m-lg-n20 {
    margin: -5rem !important;
  }
  .m-lg-n19 {
    margin: -4.75rem !important;
  }
  .m-lg-n18 {
    margin: -4.5rem !important;
  }
  .m-lg-n17 {
    margin: -4.25rem !important;
  }
  .m-lg-n16 {
    margin: -4rem !important;
  }
  .m-lg-n15 {
    margin: -3.75rem !important;
  }
  .m-lg-n14 {
    margin: -3.5rem !important;
  }
  .m-lg-n13 {
    margin: -3.25rem !important;
  }
  .m-lg-n12 {
    margin: -3rem !important;
  }
  .m-lg-n11 {
    margin: -2.75rem !important;
  }
  .m-lg-n10 {
    margin: -2.5rem !important;
  }
  .m-lg-n9 {
    margin: -2.25rem !important;
  }
  .m-lg-n8 {
    margin: -2rem !important;
  }
  .m-lg-n7 {
    margin: -1.75rem !important;
  }
  .m-lg-n6 {
    margin: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -1.25rem !important;
  }
  .m-lg-n4 {
    margin: -1rem !important;
  }
  .m-lg-n3 {
    margin: -0.75rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .mx-lg-n20 {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }
  .mx-lg-n19 {
    margin-right: -4.75rem !important;
    margin-left: -4.75rem !important;
  }
  .mx-lg-n18 {
    margin-right: -4.5rem !important;
    margin-left: -4.5rem !important;
  }
  .mx-lg-n17 {
    margin-right: -4.25rem !important;
    margin-left: -4.25rem !important;
  }
  .mx-lg-n16 {
    margin-right: -4rem !important;
    margin-left: -4rem !important;
  }
  .mx-lg-n15 {
    margin-right: -3.75rem !important;
    margin-left: -3.75rem !important;
  }
  .mx-lg-n14 {
    margin-right: -3.5rem !important;
    margin-left: -3.5rem !important;
  }
  .mx-lg-n13 {
    margin-right: -3.25rem !important;
    margin-left: -3.25rem !important;
  }
  .mx-lg-n12 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .mx-lg-n11 {
    margin-right: -2.75rem !important;
    margin-left: -2.75rem !important;
  }
  .mx-lg-n10 {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }
  .mx-lg-n9 {
    margin-right: -2.25rem !important;
    margin-left: -2.25rem !important;
  }
  .mx-lg-n8 {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }
  .mx-lg-n7 {
    margin-right: -1.75rem !important;
    margin-left: -1.75rem !important;
  }
  .mx-lg-n6 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-lg-n5 {
    margin-right: -1.25rem !important;
    margin-left: -1.25rem !important;
  }
  .mx-lg-n4 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-lg-n3 {
    margin-right: -0.75rem !important;
    margin-left: -0.75rem !important;
  }
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .my-lg-n20 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .my-lg-n19 {
    margin-top: -4.75rem !important;
    margin-bottom: -4.75rem !important;
  }
  .my-lg-n18 {
    margin-top: -4.5rem !important;
    margin-bottom: -4.5rem !important;
  }
  .my-lg-n17 {
    margin-top: -4.25rem !important;
    margin-bottom: -4.25rem !important;
  }
  .my-lg-n16 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .my-lg-n15 {
    margin-top: -3.75rem !important;
    margin-bottom: -3.75rem !important;
  }
  .my-lg-n14 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }
  .my-lg-n13 {
    margin-top: -3.25rem !important;
    margin-bottom: -3.25rem !important;
  }
  .my-lg-n12 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .my-lg-n11 {
    margin-top: -2.75rem !important;
    margin-bottom: -2.75rem !important;
  }
  .my-lg-n10 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .my-lg-n9 {
    margin-top: -2.25rem !important;
    margin-bottom: -2.25rem !important;
  }
  .my-lg-n8 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .my-lg-n7 {
    margin-top: -1.75rem !important;
    margin-bottom: -1.75rem !important;
  }
  .my-lg-n6 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-lg-n5 {
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }
  .my-lg-n4 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-lg-n3 {
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }
  .my-lg-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-lg-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .mt-lg-n20 {
    margin-top: -5rem !important;
  }
  .mt-lg-n19 {
    margin-top: -4.75rem !important;
  }
  .mt-lg-n18 {
    margin-top: -4.5rem !important;
  }
  .mt-lg-n17 {
    margin-top: -4.25rem !important;
  }
  .mt-lg-n16 {
    margin-top: -4rem !important;
  }
  .mt-lg-n15 {
    margin-top: -3.75rem !important;
  }
  .mt-lg-n14 {
    margin-top: -3.5rem !important;
  }
  .mt-lg-n13 {
    margin-top: -3.25rem !important;
  }
  .mt-lg-n12 {
    margin-top: -3rem !important;
  }
  .mt-lg-n11 {
    margin-top: -2.75rem !important;
  }
  .mt-lg-n10 {
    margin-top: -2.5rem !important;
  }
  .mt-lg-n9 {
    margin-top: -2.25rem !important;
  }
  .mt-lg-n8 {
    margin-top: -2rem !important;
  }
  .mt-lg-n7 {
    margin-top: -1.75rem !important;
  }
  .mt-lg-n6 {
    margin-top: -1.5rem !important;
  }
  .mt-lg-n5 {
    margin-top: -1.25rem !important;
  }
  .mt-lg-n4 {
    margin-top: -1rem !important;
  }
  .mt-lg-n3 {
    margin-top: -0.75rem !important;
  }
  .mt-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .me-lg-n20 {
    margin-right: -5rem !important;
  }
  .me-lg-n19 {
    margin-right: -4.75rem !important;
  }
  .me-lg-n18 {
    margin-right: -4.5rem !important;
  }
  .me-lg-n17 {
    margin-right: -4.25rem !important;
  }
  .me-lg-n16 {
    margin-right: -4rem !important;
  }
  .me-lg-n15 {
    margin-right: -3.75rem !important;
  }
  .me-lg-n14 {
    margin-right: -3.5rem !important;
  }
  .me-lg-n13 {
    margin-right: -3.25rem !important;
  }
  .me-lg-n12 {
    margin-right: -3rem !important;
  }
  .me-lg-n11 {
    margin-right: -2.75rem !important;
  }
  .me-lg-n10 {
    margin-right: -2.5rem !important;
  }
  .me-lg-n9 {
    margin-right: -2.25rem !important;
  }
  .me-lg-n8 {
    margin-right: -2rem !important;
  }
  .me-lg-n7 {
    margin-right: -1.75rem !important;
  }
  .me-lg-n6 {
    margin-right: -1.5rem !important;
  }
  .me-lg-n5 {
    margin-right: -1.25rem !important;
  }
  .me-lg-n4 {
    margin-right: -1rem !important;
  }
  .me-lg-n3 {
    margin-right: -0.75rem !important;
  }
  .me-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .me-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n20 {
    margin-bottom: -5rem !important;
  }
  .mb-lg-n19 {
    margin-bottom: -4.75rem !important;
  }
  .mb-lg-n18 {
    margin-bottom: -4.5rem !important;
  }
  .mb-lg-n17 {
    margin-bottom: -4.25rem !important;
  }
  .mb-lg-n16 {
    margin-bottom: -4rem !important;
  }
  .mb-lg-n15 {
    margin-bottom: -3.75rem !important;
  }
  .mb-lg-n14 {
    margin-bottom: -3.5rem !important;
  }
  .mb-lg-n13 {
    margin-bottom: -3.25rem !important;
  }
  .mb-lg-n12 {
    margin-bottom: -3rem !important;
  }
  .mb-lg-n11 {
    margin-bottom: -2.75rem !important;
  }
  .mb-lg-n10 {
    margin-bottom: -2.5rem !important;
  }
  .mb-lg-n9 {
    margin-bottom: -2.25rem !important;
  }
  .mb-lg-n8 {
    margin-bottom: -2rem !important;
  }
  .mb-lg-n7 {
    margin-bottom: -1.75rem !important;
  }
  .mb-lg-n6 {
    margin-bottom: -1.5rem !important;
  }
  .mb-lg-n5 {
    margin-bottom: -1.25rem !important;
  }
  .mb-lg-n4 {
    margin-bottom: -1rem !important;
  }
  .mb-lg-n3 {
    margin-bottom: -0.75rem !important;
  }
  .mb-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ms-lg-n20 {
    margin-left: -5rem !important;
  }
  .ms-lg-n19 {
    margin-left: -4.75rem !important;
  }
  .ms-lg-n18 {
    margin-left: -4.5rem !important;
  }
  .ms-lg-n17 {
    margin-left: -4.25rem !important;
  }
  .ms-lg-n16 {
    margin-left: -4rem !important;
  }
  .ms-lg-n15 {
    margin-left: -3.75rem !important;
  }
  .ms-lg-n14 {
    margin-left: -3.5rem !important;
  }
  .ms-lg-n13 {
    margin-left: -3.25rem !important;
  }
  .ms-lg-n12 {
    margin-left: -3rem !important;
  }
  .ms-lg-n11 {
    margin-left: -2.75rem !important;
  }
  .ms-lg-n10 {
    margin-left: -2.5rem !important;
  }
  .ms-lg-n9 {
    margin-left: -2.25rem !important;
  }
  .ms-lg-n8 {
    margin-left: -2rem !important;
  }
  .ms-lg-n7 {
    margin-left: -1.75rem !important;
  }
  .ms-lg-n6 {
    margin-left: -1.5rem !important;
  }
  .ms-lg-n5 {
    margin-left: -1.25rem !important;
  }
  .ms-lg-n4 {
    margin-left: -1rem !important;
  }
  .ms-lg-n3 {
    margin-left: -0.75rem !important;
  }
  .ms-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .ms-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .p-lg-20 {
    padding: 5rem !important;
  }
  .p-lg-19 {
    padding: 4.75rem !important;
  }
  .p-lg-18 {
    padding: 4.5rem !important;
  }
  .p-lg-17 {
    padding: 4.25rem !important;
  }
  .p-lg-16 {
    padding: 4rem !important;
  }
  .p-lg-15 {
    padding: 3.75rem !important;
  }
  .p-lg-14 {
    padding: 3.5rem !important;
  }
  .p-lg-13 {
    padding: 3.25rem !important;
  }
  .p-lg-12 {
    padding: 3rem !important;
  }
  .p-lg-11 {
    padding: 2.75rem !important;
  }
  .p-lg-10 {
    padding: 2.5rem !important;
  }
  .p-lg-9 {
    padding: 2.25rem !important;
  }
  .p-lg-8 {
    padding: 2rem !important;
  }
  .p-lg-7 {
    padding: 1.75rem !important;
  }
  .p-lg-6 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 1.25rem !important;
  }
  .p-lg-4 {
    padding: 1rem !important;
  }
  .p-lg-3 {
    padding: 0.75rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .px-lg-20 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-lg-19 {
    padding-right: 4.75rem !important;
    padding-left: 4.75rem !important;
  }
  .px-lg-18 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  .px-lg-17 {
    padding-right: 4.25rem !important;
    padding-left: 4.25rem !important;
  }
  .px-lg-16 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-lg-15 {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
  }
  .px-lg-14 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-lg-13 {
    padding-right: 3.25rem !important;
    padding-left: 3.25rem !important;
  }
  .px-lg-12 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-lg-11 {
    padding-right: 2.75rem !important;
    padding-left: 2.75rem !important;
  }
  .px-lg-10 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-lg-9 {
    padding-right: 2.25rem !important;
    padding-left: 2.25rem !important;
  }
  .px-lg-8 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-lg-7 {
    padding-right: 1.75rem !important;
    padding-left: 1.75rem !important;
  }
  .px-lg-6 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .px-lg-4 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-3 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .py-lg-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-lg-19 {
    padding-top: 4.75rem !important;
    padding-bottom: 4.75rem !important;
  }
  .py-lg-18 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .py-lg-17 {
    padding-top: 4.25rem !important;
    padding-bottom: 4.25rem !important;
  }
  .py-lg-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-lg-15 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
  .py-lg-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-lg-13 {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
  }
  .py-lg-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-lg-11 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }
  .py-lg-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-lg-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }
  .py-lg-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-lg-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }
  .py-lg-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .py-lg-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .pt-lg-20 {
    padding-top: 5rem !important;
  }
  .pt-lg-19 {
    padding-top: 4.75rem !important;
  }
  .pt-lg-18 {
    padding-top: 4.5rem !important;
  }
  .pt-lg-17 {
    padding-top: 4.25rem !important;
  }
  .pt-lg-16 {
    padding-top: 4rem !important;
  }
  .pt-lg-15 {
    padding-top: 3.75rem !important;
  }
  .pt-lg-14 {
    padding-top: 3.5rem !important;
  }
  .pt-lg-13 {
    padding-top: 3.25rem !important;
  }
  .pt-lg-12 {
    padding-top: 3rem !important;
  }
  .pt-lg-11 {
    padding-top: 2.75rem !important;
  }
  .pt-lg-10 {
    padding-top: 2.5rem !important;
  }
  .pt-lg-9 {
    padding-top: 2.25rem !important;
  }
  .pt-lg-8 {
    padding-top: 2rem !important;
  }
  .pt-lg-7 {
    padding-top: 1.75rem !important;
  }
  .pt-lg-6 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 1.25rem !important;
  }
  .pt-lg-4 {
    padding-top: 1rem !important;
  }
  .pt-lg-3 {
    padding-top: 0.75rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pe-lg-20 {
    padding-right: 5rem !important;
  }
  .pe-lg-19 {
    padding-right: 4.75rem !important;
  }
  .pe-lg-18 {
    padding-right: 4.5rem !important;
  }
  .pe-lg-17 {
    padding-right: 4.25rem !important;
  }
  .pe-lg-16 {
    padding-right: 4rem !important;
  }
  .pe-lg-15 {
    padding-right: 3.75rem !important;
  }
  .pe-lg-14 {
    padding-right: 3.5rem !important;
  }
  .pe-lg-13 {
    padding-right: 3.25rem !important;
  }
  .pe-lg-12 {
    padding-right: 3rem !important;
  }
  .pe-lg-11 {
    padding-right: 2.75rem !important;
  }
  .pe-lg-10 {
    padding-right: 2.5rem !important;
  }
  .pe-lg-9 {
    padding-right: 2.25rem !important;
  }
  .pe-lg-8 {
    padding-right: 2rem !important;
  }
  .pe-lg-7 {
    padding-right: 1.75rem !important;
  }
  .pe-lg-6 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 1.25rem !important;
  }
  .pe-lg-4 {
    padding-right: 1rem !important;
  }
  .pe-lg-3 {
    padding-right: 0.75rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-20 {
    padding-bottom: 5rem !important;
  }
  .pb-lg-19 {
    padding-bottom: 4.75rem !important;
  }
  .pb-lg-18 {
    padding-bottom: 4.5rem !important;
  }
  .pb-lg-17 {
    padding-bottom: 4.25rem !important;
  }
  .pb-lg-16 {
    padding-bottom: 4rem !important;
  }
  .pb-lg-15 {
    padding-bottom: 3.75rem !important;
  }
  .pb-lg-14 {
    padding-bottom: 3.5rem !important;
  }
  .pb-lg-13 {
    padding-bottom: 3.25rem !important;
  }
  .pb-lg-12 {
    padding-bottom: 3rem !important;
  }
  .pb-lg-11 {
    padding-bottom: 2.75rem !important;
  }
  .pb-lg-10 {
    padding-bottom: 2.5rem !important;
  }
  .pb-lg-9 {
    padding-bottom: 2.25rem !important;
  }
  .pb-lg-8 {
    padding-bottom: 2rem !important;
  }
  .pb-lg-7 {
    padding-bottom: 1.75rem !important;
  }
  .pb-lg-6 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 1.25rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 0.75rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .ps-lg-20 {
    padding-left: 5rem !important;
  }
  .ps-lg-19 {
    padding-left: 4.75rem !important;
  }
  .ps-lg-18 {
    padding-left: 4.5rem !important;
  }
  .ps-lg-17 {
    padding-left: 4.25rem !important;
  }
  .ps-lg-16 {
    padding-left: 4rem !important;
  }
  .ps-lg-15 {
    padding-left: 3.75rem !important;
  }
  .ps-lg-14 {
    padding-left: 3.5rem !important;
  }
  .ps-lg-13 {
    padding-left: 3.25rem !important;
  }
  .ps-lg-12 {
    padding-left: 3rem !important;
  }
  .ps-lg-11 {
    padding-left: 2.75rem !important;
  }
  .ps-lg-10 {
    padding-left: 2.5rem !important;
  }
  .ps-lg-9 {
    padding-left: 2.25rem !important;
  }
  .ps-lg-8 {
    padding-left: 2rem !important;
  }
  .ps-lg-7 {
    padding-left: 1.75rem !important;
  }
  .ps-lg-6 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 1.25rem !important;
  }
  .ps-lg-4 {
    padding-left: 1rem !important;
  }
  .ps-lg-3 {
    padding-left: 0.75rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
}
@media (min-width: 1440px) {
  .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-inline-grid {
    display: inline-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;
  }
  .lh-xl-24-11 {
    line-height: 2.1818181818 !important;
  }
  .lh-xl-24-13 {
    line-height: 1.8461538462 !important;
  }
  .lh-xl-28 {
    line-height: 1.8666666667 !important;
  }
  .lh-xl-30 {
    line-height: 1.875 !important;
  }
  .lh-xl-32 {
    line-height: 1.7777777778 !important;
  }
  .lh-xl-34 {
    line-height: 1.7 !important;
  }
  .lh-xl-36 {
    line-height: 1.6363636364 !important;
  }
  .lh-xl-38 {
    line-height: 1.5833333333 !important;
  }
  .lh-xl-42 {
    line-height: 1.5 !important;
  }
  .lh-xl-46 {
    line-height: 1.4375 !important;
  }
  .lh-xl-50 {
    line-height: 1.3888888889 !important;
  }
  .lh-xl-62 {
    line-height: 1.2916666667 !important;
  }
  .lh-xl-66 {
    line-height: 1.2692307692 !important;
  }
  .fs-xl-13 {
    font-size: 3.25rem !important;
  }
  .fs-xl-12 {
    font-size: 3rem !important;
  }
  .fs-xl-11 {
    font-size: 2.75rem !important;
  }
  .fs-xl-10 {
    font-size: 2.5rem !important;
  }
  .fs-xl-9 {
    font-size: 2.25rem !important;
  }
  .fs-xl-8 {
    font-size: 2rem !important;
  }
  .fs-xl-7 {
    font-size: 1.75rem !important;
  }
  .fs-xl-6 {
    font-size: 1.5rem !important;
  }
  .fs-xl-5 {
    font-size: 1.25rem !important;
  }
  .fs-xl-4 {
    font-size: 1rem !important;
  }
  .fs-xl-3 {
    font-size: 0.75rem !important;
  }
  .fs-xl-2 {
    font-size: 0.5rem !important;
  }
  .fs-xl-1 {
    font-size: 0.25rem !important;
  }
  .fs-xl-x11 {
    font-size: 0.6875rem !important;
  }
  .fs-xl-x13 {
    font-size: 0.8125rem !important;
  }
  .fs-xl-x15 {
    font-size: 0.9375rem !important;
  }
  .fs-xl-x18 {
    font-size: 1.125rem !important;
  }
  .fs-xl-x22 {
    font-size: 1.375rem !important;
  }
  .fw-xl-100 {
    font-weight: 100 !important;
  }
  .fw-xl-300 {
    font-weight: 300 !important;
  }
  .fw-xl-400 {
    font-weight: 400 !important;
  }
  .fw-xl-500 {
    font-weight: 500 !important;
  }
  .fw-xl-600 {
    font-weight: 600 !important;
  }
  .fw-xl-700 {
    font-weight: 700 !important;
  }
  .fw-xl-900 {
    font-weight: 900 !important;
  }
  .text-xl-start {
    text-align: left !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !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-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !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;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .m-xl-20 {
    margin: 5rem !important;
  }
  .m-xl-19 {
    margin: 4.75rem !important;
  }
  .m-xl-18 {
    margin: 4.5rem !important;
  }
  .m-xl-17 {
    margin: 4.25rem !important;
  }
  .m-xl-16 {
    margin: 4rem !important;
  }
  .m-xl-15 {
    margin: 3.75rem !important;
  }
  .m-xl-14 {
    margin: 3.5rem !important;
  }
  .m-xl-13 {
    margin: 3.25rem !important;
  }
  .m-xl-12 {
    margin: 3rem !important;
  }
  .m-xl-11 {
    margin: 2.75rem !important;
  }
  .m-xl-10 {
    margin: 2.5rem !important;
  }
  .m-xl-9 {
    margin: 2.25rem !important;
  }
  .m-xl-8 {
    margin: 2rem !important;
  }
  .m-xl-7 {
    margin: 1.75rem !important;
  }
  .m-xl-6 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 1.25rem !important;
  }
  .m-xl-4 {
    margin: 1rem !important;
  }
  .m-xl-3 {
    margin: 0.75rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-20 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-xl-19 {
    margin-right: 4.75rem !important;
    margin-left: 4.75rem !important;
  }
  .mx-xl-18 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  .mx-xl-17 {
    margin-right: 4.25rem !important;
    margin-left: 4.25rem !important;
  }
  .mx-xl-16 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-xl-15 {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }
  .mx-xl-14 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-xl-13 {
    margin-right: 3.25rem !important;
    margin-left: 3.25rem !important;
  }
  .mx-xl-12 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-11 {
    margin-right: 2.75rem !important;
    margin-left: 2.75rem !important;
  }
  .mx-xl-10 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-xl-9 {
    margin-right: 2.25rem !important;
    margin-left: 2.25rem !important;
  }
  .mx-xl-8 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-xl-7 {
    margin-right: 1.75rem !important;
    margin-left: 1.75rem !important;
  }
  .mx-xl-6 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .mx-xl-4 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-3 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-xl-19 {
    margin-top: 4.75rem !important;
    margin-bottom: 4.75rem !important;
  }
  .my-xl-18 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .my-xl-17 {
    margin-top: 4.25rem !important;
    margin-bottom: 4.25rem !important;
  }
  .my-xl-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-xl-15 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
  .my-xl-14 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-xl-13 {
    margin-top: 3.25rem !important;
    margin-bottom: 3.25rem !important;
  }
  .my-xl-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-11 {
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }
  .my-xl-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-xl-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }
  .my-xl-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xl-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }
  .my-xl-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .my-xl-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-20 {
    margin-top: 5rem !important;
  }
  .mt-xl-19 {
    margin-top: 4.75rem !important;
  }
  .mt-xl-18 {
    margin-top: 4.5rem !important;
  }
  .mt-xl-17 {
    margin-top: 4.25rem !important;
  }
  .mt-xl-16 {
    margin-top: 4rem !important;
  }
  .mt-xl-15 {
    margin-top: 3.75rem !important;
  }
  .mt-xl-14 {
    margin-top: 3.5rem !important;
  }
  .mt-xl-13 {
    margin-top: 3.25rem !important;
  }
  .mt-xl-12 {
    margin-top: 3rem !important;
  }
  .mt-xl-11 {
    margin-top: 2.75rem !important;
  }
  .mt-xl-10 {
    margin-top: 2.5rem !important;
  }
  .mt-xl-9 {
    margin-top: 2.25rem !important;
  }
  .mt-xl-8 {
    margin-top: 2rem !important;
  }
  .mt-xl-7 {
    margin-top: 1.75rem !important;
  }
  .mt-xl-6 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 1.25rem !important;
  }
  .mt-xl-4 {
    margin-top: 1rem !important;
  }
  .mt-xl-3 {
    margin-top: 0.75rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-20 {
    margin-right: 5rem !important;
  }
  .me-xl-19 {
    margin-right: 4.75rem !important;
  }
  .me-xl-18 {
    margin-right: 4.5rem !important;
  }
  .me-xl-17 {
    margin-right: 4.25rem !important;
  }
  .me-xl-16 {
    margin-right: 4rem !important;
  }
  .me-xl-15 {
    margin-right: 3.75rem !important;
  }
  .me-xl-14 {
    margin-right: 3.5rem !important;
  }
  .me-xl-13 {
    margin-right: 3.25rem !important;
  }
  .me-xl-12 {
    margin-right: 3rem !important;
  }
  .me-xl-11 {
    margin-right: 2.75rem !important;
  }
  .me-xl-10 {
    margin-right: 2.5rem !important;
  }
  .me-xl-9 {
    margin-right: 2.25rem !important;
  }
  .me-xl-8 {
    margin-right: 2rem !important;
  }
  .me-xl-7 {
    margin-right: 1.75rem !important;
  }
  .me-xl-6 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 1.25rem !important;
  }
  .me-xl-4 {
    margin-right: 1rem !important;
  }
  .me-xl-3 {
    margin-right: 0.75rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-20 {
    margin-bottom: 5rem !important;
  }
  .mb-xl-19 {
    margin-bottom: 4.75rem !important;
  }
  .mb-xl-18 {
    margin-bottom: 4.5rem !important;
  }
  .mb-xl-17 {
    margin-bottom: 4.25rem !important;
  }
  .mb-xl-16 {
    margin-bottom: 4rem !important;
  }
  .mb-xl-15 {
    margin-bottom: 3.75rem !important;
  }
  .mb-xl-14 {
    margin-bottom: 3.5rem !important;
  }
  .mb-xl-13 {
    margin-bottom: 3.25rem !important;
  }
  .mb-xl-12 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-11 {
    margin-bottom: 2.75rem !important;
  }
  .mb-xl-10 {
    margin-bottom: 2.5rem !important;
  }
  .mb-xl-9 {
    margin-bottom: 2.25rem !important;
  }
  .mb-xl-8 {
    margin-bottom: 2rem !important;
  }
  .mb-xl-7 {
    margin-bottom: 1.75rem !important;
  }
  .mb-xl-6 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 1.25rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 0.75rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-20 {
    margin-left: 5rem !important;
  }
  .ms-xl-19 {
    margin-left: 4.75rem !important;
  }
  .ms-xl-18 {
    margin-left: 4.5rem !important;
  }
  .ms-xl-17 {
    margin-left: 4.25rem !important;
  }
  .ms-xl-16 {
    margin-left: 4rem !important;
  }
  .ms-xl-15 {
    margin-left: 3.75rem !important;
  }
  .ms-xl-14 {
    margin-left: 3.5rem !important;
  }
  .ms-xl-13 {
    margin-left: 3.25rem !important;
  }
  .ms-xl-12 {
    margin-left: 3rem !important;
  }
  .ms-xl-11 {
    margin-left: 2.75rem !important;
  }
  .ms-xl-10 {
    margin-left: 2.5rem !important;
  }
  .ms-xl-9 {
    margin-left: 2.25rem !important;
  }
  .ms-xl-8 {
    margin-left: 2rem !important;
  }
  .ms-xl-7 {
    margin-left: 1.75rem !important;
  }
  .ms-xl-6 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 1.25rem !important;
  }
  .ms-xl-4 {
    margin-left: 1rem !important;
  }
  .ms-xl-3 {
    margin-left: 0.75rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .m-xl-n20 {
    margin: -5rem !important;
  }
  .m-xl-n19 {
    margin: -4.75rem !important;
  }
  .m-xl-n18 {
    margin: -4.5rem !important;
  }
  .m-xl-n17 {
    margin: -4.25rem !important;
  }
  .m-xl-n16 {
    margin: -4rem !important;
  }
  .m-xl-n15 {
    margin: -3.75rem !important;
  }
  .m-xl-n14 {
    margin: -3.5rem !important;
  }
  .m-xl-n13 {
    margin: -3.25rem !important;
  }
  .m-xl-n12 {
    margin: -3rem !important;
  }
  .m-xl-n11 {
    margin: -2.75rem !important;
  }
  .m-xl-n10 {
    margin: -2.5rem !important;
  }
  .m-xl-n9 {
    margin: -2.25rem !important;
  }
  .m-xl-n8 {
    margin: -2rem !important;
  }
  .m-xl-n7 {
    margin: -1.75rem !important;
  }
  .m-xl-n6 {
    margin: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -1.25rem !important;
  }
  .m-xl-n4 {
    margin: -1rem !important;
  }
  .m-xl-n3 {
    margin: -0.75rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .mx-xl-n20 {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }
  .mx-xl-n19 {
    margin-right: -4.75rem !important;
    margin-left: -4.75rem !important;
  }
  .mx-xl-n18 {
    margin-right: -4.5rem !important;
    margin-left: -4.5rem !important;
  }
  .mx-xl-n17 {
    margin-right: -4.25rem !important;
    margin-left: -4.25rem !important;
  }
  .mx-xl-n16 {
    margin-right: -4rem !important;
    margin-left: -4rem !important;
  }
  .mx-xl-n15 {
    margin-right: -3.75rem !important;
    margin-left: -3.75rem !important;
  }
  .mx-xl-n14 {
    margin-right: -3.5rem !important;
    margin-left: -3.5rem !important;
  }
  .mx-xl-n13 {
    margin-right: -3.25rem !important;
    margin-left: -3.25rem !important;
  }
  .mx-xl-n12 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .mx-xl-n11 {
    margin-right: -2.75rem !important;
    margin-left: -2.75rem !important;
  }
  .mx-xl-n10 {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }
  .mx-xl-n9 {
    margin-right: -2.25rem !important;
    margin-left: -2.25rem !important;
  }
  .mx-xl-n8 {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }
  .mx-xl-n7 {
    margin-right: -1.75rem !important;
    margin-left: -1.75rem !important;
  }
  .mx-xl-n6 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-xl-n5 {
    margin-right: -1.25rem !important;
    margin-left: -1.25rem !important;
  }
  .mx-xl-n4 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-xl-n3 {
    margin-right: -0.75rem !important;
    margin-left: -0.75rem !important;
  }
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .my-xl-n20 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .my-xl-n19 {
    margin-top: -4.75rem !important;
    margin-bottom: -4.75rem !important;
  }
  .my-xl-n18 {
    margin-top: -4.5rem !important;
    margin-bottom: -4.5rem !important;
  }
  .my-xl-n17 {
    margin-top: -4.25rem !important;
    margin-bottom: -4.25rem !important;
  }
  .my-xl-n16 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .my-xl-n15 {
    margin-top: -3.75rem !important;
    margin-bottom: -3.75rem !important;
  }
  .my-xl-n14 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }
  .my-xl-n13 {
    margin-top: -3.25rem !important;
    margin-bottom: -3.25rem !important;
  }
  .my-xl-n12 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .my-xl-n11 {
    margin-top: -2.75rem !important;
    margin-bottom: -2.75rem !important;
  }
  .my-xl-n10 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .my-xl-n9 {
    margin-top: -2.25rem !important;
    margin-bottom: -2.25rem !important;
  }
  .my-xl-n8 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .my-xl-n7 {
    margin-top: -1.75rem !important;
    margin-bottom: -1.75rem !important;
  }
  .my-xl-n6 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-xl-n5 {
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }
  .my-xl-n4 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-xl-n3 {
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }
  .my-xl-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-xl-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .mt-xl-n20 {
    margin-top: -5rem !important;
  }
  .mt-xl-n19 {
    margin-top: -4.75rem !important;
  }
  .mt-xl-n18 {
    margin-top: -4.5rem !important;
  }
  .mt-xl-n17 {
    margin-top: -4.25rem !important;
  }
  .mt-xl-n16 {
    margin-top: -4rem !important;
  }
  .mt-xl-n15 {
    margin-top: -3.75rem !important;
  }
  .mt-xl-n14 {
    margin-top: -3.5rem !important;
  }
  .mt-xl-n13 {
    margin-top: -3.25rem !important;
  }
  .mt-xl-n12 {
    margin-top: -3rem !important;
  }
  .mt-xl-n11 {
    margin-top: -2.75rem !important;
  }
  .mt-xl-n10 {
    margin-top: -2.5rem !important;
  }
  .mt-xl-n9 {
    margin-top: -2.25rem !important;
  }
  .mt-xl-n8 {
    margin-top: -2rem !important;
  }
  .mt-xl-n7 {
    margin-top: -1.75rem !important;
  }
  .mt-xl-n6 {
    margin-top: -1.5rem !important;
  }
  .mt-xl-n5 {
    margin-top: -1.25rem !important;
  }
  .mt-xl-n4 {
    margin-top: -1rem !important;
  }
  .mt-xl-n3 {
    margin-top: -0.75rem !important;
  }
  .mt-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .me-xl-n20 {
    margin-right: -5rem !important;
  }
  .me-xl-n19 {
    margin-right: -4.75rem !important;
  }
  .me-xl-n18 {
    margin-right: -4.5rem !important;
  }
  .me-xl-n17 {
    margin-right: -4.25rem !important;
  }
  .me-xl-n16 {
    margin-right: -4rem !important;
  }
  .me-xl-n15 {
    margin-right: -3.75rem !important;
  }
  .me-xl-n14 {
    margin-right: -3.5rem !important;
  }
  .me-xl-n13 {
    margin-right: -3.25rem !important;
  }
  .me-xl-n12 {
    margin-right: -3rem !important;
  }
  .me-xl-n11 {
    margin-right: -2.75rem !important;
  }
  .me-xl-n10 {
    margin-right: -2.5rem !important;
  }
  .me-xl-n9 {
    margin-right: -2.25rem !important;
  }
  .me-xl-n8 {
    margin-right: -2rem !important;
  }
  .me-xl-n7 {
    margin-right: -1.75rem !important;
  }
  .me-xl-n6 {
    margin-right: -1.5rem !important;
  }
  .me-xl-n5 {
    margin-right: -1.25rem !important;
  }
  .me-xl-n4 {
    margin-right: -1rem !important;
  }
  .me-xl-n3 {
    margin-right: -0.75rem !important;
  }
  .me-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .me-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n20 {
    margin-bottom: -5rem !important;
  }
  .mb-xl-n19 {
    margin-bottom: -4.75rem !important;
  }
  .mb-xl-n18 {
    margin-bottom: -4.5rem !important;
  }
  .mb-xl-n17 {
    margin-bottom: -4.25rem !important;
  }
  .mb-xl-n16 {
    margin-bottom: -4rem !important;
  }
  .mb-xl-n15 {
    margin-bottom: -3.75rem !important;
  }
  .mb-xl-n14 {
    margin-bottom: -3.5rem !important;
  }
  .mb-xl-n13 {
    margin-bottom: -3.25rem !important;
  }
  .mb-xl-n12 {
    margin-bottom: -3rem !important;
  }
  .mb-xl-n11 {
    margin-bottom: -2.75rem !important;
  }
  .mb-xl-n10 {
    margin-bottom: -2.5rem !important;
  }
  .mb-xl-n9 {
    margin-bottom: -2.25rem !important;
  }
  .mb-xl-n8 {
    margin-bottom: -2rem !important;
  }
  .mb-xl-n7 {
    margin-bottom: -1.75rem !important;
  }
  .mb-xl-n6 {
    margin-bottom: -1.5rem !important;
  }
  .mb-xl-n5 {
    margin-bottom: -1.25rem !important;
  }
  .mb-xl-n4 {
    margin-bottom: -1rem !important;
  }
  .mb-xl-n3 {
    margin-bottom: -0.75rem !important;
  }
  .mb-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ms-xl-n20 {
    margin-left: -5rem !important;
  }
  .ms-xl-n19 {
    margin-left: -4.75rem !important;
  }
  .ms-xl-n18 {
    margin-left: -4.5rem !important;
  }
  .ms-xl-n17 {
    margin-left: -4.25rem !important;
  }
  .ms-xl-n16 {
    margin-left: -4rem !important;
  }
  .ms-xl-n15 {
    margin-left: -3.75rem !important;
  }
  .ms-xl-n14 {
    margin-left: -3.5rem !important;
  }
  .ms-xl-n13 {
    margin-left: -3.25rem !important;
  }
  .ms-xl-n12 {
    margin-left: -3rem !important;
  }
  .ms-xl-n11 {
    margin-left: -2.75rem !important;
  }
  .ms-xl-n10 {
    margin-left: -2.5rem !important;
  }
  .ms-xl-n9 {
    margin-left: -2.25rem !important;
  }
  .ms-xl-n8 {
    margin-left: -2rem !important;
  }
  .ms-xl-n7 {
    margin-left: -1.75rem !important;
  }
  .ms-xl-n6 {
    margin-left: -1.5rem !important;
  }
  .ms-xl-n5 {
    margin-left: -1.25rem !important;
  }
  .ms-xl-n4 {
    margin-left: -1rem !important;
  }
  .ms-xl-n3 {
    margin-left: -0.75rem !important;
  }
  .ms-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .ms-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .p-xl-20 {
    padding: 5rem !important;
  }
  .p-xl-19 {
    padding: 4.75rem !important;
  }
  .p-xl-18 {
    padding: 4.5rem !important;
  }
  .p-xl-17 {
    padding: 4.25rem !important;
  }
  .p-xl-16 {
    padding: 4rem !important;
  }
  .p-xl-15 {
    padding: 3.75rem !important;
  }
  .p-xl-14 {
    padding: 3.5rem !important;
  }
  .p-xl-13 {
    padding: 3.25rem !important;
  }
  .p-xl-12 {
    padding: 3rem !important;
  }
  .p-xl-11 {
    padding: 2.75rem !important;
  }
  .p-xl-10 {
    padding: 2.5rem !important;
  }
  .p-xl-9 {
    padding: 2.25rem !important;
  }
  .p-xl-8 {
    padding: 2rem !important;
  }
  .p-xl-7 {
    padding: 1.75rem !important;
  }
  .p-xl-6 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 1.25rem !important;
  }
  .p-xl-4 {
    padding: 1rem !important;
  }
  .p-xl-3 {
    padding: 0.75rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .px-xl-20 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-xl-19 {
    padding-right: 4.75rem !important;
    padding-left: 4.75rem !important;
  }
  .px-xl-18 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  .px-xl-17 {
    padding-right: 4.25rem !important;
    padding-left: 4.25rem !important;
  }
  .px-xl-16 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-xl-15 {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
  }
  .px-xl-14 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-xl-13 {
    padding-right: 3.25rem !important;
    padding-left: 3.25rem !important;
  }
  .px-xl-12 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xl-11 {
    padding-right: 2.75rem !important;
    padding-left: 2.75rem !important;
  }
  .px-xl-10 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-xl-9 {
    padding-right: 2.25rem !important;
    padding-left: 2.25rem !important;
  }
  .px-xl-8 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-xl-7 {
    padding-right: 1.75rem !important;
    padding-left: 1.75rem !important;
  }
  .px-xl-6 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .px-xl-4 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-3 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .py-xl-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-xl-19 {
    padding-top: 4.75rem !important;
    padding-bottom: 4.75rem !important;
  }
  .py-xl-18 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .py-xl-17 {
    padding-top: 4.25rem !important;
    padding-bottom: 4.25rem !important;
  }
  .py-xl-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-xl-15 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
  .py-xl-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-xl-13 {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
  }
  .py-xl-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xl-11 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }
  .py-xl-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-xl-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }
  .py-xl-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xl-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }
  .py-xl-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .py-xl-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .pt-xl-20 {
    padding-top: 5rem !important;
  }
  .pt-xl-19 {
    padding-top: 4.75rem !important;
  }
  .pt-xl-18 {
    padding-top: 4.5rem !important;
  }
  .pt-xl-17 {
    padding-top: 4.25rem !important;
  }
  .pt-xl-16 {
    padding-top: 4rem !important;
  }
  .pt-xl-15 {
    padding-top: 3.75rem !important;
  }
  .pt-xl-14 {
    padding-top: 3.5rem !important;
  }
  .pt-xl-13 {
    padding-top: 3.25rem !important;
  }
  .pt-xl-12 {
    padding-top: 3rem !important;
  }
  .pt-xl-11 {
    padding-top: 2.75rem !important;
  }
  .pt-xl-10 {
    padding-top: 2.5rem !important;
  }
  .pt-xl-9 {
    padding-top: 2.25rem !important;
  }
  .pt-xl-8 {
    padding-top: 2rem !important;
  }
  .pt-xl-7 {
    padding-top: 1.75rem !important;
  }
  .pt-xl-6 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 1.25rem !important;
  }
  .pt-xl-4 {
    padding-top: 1rem !important;
  }
  .pt-xl-3 {
    padding-top: 0.75rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pe-xl-20 {
    padding-right: 5rem !important;
  }
  .pe-xl-19 {
    padding-right: 4.75rem !important;
  }
  .pe-xl-18 {
    padding-right: 4.5rem !important;
  }
  .pe-xl-17 {
    padding-right: 4.25rem !important;
  }
  .pe-xl-16 {
    padding-right: 4rem !important;
  }
  .pe-xl-15 {
    padding-right: 3.75rem !important;
  }
  .pe-xl-14 {
    padding-right: 3.5rem !important;
  }
  .pe-xl-13 {
    padding-right: 3.25rem !important;
  }
  .pe-xl-12 {
    padding-right: 3rem !important;
  }
  .pe-xl-11 {
    padding-right: 2.75rem !important;
  }
  .pe-xl-10 {
    padding-right: 2.5rem !important;
  }
  .pe-xl-9 {
    padding-right: 2.25rem !important;
  }
  .pe-xl-8 {
    padding-right: 2rem !important;
  }
  .pe-xl-7 {
    padding-right: 1.75rem !important;
  }
  .pe-xl-6 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 1.25rem !important;
  }
  .pe-xl-4 {
    padding-right: 1rem !important;
  }
  .pe-xl-3 {
    padding-right: 0.75rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-20 {
    padding-bottom: 5rem !important;
  }
  .pb-xl-19 {
    padding-bottom: 4.75rem !important;
  }
  .pb-xl-18 {
    padding-bottom: 4.5rem !important;
  }
  .pb-xl-17 {
    padding-bottom: 4.25rem !important;
  }
  .pb-xl-16 {
    padding-bottom: 4rem !important;
  }
  .pb-xl-15 {
    padding-bottom: 3.75rem !important;
  }
  .pb-xl-14 {
    padding-bottom: 3.5rem !important;
  }
  .pb-xl-13 {
    padding-bottom: 3.25rem !important;
  }
  .pb-xl-12 {
    padding-bottom: 3rem !important;
  }
  .pb-xl-11 {
    padding-bottom: 2.75rem !important;
  }
  .pb-xl-10 {
    padding-bottom: 2.5rem !important;
  }
  .pb-xl-9 {
    padding-bottom: 2.25rem !important;
  }
  .pb-xl-8 {
    padding-bottom: 2rem !important;
  }
  .pb-xl-7 {
    padding-bottom: 1.75rem !important;
  }
  .pb-xl-6 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 1.25rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 0.75rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .ps-xl-20 {
    padding-left: 5rem !important;
  }
  .ps-xl-19 {
    padding-left: 4.75rem !important;
  }
  .ps-xl-18 {
    padding-left: 4.5rem !important;
  }
  .ps-xl-17 {
    padding-left: 4.25rem !important;
  }
  .ps-xl-16 {
    padding-left: 4rem !important;
  }
  .ps-xl-15 {
    padding-left: 3.75rem !important;
  }
  .ps-xl-14 {
    padding-left: 3.5rem !important;
  }
  .ps-xl-13 {
    padding-left: 3.25rem !important;
  }
  .ps-xl-12 {
    padding-left: 3rem !important;
  }
  .ps-xl-11 {
    padding-left: 2.75rem !important;
  }
  .ps-xl-10 {
    padding-left: 2.5rem !important;
  }
  .ps-xl-9 {
    padding-left: 2.25rem !important;
  }
  .ps-xl-8 {
    padding-left: 2rem !important;
  }
  .ps-xl-7 {
    padding-left: 1.75rem !important;
  }
  .ps-xl-6 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 1.25rem !important;
  }
  .ps-xl-4 {
    padding-left: 1rem !important;
  }
  .ps-xl-3 {
    padding-left: 0.75rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
}
@media (min-width: 1920px) {
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-inline-grid {
    display: inline-grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .lh-xxl-24-11 {
    line-height: 2.1818181818 !important;
  }
  .lh-xxl-24-13 {
    line-height: 1.8461538462 !important;
  }
  .lh-xxl-28 {
    line-height: 1.8666666667 !important;
  }
  .lh-xxl-30 {
    line-height: 1.875 !important;
  }
  .lh-xxl-32 {
    line-height: 1.7777777778 !important;
  }
  .lh-xxl-34 {
    line-height: 1.7 !important;
  }
  .lh-xxl-36 {
    line-height: 1.6363636364 !important;
  }
  .lh-xxl-38 {
    line-height: 1.5833333333 !important;
  }
  .lh-xxl-42 {
    line-height: 1.5 !important;
  }
  .lh-xxl-46 {
    line-height: 1.4375 !important;
  }
  .lh-xxl-50 {
    line-height: 1.3888888889 !important;
  }
  .lh-xxl-62 {
    line-height: 1.2916666667 !important;
  }
  .lh-xxl-66 {
    line-height: 1.2692307692 !important;
  }
  .fs-xxl-13 {
    font-size: 3.25rem !important;
  }
  .fs-xxl-12 {
    font-size: 3rem !important;
  }
  .fs-xxl-11 {
    font-size: 2.75rem !important;
  }
  .fs-xxl-10 {
    font-size: 2.5rem !important;
  }
  .fs-xxl-9 {
    font-size: 2.25rem !important;
  }
  .fs-xxl-8 {
    font-size: 2rem !important;
  }
  .fs-xxl-7 {
    font-size: 1.75rem !important;
  }
  .fs-xxl-6 {
    font-size: 1.5rem !important;
  }
  .fs-xxl-5 {
    font-size: 1.25rem !important;
  }
  .fs-xxl-4 {
    font-size: 1rem !important;
  }
  .fs-xxl-3 {
    font-size: 0.75rem !important;
  }
  .fs-xxl-2 {
    font-size: 0.5rem !important;
  }
  .fs-xxl-1 {
    font-size: 0.25rem !important;
  }
  .fs-xxl-x11 {
    font-size: 0.6875rem !important;
  }
  .fs-xxl-x13 {
    font-size: 0.8125rem !important;
  }
  .fs-xxl-x15 {
    font-size: 0.9375rem !important;
  }
  .fs-xxl-x18 {
    font-size: 1.125rem !important;
  }
  .fs-xxl-x22 {
    font-size: 1.375rem !important;
  }
  .fw-xxl-100 {
    font-weight: 100 !important;
  }
  .fw-xxl-300 {
    font-weight: 300 !important;
  }
  .fw-xxl-400 {
    font-weight: 400 !important;
  }
  .fw-xxl-500 {
    font-weight: 500 !important;
  }
  .fw-xxl-600 {
    font-weight: 600 !important;
  }
  .fw-xxl-700 {
    font-weight: 700 !important;
  }
  .fw-xxl-900 {
    font-weight: 900 !important;
  }
  .text-xxl-start {
    text-align: left !important;
  }
  .text-xxl-end {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
  .m-xxl-20 {
    margin: 5rem !important;
  }
  .m-xxl-19 {
    margin: 4.75rem !important;
  }
  .m-xxl-18 {
    margin: 4.5rem !important;
  }
  .m-xxl-17 {
    margin: 4.25rem !important;
  }
  .m-xxl-16 {
    margin: 4rem !important;
  }
  .m-xxl-15 {
    margin: 3.75rem !important;
  }
  .m-xxl-14 {
    margin: 3.5rem !important;
  }
  .m-xxl-13 {
    margin: 3.25rem !important;
  }
  .m-xxl-12 {
    margin: 3rem !important;
  }
  .m-xxl-11 {
    margin: 2.75rem !important;
  }
  .m-xxl-10 {
    margin: 2.5rem !important;
  }
  .m-xxl-9 {
    margin: 2.25rem !important;
  }
  .m-xxl-8 {
    margin: 2rem !important;
  }
  .m-xxl-7 {
    margin: 1.75rem !important;
  }
  .m-xxl-6 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 1.25rem !important;
  }
  .m-xxl-4 {
    margin: 1rem !important;
  }
  .m-xxl-3 {
    margin: 0.75rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-20 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-xxl-19 {
    margin-right: 4.75rem !important;
    margin-left: 4.75rem !important;
  }
  .mx-xxl-18 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  .mx-xxl-17 {
    margin-right: 4.25rem !important;
    margin-left: 4.25rem !important;
  }
  .mx-xxl-16 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-xxl-15 {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }
  .mx-xxl-14 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-xxl-13 {
    margin-right: 3.25rem !important;
    margin-left: 3.25rem !important;
  }
  .mx-xxl-12 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-11 {
    margin-right: 2.75rem !important;
    margin-left: 2.75rem !important;
  }
  .mx-xxl-10 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-xxl-9 {
    margin-right: 2.25rem !important;
    margin-left: 2.25rem !important;
  }
  .mx-xxl-8 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-xxl-7 {
    margin-right: 1.75rem !important;
    margin-left: 1.75rem !important;
  }
  .mx-xxl-6 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-3 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-xxl-19 {
    margin-top: 4.75rem !important;
    margin-bottom: 4.75rem !important;
  }
  .my-xxl-18 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .my-xxl-17 {
    margin-top: 4.25rem !important;
    margin-bottom: 4.25rem !important;
  }
  .my-xxl-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-xxl-15 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
  .my-xxl-14 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-xxl-13 {
    margin-top: 3.25rem !important;
    margin-bottom: 3.25rem !important;
  }
  .my-xxl-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-11 {
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }
  .my-xxl-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-xxl-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }
  .my-xxl-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xxl-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }
  .my-xxl-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .my-xxl-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-20 {
    margin-top: 5rem !important;
  }
  .mt-xxl-19 {
    margin-top: 4.75rem !important;
  }
  .mt-xxl-18 {
    margin-top: 4.5rem !important;
  }
  .mt-xxl-17 {
    margin-top: 4.25rem !important;
  }
  .mt-xxl-16 {
    margin-top: 4rem !important;
  }
  .mt-xxl-15 {
    margin-top: 3.75rem !important;
  }
  .mt-xxl-14 {
    margin-top: 3.5rem !important;
  }
  .mt-xxl-13 {
    margin-top: 3.25rem !important;
  }
  .mt-xxl-12 {
    margin-top: 3rem !important;
  }
  .mt-xxl-11 {
    margin-top: 2.75rem !important;
  }
  .mt-xxl-10 {
    margin-top: 2.5rem !important;
  }
  .mt-xxl-9 {
    margin-top: 2.25rem !important;
  }
  .mt-xxl-8 {
    margin-top: 2rem !important;
  }
  .mt-xxl-7 {
    margin-top: 1.75rem !important;
  }
  .mt-xxl-6 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 1.25rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1rem !important;
  }
  .mt-xxl-3 {
    margin-top: 0.75rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-20 {
    margin-right: 5rem !important;
  }
  .me-xxl-19 {
    margin-right: 4.75rem !important;
  }
  .me-xxl-18 {
    margin-right: 4.5rem !important;
  }
  .me-xxl-17 {
    margin-right: 4.25rem !important;
  }
  .me-xxl-16 {
    margin-right: 4rem !important;
  }
  .me-xxl-15 {
    margin-right: 3.75rem !important;
  }
  .me-xxl-14 {
    margin-right: 3.5rem !important;
  }
  .me-xxl-13 {
    margin-right: 3.25rem !important;
  }
  .me-xxl-12 {
    margin-right: 3rem !important;
  }
  .me-xxl-11 {
    margin-right: 2.75rem !important;
  }
  .me-xxl-10 {
    margin-right: 2.5rem !important;
  }
  .me-xxl-9 {
    margin-right: 2.25rem !important;
  }
  .me-xxl-8 {
    margin-right: 2rem !important;
  }
  .me-xxl-7 {
    margin-right: 1.75rem !important;
  }
  .me-xxl-6 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 1.25rem !important;
  }
  .me-xxl-4 {
    margin-right: 1rem !important;
  }
  .me-xxl-3 {
    margin-right: 0.75rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-20 {
    margin-bottom: 5rem !important;
  }
  .mb-xxl-19 {
    margin-bottom: 4.75rem !important;
  }
  .mb-xxl-18 {
    margin-bottom: 4.5rem !important;
  }
  .mb-xxl-17 {
    margin-bottom: 4.25rem !important;
  }
  .mb-xxl-16 {
    margin-bottom: 4rem !important;
  }
  .mb-xxl-15 {
    margin-bottom: 3.75rem !important;
  }
  .mb-xxl-14 {
    margin-bottom: 3.5rem !important;
  }
  .mb-xxl-13 {
    margin-bottom: 3.25rem !important;
  }
  .mb-xxl-12 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-11 {
    margin-bottom: 2.75rem !important;
  }
  .mb-xxl-10 {
    margin-bottom: 2.5rem !important;
  }
  .mb-xxl-9 {
    margin-bottom: 2.25rem !important;
  }
  .mb-xxl-8 {
    margin-bottom: 2rem !important;
  }
  .mb-xxl-7 {
    margin-bottom: 1.75rem !important;
  }
  .mb-xxl-6 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 1.25rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 0.75rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-20 {
    margin-left: 5rem !important;
  }
  .ms-xxl-19 {
    margin-left: 4.75rem !important;
  }
  .ms-xxl-18 {
    margin-left: 4.5rem !important;
  }
  .ms-xxl-17 {
    margin-left: 4.25rem !important;
  }
  .ms-xxl-16 {
    margin-left: 4rem !important;
  }
  .ms-xxl-15 {
    margin-left: 3.75rem !important;
  }
  .ms-xxl-14 {
    margin-left: 3.5rem !important;
  }
  .ms-xxl-13 {
    margin-left: 3.25rem !important;
  }
  .ms-xxl-12 {
    margin-left: 3rem !important;
  }
  .ms-xxl-11 {
    margin-left: 2.75rem !important;
  }
  .ms-xxl-10 {
    margin-left: 2.5rem !important;
  }
  .ms-xxl-9 {
    margin-left: 2.25rem !important;
  }
  .ms-xxl-8 {
    margin-left: 2rem !important;
  }
  .ms-xxl-7 {
    margin-left: 1.75rem !important;
  }
  .ms-xxl-6 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 1.25rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1rem !important;
  }
  .ms-xxl-3 {
    margin-left: 0.75rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .m-xxl-n20 {
    margin: -5rem !important;
  }
  .m-xxl-n19 {
    margin: -4.75rem !important;
  }
  .m-xxl-n18 {
    margin: -4.5rem !important;
  }
  .m-xxl-n17 {
    margin: -4.25rem !important;
  }
  .m-xxl-n16 {
    margin: -4rem !important;
  }
  .m-xxl-n15 {
    margin: -3.75rem !important;
  }
  .m-xxl-n14 {
    margin: -3.5rem !important;
  }
  .m-xxl-n13 {
    margin: -3.25rem !important;
  }
  .m-xxl-n12 {
    margin: -3rem !important;
  }
  .m-xxl-n11 {
    margin: -2.75rem !important;
  }
  .m-xxl-n10 {
    margin: -2.5rem !important;
  }
  .m-xxl-n9 {
    margin: -2.25rem !important;
  }
  .m-xxl-n8 {
    margin: -2rem !important;
  }
  .m-xxl-n7 {
    margin: -1.75rem !important;
  }
  .m-xxl-n6 {
    margin: -1.5rem !important;
  }
  .m-xxl-n5 {
    margin: -1.25rem !important;
  }
  .m-xxl-n4 {
    margin: -1rem !important;
  }
  .m-xxl-n3 {
    margin: -0.75rem !important;
  }
  .m-xxl-n2 {
    margin: -0.5rem !important;
  }
  .m-xxl-n1 {
    margin: -0.25rem !important;
  }
  .mx-xxl-n20 {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }
  .mx-xxl-n19 {
    margin-right: -4.75rem !important;
    margin-left: -4.75rem !important;
  }
  .mx-xxl-n18 {
    margin-right: -4.5rem !important;
    margin-left: -4.5rem !important;
  }
  .mx-xxl-n17 {
    margin-right: -4.25rem !important;
    margin-left: -4.25rem !important;
  }
  .mx-xxl-n16 {
    margin-right: -4rem !important;
    margin-left: -4rem !important;
  }
  .mx-xxl-n15 {
    margin-right: -3.75rem !important;
    margin-left: -3.75rem !important;
  }
  .mx-xxl-n14 {
    margin-right: -3.5rem !important;
    margin-left: -3.5rem !important;
  }
  .mx-xxl-n13 {
    margin-right: -3.25rem !important;
    margin-left: -3.25rem !important;
  }
  .mx-xxl-n12 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .mx-xxl-n11 {
    margin-right: -2.75rem !important;
    margin-left: -2.75rem !important;
  }
  .mx-xxl-n10 {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }
  .mx-xxl-n9 {
    margin-right: -2.25rem !important;
    margin-left: -2.25rem !important;
  }
  .mx-xxl-n8 {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }
  .mx-xxl-n7 {
    margin-right: -1.75rem !important;
    margin-left: -1.75rem !important;
  }
  .mx-xxl-n6 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-xxl-n5 {
    margin-right: -1.25rem !important;
    margin-left: -1.25rem !important;
  }
  .mx-xxl-n4 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-xxl-n3 {
    margin-right: -0.75rem !important;
    margin-left: -0.75rem !important;
  }
  .mx-xxl-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-xxl-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .my-xxl-n20 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .my-xxl-n19 {
    margin-top: -4.75rem !important;
    margin-bottom: -4.75rem !important;
  }
  .my-xxl-n18 {
    margin-top: -4.5rem !important;
    margin-bottom: -4.5rem !important;
  }
  .my-xxl-n17 {
    margin-top: -4.25rem !important;
    margin-bottom: -4.25rem !important;
  }
  .my-xxl-n16 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .my-xxl-n15 {
    margin-top: -3.75rem !important;
    margin-bottom: -3.75rem !important;
  }
  .my-xxl-n14 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }
  .my-xxl-n13 {
    margin-top: -3.25rem !important;
    margin-bottom: -3.25rem !important;
  }
  .my-xxl-n12 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .my-xxl-n11 {
    margin-top: -2.75rem !important;
    margin-bottom: -2.75rem !important;
  }
  .my-xxl-n10 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .my-xxl-n9 {
    margin-top: -2.25rem !important;
    margin-bottom: -2.25rem !important;
  }
  .my-xxl-n8 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .my-xxl-n7 {
    margin-top: -1.75rem !important;
    margin-bottom: -1.75rem !important;
  }
  .my-xxl-n6 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-xxl-n5 {
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }
  .my-xxl-n4 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-xxl-n3 {
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }
  .my-xxl-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-xxl-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .mt-xxl-n20 {
    margin-top: -5rem !important;
  }
  .mt-xxl-n19 {
    margin-top: -4.75rem !important;
  }
  .mt-xxl-n18 {
    margin-top: -4.5rem !important;
  }
  .mt-xxl-n17 {
    margin-top: -4.25rem !important;
  }
  .mt-xxl-n16 {
    margin-top: -4rem !important;
  }
  .mt-xxl-n15 {
    margin-top: -3.75rem !important;
  }
  .mt-xxl-n14 {
    margin-top: -3.5rem !important;
  }
  .mt-xxl-n13 {
    margin-top: -3.25rem !important;
  }
  .mt-xxl-n12 {
    margin-top: -3rem !important;
  }
  .mt-xxl-n11 {
    margin-top: -2.75rem !important;
  }
  .mt-xxl-n10 {
    margin-top: -2.5rem !important;
  }
  .mt-xxl-n9 {
    margin-top: -2.25rem !important;
  }
  .mt-xxl-n8 {
    margin-top: -2rem !important;
  }
  .mt-xxl-n7 {
    margin-top: -1.75rem !important;
  }
  .mt-xxl-n6 {
    margin-top: -1.5rem !important;
  }
  .mt-xxl-n5 {
    margin-top: -1.25rem !important;
  }
  .mt-xxl-n4 {
    margin-top: -1rem !important;
  }
  .mt-xxl-n3 {
    margin-top: -0.75rem !important;
  }
  .mt-xxl-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-xxl-n1 {
    margin-top: -0.25rem !important;
  }
  .me-xxl-n20 {
    margin-right: -5rem !important;
  }
  .me-xxl-n19 {
    margin-right: -4.75rem !important;
  }
  .me-xxl-n18 {
    margin-right: -4.5rem !important;
  }
  .me-xxl-n17 {
    margin-right: -4.25rem !important;
  }
  .me-xxl-n16 {
    margin-right: -4rem !important;
  }
  .me-xxl-n15 {
    margin-right: -3.75rem !important;
  }
  .me-xxl-n14 {
    margin-right: -3.5rem !important;
  }
  .me-xxl-n13 {
    margin-right: -3.25rem !important;
  }
  .me-xxl-n12 {
    margin-right: -3rem !important;
  }
  .me-xxl-n11 {
    margin-right: -2.75rem !important;
  }
  .me-xxl-n10 {
    margin-right: -2.5rem !important;
  }
  .me-xxl-n9 {
    margin-right: -2.25rem !important;
  }
  .me-xxl-n8 {
    margin-right: -2rem !important;
  }
  .me-xxl-n7 {
    margin-right: -1.75rem !important;
  }
  .me-xxl-n6 {
    margin-right: -1.5rem !important;
  }
  .me-xxl-n5 {
    margin-right: -1.25rem !important;
  }
  .me-xxl-n4 {
    margin-right: -1rem !important;
  }
  .me-xxl-n3 {
    margin-right: -0.75rem !important;
  }
  .me-xxl-n2 {
    margin-right: -0.5rem !important;
  }
  .me-xxl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xxl-n20 {
    margin-bottom: -5rem !important;
  }
  .mb-xxl-n19 {
    margin-bottom: -4.75rem !important;
  }
  .mb-xxl-n18 {
    margin-bottom: -4.5rem !important;
  }
  .mb-xxl-n17 {
    margin-bottom: -4.25rem !important;
  }
  .mb-xxl-n16 {
    margin-bottom: -4rem !important;
  }
  .mb-xxl-n15 {
    margin-bottom: -3.75rem !important;
  }
  .mb-xxl-n14 {
    margin-bottom: -3.5rem !important;
  }
  .mb-xxl-n13 {
    margin-bottom: -3.25rem !important;
  }
  .mb-xxl-n12 {
    margin-bottom: -3rem !important;
  }
  .mb-xxl-n11 {
    margin-bottom: -2.75rem !important;
  }
  .mb-xxl-n10 {
    margin-bottom: -2.5rem !important;
  }
  .mb-xxl-n9 {
    margin-bottom: -2.25rem !important;
  }
  .mb-xxl-n8 {
    margin-bottom: -2rem !important;
  }
  .mb-xxl-n7 {
    margin-bottom: -1.75rem !important;
  }
  .mb-xxl-n6 {
    margin-bottom: -1.5rem !important;
  }
  .mb-xxl-n5 {
    margin-bottom: -1.25rem !important;
  }
  .mb-xxl-n4 {
    margin-bottom: -1rem !important;
  }
  .mb-xxl-n3 {
    margin-bottom: -0.75rem !important;
  }
  .mb-xxl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-xxl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ms-xxl-n20 {
    margin-left: -5rem !important;
  }
  .ms-xxl-n19 {
    margin-left: -4.75rem !important;
  }
  .ms-xxl-n18 {
    margin-left: -4.5rem !important;
  }
  .ms-xxl-n17 {
    margin-left: -4.25rem !important;
  }
  .ms-xxl-n16 {
    margin-left: -4rem !important;
  }
  .ms-xxl-n15 {
    margin-left: -3.75rem !important;
  }
  .ms-xxl-n14 {
    margin-left: -3.5rem !important;
  }
  .ms-xxl-n13 {
    margin-left: -3.25rem !important;
  }
  .ms-xxl-n12 {
    margin-left: -3rem !important;
  }
  .ms-xxl-n11 {
    margin-left: -2.75rem !important;
  }
  .ms-xxl-n10 {
    margin-left: -2.5rem !important;
  }
  .ms-xxl-n9 {
    margin-left: -2.25rem !important;
  }
  .ms-xxl-n8 {
    margin-left: -2rem !important;
  }
  .ms-xxl-n7 {
    margin-left: -1.75rem !important;
  }
  .ms-xxl-n6 {
    margin-left: -1.5rem !important;
  }
  .ms-xxl-n5 {
    margin-left: -1.25rem !important;
  }
  .ms-xxl-n4 {
    margin-left: -1rem !important;
  }
  .ms-xxl-n3 {
    margin-left: -0.75rem !important;
  }
  .ms-xxl-n2 {
    margin-left: -0.5rem !important;
  }
  .ms-xxl-n1 {
    margin-left: -0.25rem !important;
  }
  .p-xxl-20 {
    padding: 5rem !important;
  }
  .p-xxl-19 {
    padding: 4.75rem !important;
  }
  .p-xxl-18 {
    padding: 4.5rem !important;
  }
  .p-xxl-17 {
    padding: 4.25rem !important;
  }
  .p-xxl-16 {
    padding: 4rem !important;
  }
  .p-xxl-15 {
    padding: 3.75rem !important;
  }
  .p-xxl-14 {
    padding: 3.5rem !important;
  }
  .p-xxl-13 {
    padding: 3.25rem !important;
  }
  .p-xxl-12 {
    padding: 3rem !important;
  }
  .p-xxl-11 {
    padding: 2.75rem !important;
  }
  .p-xxl-10 {
    padding: 2.5rem !important;
  }
  .p-xxl-9 {
    padding: 2.25rem !important;
  }
  .p-xxl-8 {
    padding: 2rem !important;
  }
  .p-xxl-7 {
    padding: 1.75rem !important;
  }
  .p-xxl-6 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 1.25rem !important;
  }
  .p-xxl-4 {
    padding: 1rem !important;
  }
  .p-xxl-3 {
    padding: 0.75rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .px-xxl-20 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-xxl-19 {
    padding-right: 4.75rem !important;
    padding-left: 4.75rem !important;
  }
  .px-xxl-18 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  .px-xxl-17 {
    padding-right: 4.25rem !important;
    padding-left: 4.25rem !important;
  }
  .px-xxl-16 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-xxl-15 {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
  }
  .px-xxl-14 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-xxl-13 {
    padding-right: 3.25rem !important;
    padding-left: 3.25rem !important;
  }
  .px-xxl-12 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xxl-11 {
    padding-right: 2.75rem !important;
    padding-left: 2.75rem !important;
  }
  .px-xxl-10 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-xxl-9 {
    padding-right: 2.25rem !important;
    padding-left: 2.25rem !important;
  }
  .px-xxl-8 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-xxl-7 {
    padding-right: 1.75rem !important;
    padding-left: 1.75rem !important;
  }
  .px-xxl-6 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .px-xxl-4 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-3 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .py-xxl-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-xxl-19 {
    padding-top: 4.75rem !important;
    padding-bottom: 4.75rem !important;
  }
  .py-xxl-18 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .py-xxl-17 {
    padding-top: 4.25rem !important;
    padding-bottom: 4.25rem !important;
  }
  .py-xxl-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-xxl-15 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
  .py-xxl-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-xxl-13 {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
  }
  .py-xxl-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xxl-11 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }
  .py-xxl-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-xxl-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }
  .py-xxl-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xxl-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }
  .py-xxl-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .py-xxl-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .pt-xxl-20 {
    padding-top: 5rem !important;
  }
  .pt-xxl-19 {
    padding-top: 4.75rem !important;
  }
  .pt-xxl-18 {
    padding-top: 4.5rem !important;
  }
  .pt-xxl-17 {
    padding-top: 4.25rem !important;
  }
  .pt-xxl-16 {
    padding-top: 4rem !important;
  }
  .pt-xxl-15 {
    padding-top: 3.75rem !important;
  }
  .pt-xxl-14 {
    padding-top: 3.5rem !important;
  }
  .pt-xxl-13 {
    padding-top: 3.25rem !important;
  }
  .pt-xxl-12 {
    padding-top: 3rem !important;
  }
  .pt-xxl-11 {
    padding-top: 2.75rem !important;
  }
  .pt-xxl-10 {
    padding-top: 2.5rem !important;
  }
  .pt-xxl-9 {
    padding-top: 2.25rem !important;
  }
  .pt-xxl-8 {
    padding-top: 2rem !important;
  }
  .pt-xxl-7 {
    padding-top: 1.75rem !important;
  }
  .pt-xxl-6 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 1.25rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1rem !important;
  }
  .pt-xxl-3 {
    padding-top: 0.75rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pe-xxl-20 {
    padding-right: 5rem !important;
  }
  .pe-xxl-19 {
    padding-right: 4.75rem !important;
  }
  .pe-xxl-18 {
    padding-right: 4.5rem !important;
  }
  .pe-xxl-17 {
    padding-right: 4.25rem !important;
  }
  .pe-xxl-16 {
    padding-right: 4rem !important;
  }
  .pe-xxl-15 {
    padding-right: 3.75rem !important;
  }
  .pe-xxl-14 {
    padding-right: 3.5rem !important;
  }
  .pe-xxl-13 {
    padding-right: 3.25rem !important;
  }
  .pe-xxl-12 {
    padding-right: 3rem !important;
  }
  .pe-xxl-11 {
    padding-right: 2.75rem !important;
  }
  .pe-xxl-10 {
    padding-right: 2.5rem !important;
  }
  .pe-xxl-9 {
    padding-right: 2.25rem !important;
  }
  .pe-xxl-8 {
    padding-right: 2rem !important;
  }
  .pe-xxl-7 {
    padding-right: 1.75rem !important;
  }
  .pe-xxl-6 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 1.25rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1rem !important;
  }
  .pe-xxl-3 {
    padding-right: 0.75rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xxl-20 {
    padding-bottom: 5rem !important;
  }
  .pb-xxl-19 {
    padding-bottom: 4.75rem !important;
  }
  .pb-xxl-18 {
    padding-bottom: 4.5rem !important;
  }
  .pb-xxl-17 {
    padding-bottom: 4.25rem !important;
  }
  .pb-xxl-16 {
    padding-bottom: 4rem !important;
  }
  .pb-xxl-15 {
    padding-bottom: 3.75rem !important;
  }
  .pb-xxl-14 {
    padding-bottom: 3.5rem !important;
  }
  .pb-xxl-13 {
    padding-bottom: 3.25rem !important;
  }
  .pb-xxl-12 {
    padding-bottom: 3rem !important;
  }
  .pb-xxl-11 {
    padding-bottom: 2.75rem !important;
  }
  .pb-xxl-10 {
    padding-bottom: 2.5rem !important;
  }
  .pb-xxl-9 {
    padding-bottom: 2.25rem !important;
  }
  .pb-xxl-8 {
    padding-bottom: 2rem !important;
  }
  .pb-xxl-7 {
    padding-bottom: 1.75rem !important;
  }
  .pb-xxl-6 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 1.25rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 0.75rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .ps-xxl-20 {
    padding-left: 5rem !important;
  }
  .ps-xxl-19 {
    padding-left: 4.75rem !important;
  }
  .ps-xxl-18 {
    padding-left: 4.5rem !important;
  }
  .ps-xxl-17 {
    padding-left: 4.25rem !important;
  }
  .ps-xxl-16 {
    padding-left: 4rem !important;
  }
  .ps-xxl-15 {
    padding-left: 3.75rem !important;
  }
  .ps-xxl-14 {
    padding-left: 3.5rem !important;
  }
  .ps-xxl-13 {
    padding-left: 3.25rem !important;
  }
  .ps-xxl-12 {
    padding-left: 3rem !important;
  }
  .ps-xxl-11 {
    padding-left: 2.75rem !important;
  }
  .ps-xxl-10 {
    padding-left: 2.5rem !important;
  }
  .ps-xxl-9 {
    padding-left: 2.25rem !important;
  }
  .ps-xxl-8 {
    padding-left: 2rem !important;
  }
  .ps-xxl-7 {
    padding-left: 1.75rem !important;
  }
  .ps-xxl-6 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 1.25rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1rem !important;
  }
  .ps-xxl-3 {
    padding-left: 0.75rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-inline-grid {
    display: inline-grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}
.btn-type {
  display: inline-block;
  width: 100%;
  padding: 0.9375rem 0;
  border: 1px solid #000;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #000;
}
@media (min-width: 1025px) {
  .btn-type {
    width: 11.25rem;
    padding: 1.1875rem 0;
    font-size: 1.125rem;
  }
}
.btn-type.v2 {
  background-color: #000;
  color: #fff;
}
.btn-type2 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6875rem 0.9375rem 0.4375rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 1.25rem;
  background-color: #000;
  color: #fff;
}
@media (min-width: 1025px) {
  .btn-type2 {
    padding: 0.75rem 0.9375rem 0.5rem;
    font-size: 1.125rem;
  }
}

[class^=icon-],
[class*=" icon-"] {
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  font-style: normal;
}

.icon-menu {
  width: 30px;
  height: 30px;
  background-image: url(../images/icons/menu.svg);
}

.icon-close {
  width: 30px;
  height: 30px;
  background-image: url(../images/icons/close.svg);
}

.icon-close-w {
  width: 30px;
  height: 30px;
  background-image: url(../images/icons/close-w.svg);
}

.icon-logo {
  width: 134px;
  height: 134px;
  background-image: url(../images/icons/logo.png);
}

.icon-angle-down {
  width: 20px;
  height: 20px;
  background-image: url(../images/icons/angle-down.svg);
}

.icon-angle-down-24 {
  width: 24px;
  height: 24px;
  background-image: url(../images/icons/angle-down-24.svg);
}

.icon-confirm {
  width: 20px;
  height: 20px;
  background-image: url(../images/icons/confirm.png);
}

.icon-chatbot-pc {
  width: 75px;
  height: 75px;
  background-image: url(../images/icons/chatbot-pc.svg);
}

.icon-chatbot-mo {
  width: 50px;
  height: 50px;
  background-image: url(../images/icons/chatbot-mo.svg);
}

.icon-search {
  width: 20px;
  height: 20px;
  background-image: url(../images/icons/search.svg);
}

.icon-search-w {
  width: 15px;
  height: 15px;
  background-image: url(../images/icons/search-w.svg);
}

.icon-circle-check {
  width: 16px;
  height: 16px;
  background-image: url(../images/icons/circle-check.svg);
}

.icon-process {
  width: 18px;
  height: 18px;
  background-image: url(../images/icons/process.svg);
}

.icon-process-done {
  width: 18px;
  height: 18px;
  background-image: url(../images/icons/process-done.svg);
}

.icon-bubble-arrow {
  width: 8px;
  height: 8px;
  background-image: url(../images/icons/bubble-arrow.svg);
}

.icon-chatbot {
  width: 55px;
  height: 55px;
  background-image: url(../images/icons/chatbot.svg);
}

.pop-layer {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}
.pop-layer .pop-header {
  position: relative;
}
.pop-layer .pop-header .btn-close {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.9375rem;
}
@media (min-width: 1025px) {
  .pop-layer .pop-header .btn-close {
    right: 1.125rem;
  }
}
.pop-dim {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.pop-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  background-color: #fff;
  border-radius: 0;
  z-index: 2;
}
.pop-wrap:scope {
  background-color: #000;
}
.pop-close {
  position: absolute;
  top: 10px;
  right: 10px;
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  background: none;
  cursor: pointer;
}

.pop-alert .pop-wrap {
  max-width: 360px;
}

.pop-confirm .pop-wrap {
  width: calc(100% - 1.25rem);
  margin: auto;
}
@media (min-width: 768px) {
  .pop-confirm .pop-wrap {
    max-width: 34.375rem;
  }
}
@media (min-width: 1025px) {
  .pop-confirm .pop-wrap {
    max-width: 600px;
  }
}
.pop-confirm .pop-wrap .pop-header {
  padding: 1.25rem;
  border-bottom: 1px solid #000;
}
.pop-confirm .pop-wrap .pop-header h2 {
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
}
@media (min-width: 1025px) {
  .pop-confirm .pop-wrap .pop-header h2 {
    font-size: 1.375rem;
  }
}
.pop-confirm .pop-wrap .pop-content {
  padding: 1.875rem 0.625rem;
}
.pop-confirm .pop-wrap .pop-content p {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 20.72px;
  text-align: center;
}
.pop-confirm .pop-wrap .pop-content .info-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 1.25rem;
}
.pop-confirm .pop-wrap .pop-content .info-wrap dl {
  display: flex;
  gap: 2rem;
  min-width: 15.9375rem;
  font-size: 0.8125rem;
}
.pop-confirm .pop-wrap .pop-content .info-wrap dl + dl {
  margin-top: 0.625rem;
}
.pop-confirm .pop-wrap .pop-content .info-wrap dl dt {
  min-width: 5.4375rem;
  font-weight: 300;
}
.pop-confirm .pop-wrap .pop-content .info-wrap dl dd {
  font-weight: 500;
}
.pop-confirm .pop-wrap .pop-content .tracking-box-wrap {
  padding: 1.25rem 1.25rem 0.625rem;
}
.pop-confirm .pop-wrap .pop-content .tracking-box-wrap.row {
  padding: 1.25rem 1.25rem;
}
.pop-confirm .pop-wrap .pop-content .tracking-box-wrap.row ul {
  gap: 1rem;
}
.pop-confirm .pop-wrap .pop-content .tracking-box-wrap.row ul li {
  width: auto;
  flex: 1 0;
}
.pop-confirm .pop-wrap .pop-content .tracking-box-wrap.row ul li:first-child, .pop-confirm .pop-wrap .pop-content .tracking-box-wrap.row ul li:nth-child(2) {
  padding-bottom: 0;
  border-bottom: none;
}
.pop-confirm .pop-wrap .pop-content .tracking-box-wrap.row ul li:nth-child(3), .pop-confirm .pop-wrap .pop-content .tracking-box-wrap.row ul li:last-child {
  padding-top: 0;
}
.pop-confirm .pop-wrap .pop-content .tracking-box-wrap.row ul li + li {
  padding-left: 0.625rem;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.pop-confirm .pop-wrap .pop-content .tracking-box-wrap.row ul li a {
  text-decoration: underline;
}
.pop-confirm .pop-wrap .pop-content .tracking-box-wrap.row ul li dd {
  white-space: nowrap;
}
.pop-confirm .pop-wrap .pop-content .tracking-box-wrap ul {
  display: flex;
  flex-wrap: wrap;
  padding: 1.25rem;
  background-color: #F5F3EE;
}
.pop-confirm .pop-wrap .pop-content .tracking-box-wrap ul li {
  width: 50%;
}
.pop-confirm .pop-wrap .pop-content .tracking-box-wrap ul li:first-child, .pop-confirm .pop-wrap .pop-content .tracking-box-wrap ul li:nth-child(2) {
  padding-bottom: 0.625rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.pop-confirm .pop-wrap .pop-content .tracking-box-wrap ul li:nth-child(even) {
  padding-left: 1.25rem;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.pop-confirm .pop-wrap .pop-content .tracking-box-wrap ul li:nth-child(3), .pop-confirm .pop-wrap .pop-content .tracking-box-wrap ul li:last-child {
  padding-top: 0.625rem;
}
.pop-confirm .pop-wrap .pop-content .tracking-box-wrap ul li dl {
  font-family: "Noto Sans JP", "Noto Sans SC", "Noto Sans TC", "NeueHelveticaPro65Medium", "NotoSans", sans-serif;
}
.pop-confirm .pop-wrap .pop-content .tracking-box-wrap ul li dl dt {
  font-size: 0.625rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.4);
}
.pop-confirm .pop-wrap .pop-content .tracking-box-wrap ul li dl dd {
  margin-top: 5px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
}
.pop-confirm .pop-wrap .pop-content .notice-list {
  padding: 0 1.25rem;
}
.pop-confirm .pop-wrap .pop-content .notice-list.v2 li {
  display: block;
  padding-left: 0.625rem;
}
.pop-confirm .pop-wrap .pop-content .notice-list.v2 li::before {
  position: absolute;
  left: 0;
}
.pop-confirm .pop-wrap .pop-content .notice-list li {
  position: relative;
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 300;
  line-height: 1.4;
}
.pop-confirm .pop-wrap .pop-content .notice-list li + li {
  margin-top: 0.3125rem;
}
.pop-confirm .pop-wrap .pop-content .notice-list li::before {
  content: "";
  display: inline-block;
  top: 0.4375rem;
  left: 0;
  width: 0.25rem;
  height: 0.25rem;
  margin-right: 0.4375rem;
  border-radius: 50%;
  background-color: #000;
  vertical-align: middle;
}
.pop-confirm .pop-wrap .pop-content .charge-wrap {
  margin-top: 1.25rem;
}
.pop-confirm .pop-wrap .pop-content .charge-wrap .radio-box .radio-box-type + .radio-box-type {
  margin-top: 1.25rem;
}
.pop-confirm .pop-wrap .pop-content .charge-wrap .radio-box .radio-box-type.selected label {
  position: relative;
  padding-left: 2.125rem;
}
.pop-confirm .pop-wrap .pop-content .charge-wrap .radio-box .radio-box-type.selected label::before {
  border-color: #000;
}
.pop-confirm .pop-wrap .pop-content .charge-wrap .radio-box .radio-box-type.selected label::after {
  position: absolute;
  content: "";
  width: 0.875rem;
  height: 0.875rem;
  top: 0.3125rem;
  left: 0.3125rem;
  border-radius: 50%;
  background-color: #000;
}
.pop-confirm .pop-wrap .pop-content .charge-wrap .radio-box .radio-box-type input[type=radio] {
  display: none;
}
.pop-confirm .pop-wrap .pop-content .charge-wrap .radio-box .radio-box-type label {
  position: relative;
  padding-left: 2.125rem;
}
.pop-confirm .pop-wrap .pop-content .charge-wrap .radio-box .radio-box-type label::before {
  position: absolute;
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  top: 0;
  left: 0;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.4);
}
.pop-confirm .pop-wrap .pop-content .charge-wrap .select-type {
  display: block;
  margin-top: 0.9375rem;
}
.pop-confirm .pop-wrap .pop-content .charge-wrap .select-type .nice-select {
  justify-content: flex-start;
  width: 100%;
  height: 3rem;
  padding: 0 0.9375rem;
  border: 1px solid #000;
}
.pop-confirm .pop-wrap .pop-content .charge-wrap .select-type .nice-select::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  top: 0.625rem;
  right: 0.625rem;
}
.pop-confirm .pop-wrap .pop-content .charge-wrap .select-type .nice-select .list {
  border-right: 1px solid #000;
}
.pop-confirm .pop-wrap .pop-content .charge-wrap .select-type .nice-select .list .option {
  justify-content: flex-start;
  height: 3rem;
  padding: 0.9375rem;
}
.pop-confirm .pop-wrap .pop-content .charge-wrap .select-type .nice-select .list .option:first-child {
  display: none;
}
.pop-confirm .pop-wrap .pop-content .img-wrap.pickup {
  text-align: center;
}
.pop-confirm .pop-wrap .pop-content .img-wrap.pickup img {
  max-width: 214px;
}
@media (min-width: 1025px) {
  .pop-confirm .pop-wrap .pop-content .img-wrap.pickup img {
    max-width: 420px;
  }
}
@media (min-width: 1025px) {
  .pop-confirm .pop-wrap .pop-content {
    padding: 2.5rem;
  }
  .pop-confirm .pop-wrap .pop-content p {
    font-size: 1rem;
    line-height: 23.68px;
  }
  .pop-confirm .pop-wrap .pop-content .info-wrap {
    margin-top: 1.875rem;
  }
  .pop-confirm .pop-wrap .pop-content .info-wrap dl {
    min-width: 19.0625rem;
    font-size: 1rem;
  }
  .pop-confirm .pop-wrap .pop-content .info-wrap dl dt {
    min-width: 6.875rem;
  }
  .pop-confirm .pop-wrap .pop-content .tracking-box-wrap {
    padding: 1.25rem 0;
  }
  .pop-confirm .pop-wrap .pop-content .tracking-box-wrap.row ul {
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 2.25rem;
  }
  .pop-confirm .pop-wrap .pop-content .tracking-box-wrap.row ul li + li {
    padding-left: 1.875rem;
  }
  .pop-confirm .pop-wrap .pop-content .tracking-box-wrap ul {
    justify-content: space-between;
    padding: 1.875rem 2.5rem;
  }
  .pop-confirm .pop-wrap .pop-content .tracking-box-wrap ul li {
    width: auto;
  }
  .pop-confirm .pop-wrap .pop-content .tracking-box-wrap ul li:first-child, .pop-confirm .pop-wrap .pop-content .tracking-box-wrap ul li:nth-child(2) {
    padding-bottom: 0;
    border-bottom: none;
  }
  .pop-confirm .pop-wrap .pop-content .tracking-box-wrap ul li:nth-child(3), .pop-confirm .pop-wrap .pop-content .tracking-box-wrap ul li:last-child {
    padding-top: 0;
  }
  .pop-confirm .pop-wrap .pop-content .tracking-box-wrap ul li + li {
    padding-left: 1.0625rem;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
  }
  .pop-confirm .pop-wrap .pop-content .tracking-box-wrap ul li dl dt {
    height: unset;
    font-size: 0.8125rem;
  }
  .pop-confirm .pop-wrap .pop-content .tracking-box-wrap ul li dl dd {
    margin-top: 0.4375rem;
    font-size: 1.375rem;
    line-height: 1;
  }
  .pop-confirm .pop-wrap .pop-content .notice-list {
    padding: 0;
  }
  .pop-confirm .pop-wrap .pop-content .notice-list li {
    font-size: 0.875rem;
  }
  .pop-confirm .pop-wrap .pop-content .notice-list li + li {
    margin-top: 0.5rem;
  }
}
.pop-confirm .pop-wrap .pop-footer {
  padding-bottom: 1.25rem;
}
.pop-confirm .pop-wrap .pop-footer .btn-wrap {
  max-width: 9.375rem;
  margin: auto;
}
.pop-confirm .pop-wrap .pop-footer .btn-wrap.row {
  display: flex;
  gap: 0.625rem;
  max-width: 100%;
  padding: 0 1.875rem;
}
@media (min-width: 1025px) {
  .pop-confirm .pop-wrap .pop-footer {
    padding-bottom: 2.5rem;
  }
  .pop-confirm .pop-wrap .pop-footer .btn-wrap {
    max-width: unset;
    text-align: center;
  }
  .pop-confirm .pop-wrap .pop-footer .btn-wrap.row {
    justify-content: center;
  }
}
.pop-confirm .video-wrap {
  position: relative;
}
.pop-confirm .video-wrap video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pop-confirm .video-wrap::after {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}

.pop-full .pop-wrap {
  height: 100%;
}
.pop-full .pop-wrap .btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 5;
}
.pop-full .pop-wrap .pop-content .video-wrap {
  background-color: transparent;
}
.pop-full .pop-wrap .pop-content .video-wrap video {
  width: 100%;
}
.pop-full .pop-wrap .pop-content .img-wrap {
  text-align: center;
}
.pop-full .pop-wrap .pop-content .img-wrap img {
  height: 100vh;
  object-fit: contain;
}

.pop-download .pop-wrap {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}
@media (min-width: 768px) {
  .pop-download .pop-wrap {
    height: unset;
  }
  .pop-download .pop-wrap .pop-content .img-wrap {
    text-align: center;
  }
  .pop-download .pop-wrap .pop-content .img-wrap img {
    max-width: 420px;
  }
  .pop-download .pop-wrap .pop-footer .btn-wrap {
    justify-content: center;
  }
  .pop-download .pop-wrap .pop-footer .btn-wrap .btn-type {
    width: 130px;
  }
}
@media (min-width: 1025px) {
  .pop-download .pop-wrap {
    max-width: 1000px;
    height: unset;
  }
  .pop-download .pop-wrap .pop-content {
    padding: 0;
  }
  .pop-download .pop-wrap .pop-content .img-wrap {
    padding: 1.875rem;
  }
  .pop-download .pop-wrap .pop-content .img-wrap img {
    max-width: 100%;
  }
  .pop-download .pop-wrap .pop-footer .btn-wrap .btn-type {
    width: 11.25rem;
  }
}

.pop-video .pop-dim {
  background-color: rgb(0, 0, 0);
}
.pop-video .pop-wrap {
  background-color: transparent;
}
.pop-video .pop-wrap .pop-content {
  display: flex;
  align-items: center;
  height: 100vh;
}
@media (min-width: 1025px) {
  .pop-video .pop-wrap .pop-content {
    height: unset;
  }
}
.pop-video .pop-wrap .pop-content .video-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.pop-video .pop-wrap .pop-content .video-wrap.full-screen {
  margin-top: min(5.2083333333vw, 6.25rem);
}

.pop-waybill .pop-wrap .pop-content {
  padding: 1.875rem;
  max-height: 70vh;
  overflow: auto;
}
.pop-waybill .pop-wrap .pop-content .input-wrap {
  margin-top: 1.25rem;
}
.pop-waybill .pop-wrap .pop-content .input-wrap input {
  width: 100%;
  padding-bottom: 0.625rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  border: none;
  border-bottom: 1px solid #000;
  border-radius: 0;
}
.pop-waybill .pop-wrap .pop-content .input-wrap input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
@media (min-width: 1025px) {
  .pop-waybill .pop-wrap .pop-content .input-wrap {
    margin-top: 1.875rem;
    text-align: center;
  }
  .pop-waybill .pop-wrap .pop-content .input-wrap input {
    max-width: 28.125rem;
    padding-bottom: 0.9375rem;
    font-size: 1.25rem;
    line-height: 29.6px;
  }
}
.pop-waybill .pop-wrap .pop-content .download-wrap {
  position: relative;
  max-width: 17.5rem;
  margin: auto;
}
.pop-waybill .pop-wrap .pop-content .download-wrap .user-name {
  position: absolute;
  min-width: 10.9375rem;
  top: 7.8125rem;
  left: 0.6875rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.2;
  max-width: 60%;
  word-break: break-all;
}
.pop-waybill .pop-wrap .pop-content .download-wrap .ship-to {
  position: absolute;
  top: 39.325843%;
  left: 4.5%;
  font-size: 0.5625rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #231916;
  font-family: "Noto Sans JP", "Noto Sans SC", "Noto Sans TC", "NeueHelveticaPro65Medium", "NotoSans", sans-serif;
}
@media (min-width: 1025px) {
  .pop-waybill .pop-wrap .pop-content .download-wrap {
    max-width: 25rem;
  }
  .pop-waybill .pop-wrap .pop-content .download-wrap .user-name {
    min-width: 12.5rem;
    top: 11.25rem;
    left: 0.9375rem;
    font-size: 1rem;
    line-height: 1.2;
    max-width: 55%;
  }
  .pop-waybill .pop-wrap .pop-content .download-wrap .ship-to {
    font-size: 0.6875rem;
  }
}
.pop-waybill .pop-wrap .pop-content .msg-wrap {
  font-size: 0.8125rem;
  font-weight: 300;
  max-width: 15.625rem;
  margin: 1.5384615385em auto 0;
  text-align: center;
}
@media (min-width: 1025px) {
  .pop-waybill .pop-wrap .pop-content .msg-wrap {
    font-size: 0.875rem;
    max-width: 25rem;
    margin: 1.8571428571em auto 0;
  }
}

.pop-modal .pop-wrap {
  max-width: 600px;
}
.pop-modal.pop-modal--sm .pop-wrap {
  max-width: 360px;
}

.pop-modal.pop-modal--md .pop-wrap {
  max-width: 845px;
}

.pop-modal.pop-modal--lg .pop-wrap {
  max-width: 1200px;
}

.pop-cookie {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
}
.pop-cookie.opened {
  display: flex;
}
.pop-cookie.closed {
  display: none;
}
.pop-cookie .pop-wrap {
  max-width: 800px;
  height: 100%;
  margin: auto;
}
@media (min-width: 1025px) {
  .pop-cookie .pop-wrap {
    height: calc(100% - 200px);
  }
}
.pop-cookie .pop-wrap .pop-body .pop-title-1 {
  padding: 1.25rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
  border-bottom: 1px solid #000;
}
@media (min-width: 1025px) {
  .pop-cookie .pop-wrap .pop-body .pop-title-1 {
    font-size: 1.375rem;
  }
}
.pop-cookie .pop-wrap .pop-body .scroll-wrap {
  height: calc(100vh - 12.5rem);
  padding: 1.875rem 1.25rem 3.75rem;
  overflow-y: auto;
}
@media (min-width: 1025px) {
  .pop-cookie .pop-wrap .pop-body .scroll-wrap {
    padding: 2.5rem 4.0625rem 7.5rem;
    height: calc(100vh - 266px);
  }
}
.pop-cookie .pop-wrap .pop-body .scroll-wrap p {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 20.72px;
  text-align: center;
}
.pop-cookie .pop-wrap .pop-body .scroll-wrap .cookie-check-list {
  margin-top: 1.875rem;
}
.pop-cookie .pop-wrap .pop-body .scroll-wrap .cookie-check-list .item {
  position: relative;
  margin-top: 1.25rem;
}
@media (min-width: 1025px) {
  .pop-cookie .pop-wrap .pop-body .scroll-wrap .cookie-check-list .item {
    margin-top: 1.875rem;
  }
}
.pop-cookie .pop-wrap .pop-body .scroll-wrap .cookie-check-list .item .cookie-check-title {
  font-size: 0.875rem;
  font-weight: 500;
}
.pop-cookie .pop-wrap .pop-body .scroll-wrap .cookie-check-list .item .cookie-check-text {
  margin-top: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 300;
  line-height: 19.24px;
}
@media (min-width: 1025px) {
  .pop-cookie .pop-wrap .pop-body .scroll-wrap .cookie-check-list .item .cookie-check-text {
    margin-top: 0.9375rem;
    line-height: 20.72px;
  }
}
.pop-cookie .pop-wrap .pop-body .scroll-wrap .cookie-check-list .item .btn-switch {
  position: absolute;
  display: inline-flex;
  align-items: center;
  top: 0;
  right: 0;
  cursor: pointer;
}
.pop-cookie .pop-wrap .pop-body .scroll-wrap .cookie-check-list .item .btn-switch [type=checkbox] {
  position: relative;
  appearance: none;
  width: 2.8125rem;
  height: 1.3125rem;
}
.pop-cookie .pop-wrap .pop-body .scroll-wrap .cookie-check-list .item .btn-switch [type=checkbox]::before {
  content: "";
  position: absolute;
  left: 0;
  width: 1.3125rem;
  height: 1.3125rem;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.3);
  transition: left 250ms linear;
  z-index: 5;
  cursor: pointer;
}
.pop-cookie .pop-wrap .pop-body .scroll-wrap .cookie-check-list .item .btn-switch [type=checkbox]::after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.3);
}
.pop-cookie .pop-wrap .pop-body .scroll-wrap .cookie-check-list .item .btn-switch [type=checkbox]:checked::before {
  background-color: #000;
  left: 1.5rem;
}
.pop-cookie .pop-wrap .pop-body .scroll-wrap .cookie-check-list .item .btn-switch [type=checkbox]:checked::after {
  background-color: rgb(0, 0, 0);
}
.pop-cookie .pop-wrap .pop-body .scroll-wrap .cookie-check-list .item .btn-switch [type=checkbox]:disabled {
  background-color: #fff;
  border-color: lightgray;
  opacity: 0.7;
  cursor: not-allowed;
}
.pop-cookie .pop-wrap .pop-body .scroll-wrap .cookie-check-list .item .btn-switch [type=checkbox]:disabled::before {
  background-color: lightgray;
}
.pop-cookie .pop-wrap .pop-body .scroll-wrap .cookie-check-list .item .btn-switch [type=checkbox]:disabled + span {
  opacity: 0.7;
  cursor: not-allowed;
}
.pop-cookie .pop-wrap .pop-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 2.5rem 1.25rem;
  z-index: 90;
  background-color: #fff;
}
@media (min-width: 1025px) {
  .pop-cookie .pop-wrap .pop-footer {
    padding: 2.5rem 4.0625rem;
  }
}
.pop-cookie .pop-wrap .pop-footer .btn-wrap {
  display: flex;
  gap: 0.625rem;
}
@media (min-width: 1025px) {
  .pop-cookie .pop-wrap .pop-footer .btn-wrap {
    justify-content: center;
  }
  .pop-cookie .pop-wrap .pop-footer .btn-wrap .btn-type {
    width: 11.25rem;
  }
}

@media (min-width: 1025px) {
  .pop-deliver .pop-wrap {
    max-width: 57.5rem;
  }
  .pop-deliver .pop-wrap .pop-content {
    padding: 2.5rem 3.75rem;
  }
}

.pop-chatbot .pop-wrap {
  height: 100%;
  overflow-y: auto;
}
.pop-chatbot .pop-wrap .btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 5;
}
.pop-chatbot .pop-wrap .pop-header {
  position: fixed;
  width: 100%;
  height: 3.75rem;
  left: 0;
  background-color: #fff;
}
.pop-chatbot .pop-wrap .pop-content {
  padding: 0 1.25rem;
}
.pop-chatbot .pop-wrap .pop-content.scrollable {
  height: calc(100% - 3.75rem);
  margin-top: 3.75rem;
  padding: 0;
}
.pop-chatbot .pop-wrap .pop-content .chatbot-title-wrap {
  margin-top: 8.75rem;
  text-align: center;
}
.pop-chatbot .pop-wrap .pop-content .chatbot-title-wrap.v2 {
  margin-top: 4.375rem;
}
.pop-chatbot .pop-wrap .pop-content .chatbot-title-wrap.v2 .title {
  margin: 0 0 0.3125rem;
  font-size: 1.625rem;
  font-weight: bold;
  line-height: 38.48px;
}
.pop-chatbot .pop-wrap .pop-content .chatbot-title-wrap.v2 p {
  font-size: 1.125rem;
  line-height: 26.64px;
}
.pop-chatbot .pop-wrap .pop-content .chatbot-title-wrap .title {
  margin: 1.25rem 0 0.4375rem;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 35.52px;
}
.pop-chatbot .pop-wrap .pop-content .chatbot-title-wrap p {
  font-size: 0.9375rem;
  line-height: 17.9px;
}
.pop-chatbot .pop-wrap .pop-content .chatbot-menu-wrap {
  margin-top: 2.5rem;
  padding-bottom: 1.25rem;
}
.pop-chatbot .pop-wrap .pop-content .chatbot-menu-wrap ul li + li {
  margin-top: 0.3125rem;
}
.pop-chatbot .pop-wrap .pop-content .chatbot-menu-wrap ul li a {
  display: block;
  padding: 20px 0;
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
  line-height: 26.64px;
  color: #fff;
  background-color: #000;
}
.pop-chatbot .pop-wrap .pop-content .chatbot-question-wrap {
  margin-top: 1.875rem;
  padding-bottom: 5rem;
}
.pop-chatbot .pop-wrap .pop-content .chatbot-question-wrap ul li + li {
  margin-top: 0.625rem;
}
.pop-chatbot .pop-wrap .pop-content .chatbot-question-wrap ul li a {
  position: relative;
  display: block;
  padding: 1.25rem;
  background-color: #000;
}
.pop-chatbot .pop-wrap .pop-content .chatbot-question-wrap ul li a p {
  width: 80%;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 17.09px;
  color: #fff;
}
.pop-chatbot .pop-wrap .pop-content .chatbot-question-wrap ul li i {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translate(0, -50%);
}
.pop-chatbot .pop-wrap .pop-content .chatbot-question-wrap .title-list p,
.pop-chatbot .pop-wrap .pop-content .chatbot-question-wrap .title-list a {
  word-break: keep-all;
}
.pop-chatbot .pop-wrap .pop-content .chat-list-wrap {
  height: calc(100% - 130px);
  overflow-y: auto;
  padding: 0 1.25rem;
}
.pop-chatbot .pop-wrap .pop-content .chat-list-wrap .chatbot-question-wrap {
  margin-bottom: 30px;
  padding: 0;
}
.pop-chatbot .pop-wrap .pop-content .chat-list-wrap .chat-list .chat-bubble {
  position: relative;
  right: 0;
  bottom: 0;
  width: 80%;
  margin-left: auto;
  padding: 1.25rem;
}
.pop-chatbot .pop-wrap .pop-content .chat-list-wrap .chat-list .chat-bubble.chatbot {
  margin-left: unset;
  border: none;
  background-color: #F5F3EE;
}
.pop-chatbot .pop-wrap .pop-content .chat-list-wrap .chat-list .chat-bubble.chatbot::after, .pop-chatbot .pop-wrap .pop-content .chat-list-wrap .chat-list .chat-bubble.chatbot::before {
  content: "";
  display: block;
  position: absolute;
  transform: rotate(45deg) scaleX(-1);
  width: 0;
  height: 0;
  border-style: solid;
}
.pop-chatbot .pop-wrap .pop-content .chat-list-wrap .chat-list .chat-bubble.chatbot::after {
  bottom: -7px;
  border-color: transparent transparent transparent #F5F3EE;
  border-width: 7px;
  left: 10px;
}
.pop-chatbot .pop-wrap .pop-content .chat-list-wrap .chat-list .chat-bubble.chatbot::before {
  bottom: -9px;
  left: 5px;
  border-color: transparent transparent transparent #F5F3EE;
  border-width: 9px;
}
.pop-chatbot .pop-wrap .pop-content .chat-list-wrap .chat-list .chat-bubble.chatbot p {
  font-size: 0.75rem;
  font-weight: 300;
}
.pop-chatbot .pop-wrap .pop-content .chat-list-wrap .chat-list .chat-bubble.chatbot .triangle {
  display: none;
}
.pop-chatbot .pop-wrap .pop-content .chat-list-wrap .chat-list .chat-bubble + .chat-bubble {
  margin-top: 20px;
}
.pop-chatbot .pop-wrap .pop-content .chat-list-wrap .chat-list .chat-bubble p {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 14.65px;
  /* word-break: keep-all; */
}
.pop-chatbot .pop-wrap .pop-content .chat-list-wrap .btn-wrap {
  position: fixed;
}
.pop-chatbot .pop-wrap .pop-content .btn-wrap {
  position: sticky;
  bottom: 2.5rem;
  left: 0;
  width: 100%;
  text-align: center;
}
.pop-chatbot .pop-wrap .pop-content .btn-wrap .btn-category {
  padding: 0.625rem 1.25rem;
  font-size: 0.75rem;
  line-height: 17.76px;
  border: 1px solid #000;
  border-radius: 2.75rem;
}
.pop-chatbot#pop_chatbot .pop-wrap {
  overflow-y: auto;
}
@media (min-width: 1025px) {
  .pop-chatbot {
    position: absolute;
    top: 0;
    right: 0;
    transform: translateY(calc(-100% - 5.9375rem));
  }
  .pop-chatbot .pop-wrap {
    width: 18.75rem;
    height: 69vh;
    top: unset;
    right: 0;
    bottom: 0;
    left: unset;
    border: 1px solid #000;
    transform: none;
  }
  .pop-chatbot .pop-wrap .pop-header {
    position: absolute;
  }
  .pop-chatbot .pop-wrap .pop-content .chatbot-title-wrap.v2 .title {
    margin-bottom: 0.3125rem;
    font-size: 1.375rem;
    line-height: 32.07px;
  }
  .pop-chatbot .pop-wrap .pop-content .chatbot-title-wrap.v2 p {
    font-size: 0.9375rem;
    line-height: 22.2px;
  }
  .pop-chatbot .pop-wrap .pop-content .chatbot-title-wrap i {
    width: 2.8125rem;
    height: 2.8125rem;
  }
  .pop-chatbot .pop-wrap .pop-content .chatbot-title-wrap .title {
    margin: 0.9375rem 0 0.3125rem;
    font-size: 1.25rem;
    line-height: 29.6px;
  }
  .pop-chatbot .pop-wrap .pop-content .chatbot-title-wrap p {
    font-size: 0.8125rem;
    line-height: 20px;
  }
  .pop-chatbot .pop-wrap .pop-content .chatbot-menu-wrap {
    padding-bottom: 1.25rem;
  }
  .pop-chatbot .pop-wrap .pop-content .chatbot-menu-wrap ul li + li {
    margin-top: 0.3125rem;
  }
  .pop-chatbot .pop-wrap .pop-content .chatbot-menu-wrap ul li a {
    padding: 1.0625rem 0;
    font-size: 0.9375rem;
    line-height: 22.2px;
  }
  .pop-chatbot .pop-wrap .pop-content .chatbot-question-wrap {
    margin-top: 1.5625rem;
  }
  .pop-chatbot .pop-wrap .pop-content .chatbot-question-wrap ul li a {
    padding: 0.9375rem;
  }
  .pop-chatbot .pop-wrap .pop-content .chatbot-question-wrap ul li a p {
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 17.76px;
  }
  .pop-chatbot .pop-wrap .pop-content .btn-wrap {
    position: absolute;
    bottom: 2.0625rem;
  }
  .pop-chatbot .pop-wrap .pop-content .btn-wrap .btn-category {
    padding: 0.5rem 1.0625rem;
    font-size: 0.625rem;
    line-height: 1.6;
  }
  .pop-chatbot .pop-wrap .pop-content .chat-list-wrap .chat-list .chat-bubble {
    padding: 1.0625rem;
  }
  .pop-chatbot .pop-wrap .pop-content .chat-list-wrap .chat-list .chat-bubble p {
    font-size: 0.75rem;
  }
  .pop-chatbot .pop-wrap .pop-content .chat-list-wrap .btn-wrap {
    position: absolute;
  }
}
.pop-chatbot ::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 3px;
}

.zoom-wrap {
  position: relative;
}
.zoom-wrap .zoom-in {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: none;
}
.zoom-wrap.active .zoom-in {
  display: block;
}

.select-type:last-child {
  display: none;
}
.select-type .nice-select {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.75rem;
  border: none;
  font-family: "Noto Sans JP", "Noto Sans SC", "Noto Sans TC", "NeueHelveticaPro65Medium", "NotoSans", sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #000;
  border-radius: 0;
  border-bottom: 1px solid #000;
}
.select-type .nice-select.open::before {
  transform: rotate(-180deg);
}
.select-type .nice-select::before {
  position: absolute;
  content: none;
  width: 1.875rem;
  height: 1.875rem;
  right: 0.9375rem;
  top: 1.4375rem;
  background: url(../images/icons/angle-down.svg) no-repeat;
  background-size: contain;
  transition: all 0.2s linear;
}
@media (min-width: 1025px) {
  .select-type .nice-select {
    width: 8.5rem;
    height: 5rem;
    padding: 0 1.875rem 0 1.5625rem;
    font-size: 1.125rem;
  }
  .select-type .nice-select::before {
    content: "";
  }
  .select-type .nice-select .current {
    padding-right: 0.9375rem;
  }
}
.select-type .nice-select .list {
  max-height: unset;
  top: calc(100% + 9px);
  border-radius: 0;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
}
@media (min-width: 1025px) {
  .select-type .nice-select .list {
    border-right: 1px solid #000;
  }
}
.select-type .nice-select .list .option {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.75rem;
}
@media (min-width: 1025px) {
  .select-type .nice-select .list .option {
    height: 5rem;
  }
}
.select-type .nice-select .list .option:not(:last-child) {
  border-bottom: 1px solid #000;
}
.select-type .nice-select .list .option.selected, .select-type .nice-select .list .option.focus, .select-type .nice-select .list .option:hover {
  color: #fff;
  background-color: #000 !important;
}

.section-main {
  height: 100vh;
}
.section-main .container {
  height: 100%;
  padding: 8.75rem 1.25rem;
}
@media (min-width: 1025px) {
  .section-main .container {
    padding: min(16.1458333333vw, 19.375rem) 1.25rem 0;
  }
}
.section-main .container .tab {
  width: 100%;
  max-width: 586px;
  margin: 5rem auto 0;
}
@media (min-width: 1025px) {
  .section-main .container .tab {
    margin-top: min(11.9791666667vw, 14.375rem);
  }
}
.section-main .container .tab .tab-header {
  display: flex;
  align-items: center;
}
.section-main .container .tab .tab-header .tab-item {
  width: 50%;
  padding: 0.9375rem 0;
  font-size: 0.9375rem;
  font-weight: 500;
  background-color: #fff;
  color: #000;
  text-align: center;
  cursor: pointer;
}
.section-main .container .tab .tab-header .tab-item.active {
  background-color: #000;
  color: white;
}
@media (min-width: 1025px) {
  .section-main .container .tab .tab-header .tab-item {
    padding: 1.0625rem 0;
    font-size: 1.125rem;
  }
}
.section-main .container .tab .tab-body {
  background-color: #000;
}
.section-main .container .tab .tab-body .tab-content .top-wrap {
  padding: 3.125rem 1.875rem;
}
@media (min-width: 1025px) {
  .section-main .container .tab .tab-body .tab-content .top-wrap {
    padding: 3.75rem 4.375rem;
  }
}
.section-main .container .tab .tab-body .tab-content .top-wrap .input-wrap {
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #fff;
}
.section-main .container .tab .tab-body .tab-content .top-wrap .input-wrap + .input-wrap {
  margin-top: 1.25rem;
}
.section-main .container .tab .tab-body .tab-content .top-wrap .input-wrap input {
  width: 100%;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  border: none;
  background-color: #000;
}
.section-main .container .tab .tab-body .tab-content .top-wrap .input-wrap input::placeholder {
  font-family: "Noto Sans JP", "Noto Sans SC", "Noto Sans TC", "NeueHelveticaPro65Medium", "NotoSans", sans-serif;
}
.section-main .container .tab .tab-body .tab-content .top-wrap .input-wrap input:autofill,
.section-main .container .tab .tab-body .tab-content .top-wrap .input-wrap input:autofill:hover,
.section-main .container .tab .tab-body .tab-content .top-wrap .input-wrap input:autofill:focus,
.section-main .container .tab .tab-body .tab-content .top-wrap .input-wrap input:autofill:active {
  -webkit-text-fill-color: #fff;
  -webkit-box-shadow: 0 0 0px 1000px #000 inset;
  box-shadow: 0 0 0px 1000px #000 inset;
  transition: background-color 5000s ease-in-out 0s;
}
@media (min-width: 1025px) {
  .section-main .container .tab .tab-body .tab-content .top-wrap .input-wrap {
    padding-bottom: 0.75rem;
  }
  .section-main .container .tab .tab-body .tab-content .top-wrap .input-wrap + .input-wrap {
    margin-top: 1.875rem;
  }
  .section-main .container .tab .tab-body .tab-content .top-wrap .input-wrap input {
    font-size: 1.5rem;
  }
}
.section-main .container .tab .tab-body .tab-content .top-wrap .btn-wrap {
  margin-top: 1.25rem;
  text-align: right;
}
@media (min-width: 1025px) {
  .section-main .container .tab .tab-body .tab-content .top-wrap .btn-wrap {
    margin-top: 1.5625rem;
  }
}
.section-main .container .tab .tab-body .tab-content .top-wrap .btn-wrap .btn-confirm {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
}
.section-main .container .tab .tab-body .tab-content .top-wrap .btn-wrap .btn-confirm i {
  position: relative;
  top: -2px;
  width: 1.5625rem;
  height: 1.5625rem;
  margin-left: 0.625rem;
}
@media (min-width: 1025px) {
  .section-main .container .tab .tab-body .tab-content .top-wrap .btn-wrap .btn-confirm {
    font-size: 1.1875rem;
  }
  .section-main .container .tab .tab-body .tab-content .top-wrap .btn-wrap .btn-confirm i {
    width: 2.4375rem;
    height: 2.4375rem;
  }
}
.section-main .container .tab .tab-body .tab-content .bottom-wrap .guide {
  padding: 1.25rem 1.875rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
@media (min-width: 1025px) {
  .section-main .container .tab .tab-body .tab-content .bottom-wrap .guide {
    padding: 1.5625rem 4.375rem;
  }
}
.section-main .container .tab .tab-body .tab-content .bottom-wrap .guide p {
  font-size: 0.8125rem;
  font-weight: 300;
  line-height: 24px;
  color: #fff;
}
@media (min-width: 1025px) {
  .section-main .container .tab .tab-body .tab-content .bottom-wrap .guide p {
    font-size: 0.9375rem;
    line-height: 28px;
  }
}
.section-main .container .tab .tab-body .tab-content .bottom-wrap .guide p.find-password a {
  font-size: 0.9375rem;
  font-weight: 300;
}
.section-main .container .tab .tab-body .tab-content .bottom-wrap .guide p a {
  font-weight: 500;
  text-decoration: underline;
}

.emoji-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
  display: none;
}
.emoji-wrap.on {
  display: block;
  opacity: 1;
  visibility: visible;
}
.emoji-wrap.on.end {
  animation: emojiWrapAnimation 1s linear 0s 1 forwards;
}
@keyframes emojiWrapAnimation {
  0% {
    opacity: 1;
    visibility: visible;
  }
  99% {
    opacity: 0;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    display: none;
  }
}
.emoji-wrap .emoji {
  position: absolute;
  font-size: 50px;
  width: 50px;
  height: 50px;
}
@media (min-width: 1025px) {
  .emoji-wrap .emoji {
    font-size: 100px;
    width: 140px;
    height: 120px;
    line-height: 1;
  }
}

.section-my-account .account-wrap {
  display: flex;
  gap: 0.25rem;
}
.section-my-account .account-wrap .img-wrap {
  display: none;
}
@media (min-width: 1025px) {
  .section-my-account .account-wrap .img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 17.25rem;
    background-color: #000;
  }
  .section-my-account .account-wrap .img-wrap img {
    max-width: 8.875rem;
  }
}
.section-my-account .account-wrap .info-list-wrap {
  width: 100%;
  margin-top: 1.25rem;
  border: 1px solid #000;
}
.section-my-account .account-wrap .info-list-wrap .row {
  width: 100%;
  border-bottom: 1px solid #000;
  background-color: #fff;
}
.section-my-account .account-wrap .info-list-wrap .row:last-child {
  border-bottom: none;
}
.section-my-account .account-wrap .info-list-wrap .row .col {
  width: 100%;
}
.section-my-account .account-wrap .info-list-wrap .row .col:first-child.col-6 {
  border-bottom: 1px solid #000;
}
.section-my-account .account-wrap .info-list-wrap .row .col .title {
  padding: 1.25rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
  background-color: #000;
}
.section-my-account .account-wrap .info-list-wrap .row .col dl {
  display: flex;
  align-items: center;
  padding: 0.9375rem 1.25rem;
  background-color: #fff;
}
.section-my-account .account-wrap .info-list-wrap .row .col dl dt {
  width: 7.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.3);
}
.section-my-account .account-wrap .info-list-wrap .row .col dl dd {
  font-size: 1.125rem;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .section-my-account .account-wrap .info-list-wrap {
    width: 100%;
    margin-top: 0;
  }
  .section-my-account .account-wrap .info-list-wrap .row {
    display: flex;
    align-items: center;
  }
  .section-my-account .account-wrap .info-list-wrap .row .col:first-child.col-6 {
    border-right: 1px solid #000;
    border-bottom: none;
  }
  .section-my-account .account-wrap .info-list-wrap .row .col.col-6 {
    width: 50%;
  }
  .section-my-account .account-wrap .info-list-wrap .row .col + .col-6 dl dt {
    min-width: 6.6875rem;
  }
  .section-my-account .account-wrap .info-list-wrap .row .col .title {
    padding: 1.25rem 1.875rem;
    font-size: 1.5rem;
  }
  .section-my-account .account-wrap .info-list-wrap .row .col dl {
    padding: 1.25rem 1.875rem;
  }
  .section-my-account .account-wrap .info-list-wrap .row .col dl dt {
    width: unset;
    min-width: 3.75rem;
    margin-right: 2.5rem;
    font-size: 1rem;
  }
  .section-my-account .account-wrap .info-list-wrap .row .col dl dd {
    font-weight: 1.5rem;
  }
}
.section-my-account .coupon-wrap .coupon-content {
  padding: 2.5rem 1.25rem;
  background-color: #fff;
  text-align: center;
}
@media (min-width: 1025px) {
  .section-my-account .coupon-wrap .coupon-content {
    padding: 3.75rem 1.25rem;
  }
  .section-my-account .coupon-wrap .coupon-content.no-coupon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 25.4375rem;
  }
}
.section-my-account .coupon-wrap .coupon-content .img-wrap img {
  width: 100%;
  max-width: 25rem;
  margin: auto;
}
@media (min-width: 1025px) {
  .section-my-account .coupon-wrap .coupon-content .img-wrap img {
    max-width: 33.75rem;
  }
}
.section-my-account .coupon-wrap .coupon-content .txt {
  position: relative;
  display: inline-block;
  margin-top: 0.9375rem;
  padding-left: 0.625rem;
  font-size: 0.8125rem;
}
@media (min-width: 1025px) {
  .section-my-account .coupon-wrap .coupon-content .txt {
    margin-top: 1.875rem;
    font-size: 0.9375rem;
  }
}
.section-my-account .coupon-wrap .coupon-content .txt::after {
  position: absolute;
  content: "";
  width: 0.25rem;
  height: 0.25rem;
  top: 5px;
  left: 0;
  border-radius: 50%;
  background-color: #000;
}
.section-my-account .coupon-wrap .coupon-content .no-data .img-wrap img {
  width: 3.75rem;
  height: 3.75rem;
}
.section-my-account .coupon-wrap .coupon-content .no-data p {
  margin-top: 0.9375rem;
  font-size: 0.8125rem;
}
@media (min-width: 1025px) {
  .section-my-account .coupon-wrap .coupon-content .no-data .img-wrap img {
    width: 6.25rem;
    height: 6.25rem;
  }
  .section-my-account .coupon-wrap .coupon-content .no-data p {
    margin-top: 1.25rem;
    font-size: 0.9375rem;
  }
}
.section-my-account .tab-wrap {
  padding-top: 0.9375rem;
}
.section-my-account .tab-wrap .tab .tab-header {
  display: flex;
  width: 100%;
}
.section-my-account .tab-wrap .tab .tab-header .tab-item {
  width: 50%;
  padding-bottom: 0.625rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  border-bottom: 3px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
@media (min-width: 1025px) {
  .section-my-account .tab-wrap .tab .tab-header .tab-item {
    padding-bottom: 0.9375rem;
    font-size: 1.5rem;
    border-width: 0.3125rem;
  }
}
.section-my-account .tab-wrap .tab .tab-header .tab-item.active {
  border-color: #000;
}
.section-my-account .tab-wrap .tab .tab-content {
  margin-top: 1.25rem;
}
@media (min-width: 1025px) {
  .section-my-account .tab-wrap .tab .tab-content {
    margin-top: 2.5rem;
  }
}
@media (min-width: 1025px) {
  .section-my-account .tab-wrap .tab .tab-content .search-box-wrap {
    margin-top: 3.75rem;
  }
}
.section-my-account .tab-wrap .tab .tab-content .search-box-wrap .search-wrap {
  display: flex;
  align-items: flex-end;
}
.section-my-account .tab-wrap .tab .tab-content .search-box-wrap .search-wrap .select-type .nice-select {
  justify-content: flex-start;
  width: 6.25rem;
  height: 2.625rem;
  padding: 0.5625rem 0 0.75rem;
  font-size: 0.875rem;
  background-color: transparent;
}
.section-my-account .tab-wrap .tab .tab-content .search-box-wrap .search-wrap .select-type .nice-select::before {
  content: "";
  top: 5px;
  right: 0;
  width: 1.5rem;
  height: 1.5rem;
}
@media (min-width: 1025px) {
  .section-my-account .tab-wrap .tab .tab-content .search-box-wrap .search-wrap .select-type .nice-select {
    width: 17.375rem;
    height: 3.75rem;
    padding: 0.9375rem 0.625rem 0.9375rem 1.25rem;
    font-size: 1.25rem;
  }
  .section-my-account .tab-wrap .tab .tab-content .search-box-wrap .search-wrap .select-type .nice-select::before {
    width: 1.75rem;
    height: 1.75rem;
    top: 16px;
  }
}
.section-my-account .tab-wrap .tab .tab-content .search-box-wrap .search-wrap .select-type .nice-select .list .option {
  justify-content: flex-start;
  height: 3.1875rem;
  padding: 0.9375rem 0.625rem;
}
@media (min-width: 1025px) {
  .section-my-account .tab-wrap .tab .tab-content .search-box-wrap .search-wrap .select-type .nice-select .list .option {
    height: 3.75rem;
    padding: 0.9375rem 1.25rem;
  }
}
.section-my-account .tab-wrap .tab .tab-content .search-box-wrap .search-wrap .input-wrap {
  position: relative;
  display: flex;
  width: 100%;
  margin-left: 10px;
}
.section-my-account .tab-wrap .tab .tab-content .search-box-wrap .search-wrap .input-wrap input {
  width: 100%;
  padding: 0 1.375rem 0 0;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 3em;
  border: none;
  border-bottom: 1px solid #000;
  background-color: transparent;
}
@media (min-width: 1025px) {
  .section-my-account .tab-wrap .tab .tab-content .search-box-wrap .search-wrap .input-wrap input {
    padding: 0 1.25rem;
    font-size: 1.25rem;
  }
}
.section-my-account .tab-wrap .tab .tab-content .search-box-wrap .search-wrap .input-wrap input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.section-my-account .tab-wrap .tab .tab-content .search-box-wrap .search-wrap .input-wrap button {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media (min-width: 1025px) {
  .section-my-account .tab-wrap .tab .tab-content .search-box-wrap .search-wrap .input-wrap button i {
    width: 2rem;
    height: 2rem;
  }
}
.section-my-account .tab-wrap .tab .tab-content .search-box-wrap .category-wrap {
  margin: 0.9375rem 0 1.25rem;
  padding-right: 1.25rem;
  overflow: hidden;
  padding-bottom: 2px;
}
@media (min-width: 1025px) {
  .section-my-account .tab-wrap .tab .tab-content .search-box-wrap .category-wrap {
    margin: 1.875rem 0 2.5rem;
  }
}
.section-my-account .tab-wrap .tab .tab-content .search-box-wrap .category-wrap .category-list {
  display: flex;
  gap: 3px;
}
.section-my-account .tab-wrap .tab .tab-content .search-box-wrap .category-wrap .category-list .chk-box {
  display: flex;
  min-height: 35px;
}
.section-my-account .tab-wrap .tab .tab-content .search-box-wrap .category-wrap .category-list .chk-box input[type=checkbox] {
  display: none;
}
.section-my-account .tab-wrap .tab .tab-content .search-box-wrap .category-wrap .category-list .chk-box.selected .checkbox {
  font-weight: 700;
  background-color: #fff;
  border-color: #000;
}
.section-my-account .tab-wrap .tab .tab-content .search-box-wrap .category-wrap .category-list .chk-box .checkbox {
  width: auto;
  padding: 0.625rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 18.2px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 1.25rem;
  cursor: pointer;
  white-space: nowrap;
}
@media (min-width: 1025px) {
  .section-my-account .tab-wrap .tab .tab-content .search-box-wrap .category-wrap .category-list {
    gap: 0.625rem;
  }
  .section-my-account .tab-wrap .tab .tab-content .search-box-wrap .category-wrap .category-list .chk-box {
    min-height: 50px;
  }
  .section-my-account .tab-wrap .tab .tab-content .search-box-wrap .category-wrap .category-list .chk-box .checkbox {
    width: auto;
    padding: 0.75rem 1.875rem;
    font-size: 0.9375rem;
    line-height: 22.2px;
    border-radius: 2.375rem;
  }
}
.section-my-account .tab-wrap .tab .tab-content .board-wrap .board-header {
  padding: 1.25rem;
  background-color: #000;
}
.section-my-account .tab-wrap .tab .tab-content .board-wrap .board-header h3 {
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
.section-my-account .tab-wrap .tab .tab-content .board-wrap .board-header h3 .count {
  position: relative;
  padding-left: 1.25rem;
  font-family: "RobotoMono", "NotoSans", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
}
.section-my-account .tab-wrap .tab .tab-content .board-wrap .board-header h3 .count::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 1rem;
  top: 6px;
  left: 10px;
  background-color: #c8c8c8;
  opacity: 0.4;
}
.section-my-account .tab-wrap .tab .tab-content .board-wrap .board-header h3 .count .unit {
  font-family: "Noto Sans JP", "Noto Sans SC", "Noto Sans TC", "NeueHelveticaPro65Medium", "NotoSans", sans-serif;
  font-size: 0.875rem;
}
.section-my-account .tab-wrap .tab .tab-content .board-wrap .board-content .accordion-wrap {
  background-color: #fff;
  border: 1px solid #000;
}
.section-my-account .tab-wrap .tab .tab-content .board-wrap .board-content .accordion-wrap ul li + li {
  border-top: 1px solid #000;
}
.section-my-account .tab-wrap .tab .tab-content .board-wrap .board-content .accordion-wrap ul li.active .accordion-title .state i {
  transform: rotate(-180deg);
}
.section-my-account .tab-wrap .tab .tab-content .board-wrap .board-content .accordion-wrap ul li .accordion-title {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 0.9375rem 1.25rem;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .section-my-account .tab-wrap .tab .tab-content .board-wrap .board-content .accordion-wrap ul li .accordion-title {
    padding: 1.875rem 5rem;
  }
}
.section-my-account .tab-wrap .tab .tab-content .board-wrap .board-content .accordion-wrap ul li .accordion-title .title-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.625rem 0;
  max-width: 90%;
  font-size: 0.875rem;
  word-break: keep-all;
}
@media (min-width: 1025px) {
  .section-my-account .tab-wrap .tab .tab-content .board-wrap .board-content .accordion-wrap ul li .accordion-title .title-wrap {
    flex-direction: row;
    gap: 0 3.125rem;
    font-size: 1.125rem;
  }
}
.section-my-account .tab-wrap .tab .tab-content .board-wrap .board-content .accordion-wrap ul li .accordion-title .title-wrap .title {
  font-weight: 500;
}
.section-my-account .tab-wrap .tab .tab-content .board-wrap .board-content .accordion-wrap ul li .accordion-title .title-wrap .id {
  font-weight: 300;
}
.section-my-account .tab-wrap .tab .tab-content .board-wrap .board-content .accordion-wrap ul li .accordion-title .state {
  position: absolute;
  display: flex;
  align-items: center;
  top: 50%;
  transform: translateY(-50%);
  right: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.section-my-account .tab-wrap .tab .tab-content .board-wrap .board-content .accordion-wrap ul li .accordion-title .state .text {
  padding-top: 0.5714285714em;
}
.section-my-account .tab-wrap .tab .tab-content .board-wrap .board-content .accordion-wrap ul li .accordion-title .state i {
  margin-left: 0.3125rem;
  transition: all 0.3s linear;
}
@media (min-width: 1025px) {
  .section-my-account .tab-wrap .tab .tab-content .board-wrap .board-content .accordion-wrap ul li .accordion-title .state {
    font-size: 1.125rem;
    right: 5rem;
  }
  .section-my-account .tab-wrap .tab .tab-content .board-wrap .board-content .accordion-wrap ul li .accordion-title .state .text {
    padding-top: 0.5555555556em;
  }
  .section-my-account .tab-wrap .tab .tab-content .board-wrap .board-content .accordion-wrap ul li .accordion-title .state i {
    width: 1.75rem;
    height: 1.75rem;
    margin-left: 3.125rem;
  }
}
.section-my-account .tab-wrap .tab .tab-content .board-wrap .board-content .accordion-wrap ul li .accordion-content {
  display: none;
  padding: 0.9375rem 1.25rem;
  border-top: 1px solid #000;
}
@media (min-width: 1025px) {
  .section-my-account .tab-wrap .tab .tab-content .board-wrap .board-content .accordion-wrap ul li .accordion-content {
    padding: 1.875rem 5rem;
  }
}
.section-my-account .tab-wrap .tab .tab-content .board-wrap .board-content .accordion-wrap ul li .accordion-content .question {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 20.72px;
}
@media (min-width: 1025px) {
  .section-my-account .tab-wrap .tab .tab-content .board-wrap .board-content .accordion-wrap ul li .accordion-content .question {
    font-size: 1.125rem;
    line-height: 26.64px;
  }
}
.section-my-account .tab-wrap .tab .tab-content .board-wrap .board-content .accordion-wrap ul li .accordion-content .answer-wrap {
  margin-top: 0.625rem;
  padding: 0.9375rem 1.25rem;
  background-color: #F5F3EE;
}
@media (min-width: 1025px) {
  .section-my-account .tab-wrap .tab .tab-content .board-wrap .board-content .accordion-wrap ul li .accordion-content .answer-wrap {
    margin-top: 1.25rem;
    padding: 1.875rem 2.5rem;
  }
}
.section-my-account .tab-wrap .tab .tab-content .board-wrap .board-content .accordion-wrap ul li .accordion-content .answer-wrap .writer-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-my-account .tab-wrap .tab .tab-content .board-wrap .board-content .accordion-wrap ul li .accordion-content .answer-wrap .writer-info > span {
  font-size: 0.875rem;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .section-my-account .tab-wrap .tab .tab-content .board-wrap .board-content .accordion-wrap ul li .accordion-content .answer-wrap .writer-info > span {
    font-size: 1.125rem;
  }
}
.section-my-account .tab-wrap .tab .tab-content .board-wrap .board-content .accordion-wrap ul li .accordion-content .answer-wrap p {
  margin-top: 0.9375rem;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 20.72px;
}
@media (min-width: 1025px) {
  .section-my-account .tab-wrap .tab .tab-content .board-wrap .board-content .accordion-wrap ul li .accordion-content .answer-wrap p {
    margin-top: 1.25rem;
    font-size: 1.125rem;
    line-height: 26.64px;
  }
}
.section-my-account .tab-wrap .tab .tab-content .board-wrap .board-content .no-data {
  padding: 2.5rem;
  background-color: #fff;
  text-align: center;
  border: 1px solid #000;
}
.section-my-account .tab-wrap .tab .tab-content .board-wrap .board-content .no-data p {
  font-size: 0.8125rem;
}
@media (min-width: 1025px) {
  .section-my-account .tab-wrap .tab .tab-content .board-wrap .board-content .no-data {
    padding: 3.125rem;
  }
  .section-my-account .tab-wrap .tab .tab-content .board-wrap .board-content .no-data p {
    font-size: 1.125rem;
  }
}

.section .container {
  max-width: 1240px;
  margin: auto;
  padding: 3.75rem 1.25rem 11.25rem;
}
@media (min-width: 1025px) {
  .section .container {
    padding: 5rem 1.25rem 11.25rem;
  }
}
.section .section-title {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin: 2.5rem 0 1.25rem;
  font-size: 1.375rem;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .section .section-title {
    gap: 0.9375rem;
    margin: 5rem 0 2.5rem;
    font-size: 2rem;
  }
}

.title-wrap.has-count {
  padding: 1.25rem;
  background-color: #000;
}
.title-wrap.has-count h3 {
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
.title-wrap.has-count h3 .count {
  position: relative;
  padding-left: 1.25rem;
  font-family: "RobotoMono", "NotoSans", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
}
.title-wrap.has-count h3 .count::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 1rem;
  top: 6px;
  left: 10px;
  background-color: #c8c8c8;
  opacity: 0.4;
}
.title-wrap.has-count h3 .count .unit {
  font-family: "Noto Sans JP", "Noto Sans SC", "Noto Sans TC", "NeueHelveticaPro65Medium", "NotoSans", sans-serif;
  font-size: 0.875rem;
}
@media (min-width: 1025px) {
  .title-wrap.has-count h3 {
    font-size: 1.5rem;
  }
  .title-wrap.has-count h3 .count {
    padding-left: 1.875rem;
    font-size: 1.75rem;
  }
  .title-wrap.has-count h3 .count::after {
    height: 1.375rem;
    top: 9px;
    left: 15px;
  }
  .title-wrap.has-count h3 .count .unit {
    font-size: 1.25rem;
  }
}

.section-my-order .order-wrap {
  background-color: #fff;
  border: 1px solid #000;
}
.section-my-order .order-wrap .order-detail-box .img-wrap {
  display: none;
}
.section-my-order .order-wrap .order-detail-box .order-detail .row {
  padding: 1.25rem;
}
.section-my-order .order-wrap .order-detail-box .order-detail .row + .row {
  border-top: 1px solid #000;
}
.section-my-order .order-wrap .order-detail-box .order-detail .row .col + .col {
  margin-top: 1.25rem;
}
.section-my-order .order-wrap .order-detail-box .order-detail .row .col:last-child dl {
  align-items: flex-start;
}
.section-my-order .order-wrap .order-detail-box .order-detail .row .col dl {
  display: flex;
  align-items: center;
  gap: 30px;
}
.section-my-order .order-wrap .order-detail-box .order-detail .row .col dl dt {
  min-width: 3.25rem;
  font-family: "Noto Sans JP", "Noto Sans SC", "Noto Sans TC", "NeueHelveticaPro65Medium", "NotoSans", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.3);
}
.section-my-order .order-wrap .order-detail-box .order-detail .row .col dl dd {
  font-size: 1.125rem;
  font-weight: 500;
}
.section-my-order .order-wrap .order-detail-box .order-detail .row .col dl dd .btn-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1rem;
  line-height: 23.68px;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-align: left;
}
.section-my-order .order-wrap .order-detail-box .order-detail .row .col dl dd .btn-link + .btn-link {
  margin-top: 0.625rem;
}
.section-my-order .order-wrap .order-detail-box .order-detail .row .col dl dd .btn-link i {
  position: absolute;
  top: 0.125rem;
  right: -1.5rem;
}
@media (min-width: 1025px) {
  .section-my-order .order-wrap .order-detail-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .section-my-order .order-wrap .order-detail-box .img-wrap.memory {
    align-items: center;
    justify-content: center;
    width: 13.8125rem;
  }
  .section-my-order .order-wrap .order-detail-box .img-wrap.memory img {
    max-width: 8.4375rem;
  }
  .section-my-order .order-wrap .order-detail-box .img-wrap.barcode {
    align-items: center;
    justify-content: center;
    width: 5.8125rem;
  }
  .section-my-order .order-wrap .order-detail-box .img-wrap.barcode img {
    max-width: 2.9375rem;
  }
  .section-my-order .order-wrap .order-detail-box .order-detail {
    position: relative;
    width: calc(100% - 19.625rem);
    min-height: 17.75rem;
    border-right: 1px solid #000;
    border-left: 1px solid #000;
  }
  .section-my-order .order-wrap .order-detail-box .order-detail .row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 2rem 3.125rem;
  }
  .section-my-order .order-wrap .order-detail-box .order-detail .row:first-child:last-child {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .section-my-order .order-wrap .order-detail-box .order-detail .row .col {
    width: 30%;
  }
  .section-my-order .order-wrap .order-detail-box .order-detail .row .col + .col {
    margin-top: 0;
  }
  .section-my-order .order-wrap .order-detail-box .order-detail .row .col:last-child {
    width: 40%;
  }
  .section-my-order .order-wrap .order-detail-box .order-detail .row .col dl {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5625rem;
  }
  .section-my-order .order-wrap .order-detail-box .order-detail .row .col dl dt {
    font-size: 1rem;
  }
  .section-my-order .order-wrap .order-detail-box .order-detail .row .col dl dd {
    font-size: 1.5rem;
  }
  .section-my-order .order-wrap .order-detail-box .order-detail .row .col dl dd .btn-link {
    font-size: 1.125rem;
    line-height: 26.64px;
  }
  .section-my-order .order-wrap .order-detail-box .order-detail .row .col dl dd .btn-link i {
    top: 0.1875rem;
  }
}

.section-tracking .tracking-wrap .tracking-info-box {
  border: 1px solid #000;
  background-color: #fff;
}
.section-tracking .tracking-wrap .tracking-info-box .tracking-info-lsit {
  padding: 1.25rem;
}
.section-tracking .tracking-wrap .tracking-info-box .tracking-info-lsit .tracking-info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-tracking .tracking-wrap .tracking-info-box .tracking-info-lsit .tracking-info-item:not(.first) {
  margin-top: 1.875rem;
}
.section-tracking .tracking-wrap .tracking-info-box .tracking-info-lsit .tracking-info-item.first {
  cursor: pointer;
}
.section-tracking .tracking-wrap .tracking-info-box .tracking-info-lsit .tracking-info-item.active i {
  transform: rotate(-180deg);
}
.section-tracking .tracking-wrap .tracking-info-box .tracking-info-lsit .tracking-info-item dl {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
}
.section-tracking .tracking-wrap .tracking-info-box .tracking-info-lsit .tracking-info-item dl dt {
  min-width: 3.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
}
.section-tracking .tracking-wrap .tracking-info-box .tracking-info-lsit .tracking-info-item dl dd {
  font-size: retm(16);
  font-weight: 500;
}
.section-tracking .tracking-wrap .tracking-info-box .tracking-info-lsit .tracking-info-item i {
  transition: all 0.3s linear;
}
.section-tracking .tracking-wrap .tracking-info-box .tracking-info-lsit .fold {
  display: none;
}
@media (min-width: 1025px) {
  .section-tracking .tracking-wrap .tracking-info-box {
    background-color: #000;
  }
  .section-tracking .tracking-wrap .tracking-info-box .tracking-info-lsit {
    display: flex;
    align-items: center;
    padding: 2.5rem 1.875rem;
  }
  .section-tracking .tracking-wrap .tracking-info-box .tracking-info-lsit .tracking-info-item {
    display: block;
    width: 30%;
    pointer-events: none;
  }
  .section-tracking .tracking-wrap .tracking-info-box .tracking-info-lsit .tracking-info-item:not(.first) {
    margin-top: 0;
  }
  .section-tracking .tracking-wrap .tracking-info-box .tracking-info-lsit .tracking-info-item.first {
    cursor: default;
  }
  .section-tracking .tracking-wrap .tracking-info-box .tracking-info-lsit .tracking-info-item dl {
    display: block;
    color: #fff;
  }
  .section-tracking .tracking-wrap .tracking-info-box .tracking-info-lsit .tracking-info-item dl dt {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
  }
  .section-tracking .tracking-wrap .tracking-info-box .tracking-info-lsit .tracking-info-item dl dd {
    margin-top: 1.0625rem;
    font-size: 1.25rem;
    line-height: 26.38px;
  }
  .section-tracking .tracking-wrap .tracking-info-box .tracking-info-lsit .fold {
    display: flex !important;
    align-items: center;
    width: 100%;
  }
  .section-tracking .tracking-wrap .tracking-info-box .tracking-info-lsit .fold .tracking-info-item {
    width: 35%;
    padding-left: 1.875rem;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
  }
  .section-tracking .tracking-wrap .tracking-info-box .tracking-info-lsit .fold .tracking-info-item:last-child {
    width: 30%;
  }
  .section-tracking .tracking-wrap > .btn-wrap {
    margin-top: 5rem;
    text-align: center;
  }
}
.section-tracking .tracking-wrap .tracking-process-wrap {
  margin-top: 1.875rem;
  padding: 1.875rem 1.25rem 2.1875rem;
  background-color: #000;
}
.section-tracking .tracking-wrap .tracking-process-wrap .process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}
.section-tracking .tracking-wrap .tracking-process-wrap .process-list.second-row {
  direction: rtl;
}
.section-tracking .tracking-wrap .tracking-process-wrap .process-list.second-row .process-item {
  padding-top: 1.875rem;
}
.section-tracking .tracking-wrap .tracking-process-wrap .process-list.second-row .process-item:first-child {
  border-right: 2px solid rgba(255, 255, 255, 0.3);
}
.section-tracking .tracking-wrap .tracking-process-wrap .process-list.second-row .process-item:first-child.ing, .section-tracking .tracking-wrap .tracking-process-wrap .process-list.second-row .process-item:first-child.on {
  border-right: 2px solid #fff;
}
.section-tracking .tracking-wrap .tracking-process-wrap .process-list.second-row .process-item.ing::before {
  left: unset;
  right: 0;
}
.section-tracking .tracking-wrap .tracking-process-wrap .process-list .process-item {
  position: relative;
  padding-bottom: 0.96875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.section-tracking .tracking-wrap .tracking-process-wrap .process-list .process-item.off .process {
  opacity: 0.5;
}
.section-tracking .tracking-wrap .tracking-process-wrap .process-list .process-item.ing::before, .section-tracking .tracking-wrap .tracking-process-wrap .process-list .process-item.on::before {
  position: absolute;
  content: "";
  width: 50%;
  height: 2px;
  bottom: -1px;
  left: 0;
  background-color: #fff;
}
.section-tracking .tracking-wrap .tracking-process-wrap .process-list .process-item.ing::after, .section-tracking .tracking-wrap .tracking-process-wrap .process-list .process-item.on::after {
  position: absolute;
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  right: 0;
  bottom: -5px;
  left: 0;
  margin: auto;
  background-color: #fff;
  border-radius: 50%;
}
.section-tracking .tracking-wrap .tracking-process-wrap .process-list .process-item.on::before {
  width: 100%;
}
.section-tracking .tracking-wrap .tracking-process-wrap .process-list .process-item.on::after {
  content: none;
}
.section-tracking .tracking-wrap .tracking-process-wrap .process-list .process-item .img-wrap {
  margin-bottom: 0.5rem;
}
.section-tracking .tracking-wrap .tracking-process-wrap .process-list .process-item .img-wrap > div {
  display: none;
}
.section-tracking .tracking-wrap .tracking-process-wrap .process-list .process-item.off .img-wrap .off {
  display: block;
}
.section-tracking .tracking-wrap .tracking-process-wrap .process-list .process-item.on .img-wrap .on {
  display: block;
}
.section-tracking .tracking-wrap .tracking-process-wrap .process-list .process-item.ing .img-wrap .ing {
  display: block;
}
.section-tracking .tracking-wrap .tracking-process-wrap .process-list .process-item .process {
  font-size: 0.8125rem;
  color: #fff;
}
@media (min-width: 1025px) {
  .section-tracking .tracking-wrap .tracking-process-wrap {
    position: relative;
    display: flex;
    width: 100%;
    padding: 1.875rem 2.5rem 2.1875rem;
    background-color: transparent;
  }
  .section-tracking .tracking-wrap .tracking-process-wrap::before, .section-tracking .tracking-wrap .tracking-process-wrap::after {
    position: absolute;
    content: "";
    width: 2.5rem;
    height: 0.1875rem;
    bottom: 2.1875rem;
    left: 2.5rem;
    background-color: #F5F3EE;
    z-index: 5;
  }
  .section-tracking .tracking-wrap .tracking-process-wrap::after {
    right: 2.5rem;
    left: unset;
  }
  .section-tracking .tracking-wrap .tracking-process-wrap .process-list {
    width: 50%;
  }
  .section-tracking .tracking-wrap .tracking-process-wrap .process-list.second-row {
    direction: ltr;
    margin-left: -1px;
  }
  .section-tracking .tracking-wrap .tracking-process-wrap .process-list.second-row .process-item {
    padding-top: 0;
  }
  .section-tracking .tracking-wrap .tracking-process-wrap .process-list.second-row .process-item:first-child {
    border-right: 0;
  }
  .section-tracking .tracking-wrap .tracking-process-wrap .process-list.second-row .process-item:first-child.on, .section-tracking .tracking-wrap .tracking-process-wrap .process-list.second-row .process-item:first-child.ing {
    border-right: none;
  }
  .section-tracking .tracking-wrap .tracking-process-wrap .process-list.second-row .process-item.ing::before {
    left: 0;
    right: unset;
  }
  .section-tracking .tracking-wrap .tracking-process-wrap .process-list .process-item {
    width: 100%;
    height: 100%;
    margin: auto;
    padding-bottom: 1.875rem;
    border-color: #c8c8c8;
  }
  .section-tracking .tracking-wrap .tracking-process-wrap .process-list .process-item.ing::before, .section-tracking .tracking-wrap .tracking-process-wrap .process-list .process-item.ing::after {
    background-color: #000;
  }
  .section-tracking .tracking-wrap .tracking-process-wrap .process-list .process-item.ing::before {
    height: 3px;
  }
  .section-tracking .tracking-wrap .tracking-process-wrap .process-list .process-item.on::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 3px;
    bottom: -1px;
    left: 0;
    background-color: #000;
  }
  .section-tracking .tracking-wrap .tracking-process-wrap .process-list .process-item .img-wrap {
    margin-bottom: 0.9375rem;
  }
  .section-tracking .tracking-wrap .tracking-process-wrap .process-list .process-item .img-wrap img {
    margin: auto;
  }
  .section-tracking .tracking-wrap .tracking-process-wrap .process-list .process-item .process {
    font-size: 1rem;
    color: #000;
  }
}
.section-tracking .tracking-wrap .tracking-process-detail-wrap {
  margin-top: 1.875rem;
}
.section-tracking .tracking-wrap .tracking-process-detail-wrap .process-detail-list .process-detail-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-tracking .tracking-wrap .tracking-process-detail-wrap .process-detail-list .process-detail-item + .process-detail-item {
  margin-top: 0.625rem;
}
.section-tracking .tracking-wrap .tracking-process-detail-wrap .process-detail-list .process-detail-item + .process-detail-item::before {
  position: absolute;
  content: "";
  width: 1px;
  height: calc(100% - 7px);
  top: -43.5px;
  left: 0.5rem;
  background-color: #000;
}
.section-tracking .tracking-wrap .tracking-process-detail-wrap .process-detail-list .process-detail-item .process-detail-box {
  position: relative;
  width: 100%;
  padding: 1.25rem;
  background-color: #fff;
}
.section-tracking .tracking-wrap .tracking-process-detail-wrap .process-detail-list .process-detail-item .process-detail-box .txt {
  font-size: 0.875rem;
  line-height: 20.72px;
}
.section-tracking .tracking-wrap .tracking-process-detail-wrap .process-detail-list .process-detail-item .process-detail-box .date-time {
  margin-top: 0.625rem;
  font-size: 0.6875rem;
  font-weight: 300;
}
.section-tracking .tracking-wrap .tracking-process-detail-wrap .process-detail-list .process-detail-item .process-detail-box .date-time .date {
  font-weight: 500;
}
.section-tracking .tracking-wrap .tracking-process-detail-wrap .process-detail-list .process-detail-item .process-detail-box .btn-link {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  font-size: 0.6875rem;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid #000;
}
.section-tracking .tracking-wrap .tracking-process-detail-wrap .process-detail-list .process-detail-item .process-detail-box .btn-link.done {
  color: #9E9E9E;
  text-decoration: none;
  pointer-events: none;
}
.section-tracking .tracking-wrap .btn-wrap {
  margin-top: 2.5rem;
  text-align: center;
}
.section-tracking .tracking-wrap .btn-wrap .btn-type {
  max-width: 9.375rem;
}
@media (min-width: 1025px) {
  .section-tracking .tracking-wrap .tracking-process-detail-wrap .process-detail-list {
    padding: 3.125rem 4.0625rem 3.125rem 2.5rem;
    background-color: #fff;
  }
  .section-tracking .tracking-wrap .tracking-process-detail-wrap .process-detail-list .process-detail-item + .process-detail-item {
    margin-top: 0;
    padding-top: 1.875rem;
  }
  .section-tracking .tracking-wrap .tracking-process-detail-wrap .process-detail-list .process-detail-item + .process-detail-item::before {
    content: none;
  }
  .section-tracking .tracking-wrap .tracking-process-detail-wrap .process-detail-list .process-detail-item.done::before {
    content: none;
  }
  .section-tracking .tracking-wrap .tracking-process-detail-wrap .process-detail-list .process-detail-item.done .process-detail-box .process-icon-wrap::before {
    position: absolute;
    content: "";
    width: 1px;
    height: calc(100% + 7px);
    left: 11px;
    top: 26px;
    background-color: #000;
    z-index: 1;
  }
  .section-tracking .tracking-wrap .tracking-process-detail-wrap .process-detail-list .process-detail-item .process-detail-box {
    display: flex;
    align-items: center;
    padding: 0;
  }
  .section-tracking .tracking-wrap .tracking-process-detail-wrap .process-detail-list .process-detail-item .process-detail-box .txt {
    font-size: 1rem;
  }
  .section-tracking .tracking-wrap .tracking-process-detail-wrap .process-detail-list .process-detail-item .process-detail-box .process-icon-wrap {
    position: relative;
    margin: 0 5rem 0 3.75rem;
  }
  .section-tracking .tracking-wrap .tracking-process-detail-wrap .process-detail-list .process-detail-item .process-detail-box .process-icon-wrap i {
    width: 1.5rem;
    height: 1.5rem;
  }
  .section-tracking .tracking-wrap .tracking-process-detail-wrap .process-detail-list .process-detail-item .process-detail-box .date-time {
    margin-top: 0;
    order: -1;
    font-size: 1rem;
  }
  .section-tracking .tracking-wrap .tracking-process-detail-wrap .process-detail-list .process-detail-item .process-detail-box .btn-link {
    position: static;
    margin-left: auto;
    font-size: 1rem;
    text-align: left;
  }
  .section-tracking .tracking-wrap .btn-wrap {
    margin-top: 5rem;
  }
  .section-tracking .tracking-wrap .btn-wrap .btn-type {
    max-width: 11.25rem;
  }
}

.term-wrap p {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 20.72px;
}
@media (min-width: 1025px) {
  .term-wrap p {
    font-size: 1rem;
    line-height: 23.68px;
  }
}
.term-wrap p .btn-link {
  white-space: normal;
  word-break: break-all;
}
.term-wrap .term-box {
  margin-top: 1.25rem;
  background-color: #fff;
  border: 1px solid #000;
}
.term-wrap .term-box .box {
  padding: 1.25rem;
}
.term-wrap .term-box .box:not(:first-child) {
  border-top: 1px solid #000;
}
.term-wrap .term-box .box h3 {
  margin-bottom: 0.625rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 23.68px;
}
.term-wrap .term-box .box ul {
  margin-top: 0.9375rem;
}
.term-wrap .term-box .box ul + p {
  margin-top: 0.9375rem;
}
.term-wrap .term-box .box ul li {
  position: relative;
  padding-left: 0.8125rem;
  font-size: 0.8125rem;
  font-weight: 300;
  line-height: 19.24px;
}
.term-wrap .term-box .box ul li::before {
  position: absolute;
  content: "";
  width: 0.25rem;
  height: 0.25rem;
  top: 9px;
  left: 0;
  border-radius: 50%;
  background-color: #000;
}
.term-wrap .term-box .box ul li + li {
  margin-top: 0.625rem;
}
.term-wrap .term-box .box .table-wrap {
  margin: 0.9375rem 0;
}
.term-wrap .term-box .box .table-wrap table {
  width: 100%;
}
.term-wrap .term-box .box .table-wrap table th {
  padding: 0.625rem 0;
  background-color: #F5F3EE;
  border-left: 1px solid #fff;
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 13px;
}
.term-wrap .term-box .box .table-wrap table th:first-child {
  width: 12%;
  border: none;
}
.term-wrap .term-box .box .table-wrap table th:nth-child(2) {
  width: 27%;
}
.term-wrap .term-box .box .table-wrap table th:nth-child(3) {
  width: 12%;
}
.term-wrap .term-box .box .table-wrap table th:nth-child(4) {
  width: 12%;
}
.term-wrap .term-box .box .table-wrap table th:last-child {
  width: 25%;
}
.term-wrap .term-box .box .table-wrap table tbody tr {
  border-top: 10px solid #fff;
}
.term-wrap .term-box .box .table-wrap table tbody tr td {
  padding: 0 0.25rem;
  font-size: 0.625rem;
  font-weight: 300;
  line-height: 13px;
  word-break: break-all;
  text-align: center;
}
@media (min-width: 1025px) {
  .term-wrap .term-box {
    margin-top: 1.875rem;
  }
  .term-wrap .term-box .box {
    padding: 1.875rem;
  }
  .term-wrap .term-box .box h3 {
    font-size: 1.375rem;
    line-height: 32.56px;
  }
  .term-wrap .term-box .box ul {
    margin-top: 1.25rem;
  }
  .term-wrap .term-box .box ul + p {
    margin-top: 1.25rem;
  }
  .term-wrap .term-box .box ul li {
    font-size: 1rem;
    line-height: 23.68px;
  }
  .term-wrap .term-box .box .table-wrap {
    margin: 1.25rem 0 1.875rem;
  }
  .term-wrap .term-box .box .table-wrap table th {
    border-width: 2px;
    font-size: 0.8125rem;
    line-height: 19.24px;
  }
  .term-wrap .term-box .box .table-wrap table th:first-child {
    width: 17%;
  }
  .term-wrap .term-box .box .table-wrap table th:nth-child(2) {
    width: 22%;
  }
  .term-wrap .term-box .box .table-wrap table th:nth-child(3) {
    width: 8%;
  }
  .term-wrap .term-box .box .table-wrap table th:nth-child(4) {
    width: 13%;
  }
  .term-wrap .term-box .box .table-wrap table th:last-child {
    width: 40%;
  }
  .term-wrap .term-box .box .table-wrap table tbody tr {
    border-top: 15px solid #fff;
  }
  .term-wrap .term-box .box .table-wrap table tbody tr td {
    font-size: 0.8125rem;
    line-height: 19.24px;
  }
}