:root {
  --header-height-mobile: 72px;
  --header-height: 90px;
}

/* woff2 - Chrome 26+, Opera 23+, Firefox 39+ */
/* ===============================
=            Choices            =
=============================== */
.choices {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  font-size: 16px;
}
.choices:focus {
  outline: none;
}
.choices:last-child {
  margin-bottom: 0;
}
.choices.is-open {
  overflow: visible;
}
.choices.is-disabled .choices__inner,
.choices.is-disabled .choices__input {
  background-color: #eaeaea;
  cursor: not-allowed;
  user-select: none;
}
.choices.is-disabled .choices__item {
  cursor: not-allowed;
}
.choices [hidden] {
  display: none !important;
}

.choices[data-type*=select-one] {
  cursor: pointer;
}
.choices[data-type*=select-one] .choices__inner {
  padding-bottom: 7.5px;
}
.choices[data-type*=select-one] .choices__input {
  display: block;
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  margin: 0;
}
.choices[data-type*=select-one] .choices__button {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==");
  padding: 0;
  background-size: 8px;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -10px;
  margin-right: 25px;
  height: 20px;
  width: 20px;
  border-radius: 10em;
  opacity: 0.25;
}
.choices[data-type*=select-one] .choices__button:hover, .choices[data-type*=select-one] .choices__button:focus {
  opacity: 1;
}
.choices[data-type*=select-one] .choices__button:focus {
  box-shadow: 0 0 0 2px #005F75;
}
.choices[data-type*=select-one] .choices__item[data-placeholder] .choices__button {
  display: none;
}
.choices[data-type*=select-one]::after {
  content: "";
  height: 0;
  width: 0;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
  border-width: 5px;
  position: absolute;
  right: 11.5px;
  top: 50%;
  margin-top: -2.5px;
  pointer-events: none;
}
.choices[data-type*=select-one].is-open::after {
  border-color: transparent transparent #333;
  margin-top: -7.5px;
}
.choices[data-type*=select-one][dir=rtl]::after {
  left: 11.5px;
  right: auto;
}
.choices[data-type*=select-one][dir=rtl] .choices__button {
  right: auto;
  left: 0;
  margin-left: 25px;
  margin-right: 0;
}

.choices[data-type*=select-multiple] .choices__inner,
.choices[data-type*=text] .choices__inner {
  cursor: text;
}
.choices[data-type*=select-multiple] .choices__button,
.choices[data-type*=text] .choices__button {
  position: relative;
  display: inline-block;
  margin-top: 0;
  margin-right: -4px;
  margin-bottom: 0;
  margin-left: 8px;
  padding-left: 16px;
  border-left: 1px solid #003642;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==");
  background-size: 8px;
  width: 8px;
  line-height: 1;
  opacity: 0.75;
  border-radius: 0;
}
.choices[data-type*=select-multiple] .choices__button:hover, .choices[data-type*=select-multiple] .choices__button:focus,
.choices[data-type*=text] .choices__button:hover,
.choices[data-type*=text] .choices__button:focus {
  opacity: 1;
}

.choices__inner {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  background-color: #f9f9f9;
  padding: 7.5px 7.5px 3.75px;
  border: 1px solid #ddd;
  border-radius: 2.5px;
  font-size: 14px;
  min-height: 44px;
  overflow: hidden;
}
.is-focused .choices__inner, .is-open .choices__inner {
  border-color: #b7b7b7;
}
.is-open .choices__inner {
  border-radius: 2.5px 2.5px 0 0;
}
.is-flipped.is-open .choices__inner {
  border-radius: 0 0 2.5px 2.5px;
}

.choices__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.choices__list--single {
  display: inline-block;
  padding: 4px 16px 4px 4px;
  width: 100%;
}
[dir=rtl] .choices__list--single {
  padding-right: 4px;
  padding-left: 16px;
}
.choices__list--single .choices__item {
  width: 100%;
}

.choices__list--multiple {
  display: inline;
}
.choices__list--multiple .choices__item {
  display: inline-block;
  vertical-align: middle;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  margin-right: 3.75px;
  margin-bottom: 3.75px;
  background-color: #005F75;
  border: 1px solid #004a5c;
  color: #fff;
  word-break: break-all;
  box-sizing: border-box;
}
.choices__list--multiple .choices__item[data-deletable] {
  padding-right: 5px;
}
[dir=rtl] .choices__list--multiple .choices__item {
  margin-right: 0;
  margin-left: 3.75px;
}
.choices__list--multiple .choices__item.is-highlighted {
  background-color: #004a5c;
  border: 1px solid #003642;
}
.is-disabled .choices__list--multiple .choices__item {
  background-color: #aaaaaa;
  border: 1px solid #919191;
}

.choices__list--dropdown, .choices__list[aria-expanded] {
  display: none;
  z-index: 1;
  position: absolute;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ddd;
  top: 100%;
  margin-top: -1px;
  border-bottom-left-radius: 2.5px;
  border-bottom-right-radius: 2.5px;
  overflow: hidden;
  word-break: break-all;
}
.is-active.choices__list--dropdown, .is-active.choices__list[aria-expanded] {
  display: block;
}
.is-open .choices__list--dropdown, .is-open .choices__list[aria-expanded] {
  border-color: #b7b7b7;
}
.is-flipped .choices__list--dropdown, .is-flipped .choices__list[aria-expanded] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: -1px;
  border-radius: 0.25rem 0.25rem 0 0;
}
.choices__list--dropdown .choices__list, .choices__list[aria-expanded] .choices__list {
  position: relative;
  max-height: 300px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position;
}
.choices__list--dropdown .choices__item, .choices__list[aria-expanded] .choices__item {
  position: relative;
  padding: 10px;
  font-size: 14px;
}
[dir=rtl] .choices__list--dropdown .choices__item, [dir=rtl] .choices__list[aria-expanded] .choices__item {
  text-align: right;
}
@media (min-width: 640px) {
  .choices__list--dropdown .choices__item--selectable[data-select-text], .choices__list[aria-expanded] .choices__item--selectable[data-select-text] {
    padding-right: 100px;
  }
  .choices__list--dropdown .choices__item--selectable[data-select-text]::after, .choices__list[aria-expanded] .choices__item--selectable[data-select-text]::after {
    content: attr(data-select-text);
    font-size: 12px;
    opacity: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  [dir=rtl] .choices__list--dropdown .choices__item--selectable[data-select-text], [dir=rtl] .choices__list[aria-expanded] .choices__item--selectable[data-select-text] {
    text-align: right;
    padding-left: 100px;
    padding-right: 10px;
  }
  [dir=rtl] .choices__list--dropdown .choices__item--selectable[data-select-text]::after, [dir=rtl] .choices__list[aria-expanded] .choices__item--selectable[data-select-text]::after {
    right: auto;
    left: 10px;
  }
}
.choices__list--dropdown .choices__item--selectable.is-highlighted, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  background-color: #f2f2f2;
}
.choices__list--dropdown .choices__item--selectable.is-highlighted::after, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted::after {
  opacity: 0.5;
}

.choices__item {
  cursor: default;
}

.choices__item--selectable {
  cursor: pointer;
}

.choices__item--disabled {
  cursor: not-allowed;
  user-select: none;
  opacity: 0.5;
}

.choices__heading {
  font-weight: 600;
  font-size: 12px;
  padding: 10px;
  border-bottom: 1px solid #f7f7f7;
  color: gray;
}

.choices__button {
  text-indent: -9999px;
  appearance: none;
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.choices__button:focus {
  outline: none;
}

.choices__input {
  display: inline-block;
  vertical-align: baseline;
  background-color: #f9f9f9;
  font-size: 14px;
  margin-bottom: 5px;
  border: 0;
  border-radius: 0;
  max-width: 100%;
  padding: 4px 0 4px 2px;
}
.choices__input:focus {
  outline: 0;
}
.choices__input::-webkit-search-decoration, .choices__input::-webkit-search-cancel-button, .choices__input::-webkit-search-results-button, .choices__input::-webkit-search-results-decoration {
  display: none;
}
.choices__input::-ms-clear, .choices__input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
[dir=rtl] .choices__input {
  padding-right: 2px;
  padding-left: 0;
}

.choices__placeholder {
  opacity: 0.5;
}

/* =====  End of Choices  ====== */
/* Inter - latin */
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/inter/inter-v18-latin-regular-c0720b78.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Inter - latin-ext */
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/inter/inter-v18-latin-ext-regular-6f222e44.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Inter-500 - latin */
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/inter/inter-v18-latin-500-b34ae9de.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Inter-500 - latin-ext */
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/inter/inter-v18-latin-ext-500-fa17132e.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Inter-600 - latin */
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/inter/inter-v18-latin-600-8a4aa811.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Inter-600 - latin-ext */
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/inter/inter-v18-latin-ext-600-8b924dfd.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
.d-none {
  display: none !important;
}

.error {
  margin-left: 4px;
  color: #f94d4d;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

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

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

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

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

.ml-16 {
  margin-left: 16px !important;
}

.pl-16 {
  padding-left: 16px !important;
}

.mr-16 {
  margin-right: 16px !important;
}

.pr-16 {
  padding-right: 16px !important;
}

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

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

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

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

.ml-18 {
  margin-left: 18px !important;
}

.pl-18 {
  padding-left: 18px !important;
}

.mr-18 {
  margin-right: 18px !important;
}

.pr-18 {
  padding-right: 18px !important;
}

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

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

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

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

.ml-20 {
  margin-left: 20px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.mt-22 {
  margin-top: 22px !important;
}

.pt-22 {
  padding-top: 22px !important;
}

.mb-22 {
  margin-bottom: 22px !important;
}

.pb-22 {
  padding-bottom: 22px !important;
}

.ml-22 {
  margin-left: 22px !important;
}

.pl-22 {
  padding-left: 22px !important;
}

.mr-22 {
  margin-right: 22px !important;
}

.pr-22 {
  padding-right: 22px !important;
}

.mt-24 {
  margin-top: 24px !important;
}

.pt-24 {
  padding-top: 24px !important;
}

.mb-24 {
  margin-bottom: 24px !important;
}

.pb-24 {
  padding-bottom: 24px !important;
}

.ml-24 {
  margin-left: 24px !important;
}

.pl-24 {
  padding-left: 24px !important;
}

.mr-24 {
  margin-right: 24px !important;
}

.pr-24 {
  padding-right: 24px !important;
}

.mt-26 {
  margin-top: 26px !important;
}

.pt-26 {
  padding-top: 26px !important;
}

.mb-26 {
  margin-bottom: 26px !important;
}

.pb-26 {
  padding-bottom: 26px !important;
}

.ml-26 {
  margin-left: 26px !important;
}

.pl-26 {
  padding-left: 26px !important;
}

.mr-26 {
  margin-right: 26px !important;
}

.pr-26 {
  padding-right: 26px !important;
}

.mt-28 {
  margin-top: 28px !important;
}

.pt-28 {
  padding-top: 28px !important;
}

.mb-28 {
  margin-bottom: 28px !important;
}

.pb-28 {
  padding-bottom: 28px !important;
}

.ml-28 {
  margin-left: 28px !important;
}

.pl-28 {
  padding-left: 28px !important;
}

.mr-28 {
  margin-right: 28px !important;
}

.pr-28 {
  padding-right: 28px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.mt-32 {
  margin-top: 32px !important;
}

.pt-32 {
  padding-top: 32px !important;
}

.mb-32 {
  margin-bottom: 32px !important;
}

.pb-32 {
  padding-bottom: 32px !important;
}

.ml-32 {
  margin-left: 32px !important;
}

.pl-32 {
  padding-left: 32px !important;
}

.mr-32 {
  margin-right: 32px !important;
}

.pr-32 {
  padding-right: 32px !important;
}

.mt-34 {
  margin-top: 34px !important;
}

.pt-34 {
  padding-top: 34px !important;
}

.mb-34 {
  margin-bottom: 34px !important;
}

.pb-34 {
  padding-bottom: 34px !important;
}

.ml-34 {
  margin-left: 34px !important;
}

.pl-34 {
  padding-left: 34px !important;
}

.mr-34 {
  margin-right: 34px !important;
}

.pr-34 {
  padding-right: 34px !important;
}

.mt-36 {
  margin-top: 36px !important;
}

.pt-36 {
  padding-top: 36px !important;
}

.mb-36 {
  margin-bottom: 36px !important;
}

.pb-36 {
  padding-bottom: 36px !important;
}

.ml-36 {
  margin-left: 36px !important;
}

.pl-36 {
  padding-left: 36px !important;
}

.mr-36 {
  margin-right: 36px !important;
}

.pr-36 {
  padding-right: 36px !important;
}

.mt-38 {
  margin-top: 38px !important;
}

.pt-38 {
  padding-top: 38px !important;
}

.mb-38 {
  margin-bottom: 38px !important;
}

.pb-38 {
  padding-bottom: 38px !important;
}

.ml-38 {
  margin-left: 38px !important;
}

.pl-38 {
  padding-left: 38px !important;
}

.mr-38 {
  margin-right: 38px !important;
}

.pr-38 {
  padding-right: 38px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.mt-42 {
  margin-top: 42px !important;
}

.pt-42 {
  padding-top: 42px !important;
}

.mb-42 {
  margin-bottom: 42px !important;
}

.pb-42 {
  padding-bottom: 42px !important;
}

.ml-42 {
  margin-left: 42px !important;
}

.pl-42 {
  padding-left: 42px !important;
}

.mr-42 {
  margin-right: 42px !important;
}

.pr-42 {
  padding-right: 42px !important;
}

.mt-44 {
  margin-top: 44px !important;
}

.pt-44 {
  padding-top: 44px !important;
}

.mb-44 {
  margin-bottom: 44px !important;
}

.pb-44 {
  padding-bottom: 44px !important;
}

.ml-44 {
  margin-left: 44px !important;
}

.pl-44 {
  padding-left: 44px !important;
}

.mr-44 {
  margin-right: 44px !important;
}

.pr-44 {
  padding-right: 44px !important;
}

.mt-46 {
  margin-top: 46px !important;
}

.pt-46 {
  padding-top: 46px !important;
}

.mb-46 {
  margin-bottom: 46px !important;
}

.pb-46 {
  padding-bottom: 46px !important;
}

.ml-46 {
  margin-left: 46px !important;
}

.pl-46 {
  padding-left: 46px !important;
}

.mr-46 {
  margin-right: 46px !important;
}

.pr-46 {
  padding-right: 46px !important;
}

.mt-48 {
  margin-top: 48px !important;
}

.pt-48 {
  padding-top: 48px !important;
}

.mb-48 {
  margin-bottom: 48px !important;
}

.pb-48 {
  padding-bottom: 48px !important;
}

.ml-48 {
  margin-left: 48px !important;
}

.pl-48 {
  padding-left: 48px !important;
}

.mr-48 {
  margin-right: 48px !important;
}

.pr-48 {
  padding-right: 48px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

.mt-52 {
  margin-top: 52px !important;
}

.pt-52 {
  padding-top: 52px !important;
}

.mb-52 {
  margin-bottom: 52px !important;
}

.pb-52 {
  padding-bottom: 52px !important;
}

.ml-52 {
  margin-left: 52px !important;
}

.pl-52 {
  padding-left: 52px !important;
}

.mr-52 {
  margin-right: 52px !important;
}

.pr-52 {
  padding-right: 52px !important;
}

.mt-54 {
  margin-top: 54px !important;
}

.pt-54 {
  padding-top: 54px !important;
}

.mb-54 {
  margin-bottom: 54px !important;
}

.pb-54 {
  padding-bottom: 54px !important;
}

.ml-54 {
  margin-left: 54px !important;
}

.pl-54 {
  padding-left: 54px !important;
}

.mr-54 {
  margin-right: 54px !important;
}

.pr-54 {
  padding-right: 54px !important;
}

.mt-56 {
  margin-top: 56px !important;
}

.pt-56 {
  padding-top: 56px !important;
}

.mb-56 {
  margin-bottom: 56px !important;
}

.pb-56 {
  padding-bottom: 56px !important;
}

.ml-56 {
  margin-left: 56px !important;
}

.pl-56 {
  padding-left: 56px !important;
}

.mr-56 {
  margin-right: 56px !important;
}

.pr-56 {
  padding-right: 56px !important;
}

.mt-58 {
  margin-top: 58px !important;
}

.pt-58 {
  padding-top: 58px !important;
}

.mb-58 {
  margin-bottom: 58px !important;
}

.pb-58 {
  padding-bottom: 58px !important;
}

.ml-58 {
  margin-left: 58px !important;
}

.pl-58 {
  padding-left: 58px !important;
}

.mr-58 {
  margin-right: 58px !important;
}

.pr-58 {
  padding-right: 58px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.ml-60 {
  margin-left: 60px !important;
}

.pl-60 {
  padding-left: 60px !important;
}

.mr-60 {
  margin-right: 60px !important;
}

.pr-60 {
  padding-right: 60px !important;
}

.mt-62 {
  margin-top: 62px !important;
}

.pt-62 {
  padding-top: 62px !important;
}

.mb-62 {
  margin-bottom: 62px !important;
}

.pb-62 {
  padding-bottom: 62px !important;
}

.ml-62 {
  margin-left: 62px !important;
}

.pl-62 {
  padding-left: 62px !important;
}

.mr-62 {
  margin-right: 62px !important;
}

.pr-62 {
  padding-right: 62px !important;
}

.mt-64 {
  margin-top: 64px !important;
}

.pt-64 {
  padding-top: 64px !important;
}

.mb-64 {
  margin-bottom: 64px !important;
}

.pb-64 {
  padding-bottom: 64px !important;
}

.ml-64 {
  margin-left: 64px !important;
}

.pl-64 {
  padding-left: 64px !important;
}

.mr-64 {
  margin-right: 64px !important;
}

.pr-64 {
  padding-right: 64px !important;
}

.mt-66 {
  margin-top: 66px !important;
}

.pt-66 {
  padding-top: 66px !important;
}

.mb-66 {
  margin-bottom: 66px !important;
}

.pb-66 {
  padding-bottom: 66px !important;
}

.ml-66 {
  margin-left: 66px !important;
}

.pl-66 {
  padding-left: 66px !important;
}

.mr-66 {
  margin-right: 66px !important;
}

.pr-66 {
  padding-right: 66px !important;
}

.mt-68 {
  margin-top: 68px !important;
}

.pt-68 {
  padding-top: 68px !important;
}

.mb-68 {
  margin-bottom: 68px !important;
}

.pb-68 {
  padding-bottom: 68px !important;
}

.ml-68 {
  margin-left: 68px !important;
}

.pl-68 {
  padding-left: 68px !important;
}

.mr-68 {
  margin-right: 68px !important;
}

.pr-68 {
  padding-right: 68px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.ml-70 {
  margin-left: 70px !important;
}

.pl-70 {
  padding-left: 70px !important;
}

.mr-70 {
  margin-right: 70px !important;
}

.pr-70 {
  padding-right: 70px !important;
}

.mt-72 {
  margin-top: 72px !important;
}

.pt-72 {
  padding-top: 72px !important;
}

.mb-72 {
  margin-bottom: 72px !important;
}

.pb-72 {
  padding-bottom: 72px !important;
}

.ml-72 {
  margin-left: 72px !important;
}

.pl-72 {
  padding-left: 72px !important;
}

.mr-72 {
  margin-right: 72px !important;
}

.pr-72 {
  padding-right: 72px !important;
}

.wh-16-16 {
  width: 16px !important;
  height: 16px !important;
}

.wh-16-18 {
  width: 16px !important;
  height: 18px !important;
}

.wh-16-20 {
  width: 16px !important;
  height: 20px !important;
}

.wh-16-22 {
  width: 16px !important;
  height: 22px !important;
}

.wh-16-24 {
  width: 16px !important;
  height: 24px !important;
}

.wh-16-26 {
  width: 16px !important;
  height: 26px !important;
}

.wh-16-28 {
  width: 16px !important;
  height: 28px !important;
}

.wh-16-30 {
  width: 16px !important;
  height: 30px !important;
}

.wh-16-32 {
  width: 16px !important;
  height: 32px !important;
}

.wh-16-34 {
  width: 16px !important;
  height: 34px !important;
}

.wh-16-36 {
  width: 16px !important;
  height: 36px !important;
}

.wh-16-38 {
  width: 16px !important;
  height: 38px !important;
}

.wh-16-40 {
  width: 16px !important;
  height: 40px !important;
}

.wh-16-42 {
  width: 16px !important;
  height: 42px !important;
}

.wh-16-44 {
  width: 16px !important;
  height: 44px !important;
}

.wh-16-46 {
  width: 16px !important;
  height: 46px !important;
}

.wh-16-48 {
  width: 16px !important;
  height: 48px !important;
}

.wh-16-50 {
  width: 16px !important;
  height: 50px !important;
}

.wh-16-52 {
  width: 16px !important;
  height: 52px !important;
}

.wh-16-54 {
  width: 16px !important;
  height: 54px !important;
}

.wh-16-56 {
  width: 16px !important;
  height: 56px !important;
}

.wh-16-58 {
  width: 16px !important;
  height: 58px !important;
}

.wh-16-60 {
  width: 16px !important;
  height: 60px !important;
}

.wh-16-62 {
  width: 16px !important;
  height: 62px !important;
}

.wh-16-64 {
  width: 16px !important;
  height: 64px !important;
}

.wh-16-66 {
  width: 16px !important;
  height: 66px !important;
}

.wh-16-68 {
  width: 16px !important;
  height: 68px !important;
}

.wh-16-70 {
  width: 16px !important;
  height: 70px !important;
}

.wh-16-72 {
  width: 16px !important;
  height: 72px !important;
}

.wh-18-16 {
  width: 18px !important;
  height: 16px !important;
}

.wh-18-18 {
  width: 18px !important;
  height: 18px !important;
}

.wh-18-20 {
  width: 18px !important;
  height: 20px !important;
}

.wh-18-22 {
  width: 18px !important;
  height: 22px !important;
}

.wh-18-24 {
  width: 18px !important;
  height: 24px !important;
}

.wh-18-26 {
  width: 18px !important;
  height: 26px !important;
}

.wh-18-28 {
  width: 18px !important;
  height: 28px !important;
}

.wh-18-30 {
  width: 18px !important;
  height: 30px !important;
}

.wh-18-32 {
  width: 18px !important;
  height: 32px !important;
}

.wh-18-34 {
  width: 18px !important;
  height: 34px !important;
}

.wh-18-36 {
  width: 18px !important;
  height: 36px !important;
}

.wh-18-38 {
  width: 18px !important;
  height: 38px !important;
}

.wh-18-40 {
  width: 18px !important;
  height: 40px !important;
}

.wh-18-42 {
  width: 18px !important;
  height: 42px !important;
}

.wh-18-44 {
  width: 18px !important;
  height: 44px !important;
}

.wh-18-46 {
  width: 18px !important;
  height: 46px !important;
}

.wh-18-48 {
  width: 18px !important;
  height: 48px !important;
}

.wh-18-50 {
  width: 18px !important;
  height: 50px !important;
}

.wh-18-52 {
  width: 18px !important;
  height: 52px !important;
}

.wh-18-54 {
  width: 18px !important;
  height: 54px !important;
}

.wh-18-56 {
  width: 18px !important;
  height: 56px !important;
}

.wh-18-58 {
  width: 18px !important;
  height: 58px !important;
}

.wh-18-60 {
  width: 18px !important;
  height: 60px !important;
}

.wh-18-62 {
  width: 18px !important;
  height: 62px !important;
}

.wh-18-64 {
  width: 18px !important;
  height: 64px !important;
}

.wh-18-66 {
  width: 18px !important;
  height: 66px !important;
}

.wh-18-68 {
  width: 18px !important;
  height: 68px !important;
}

.wh-18-70 {
  width: 18px !important;
  height: 70px !important;
}

.wh-18-72 {
  width: 18px !important;
  height: 72px !important;
}

.wh-20-16 {
  width: 20px !important;
  height: 16px !important;
}

.wh-20-18 {
  width: 20px !important;
  height: 18px !important;
}

.wh-20-20 {
  width: 20px !important;
  height: 20px !important;
}

.wh-20-22 {
  width: 20px !important;
  height: 22px !important;
}

.wh-20-24 {
  width: 20px !important;
  height: 24px !important;
}

.wh-20-26 {
  width: 20px !important;
  height: 26px !important;
}

.wh-20-28 {
  width: 20px !important;
  height: 28px !important;
}

.wh-20-30 {
  width: 20px !important;
  height: 30px !important;
}

.wh-20-32 {
  width: 20px !important;
  height: 32px !important;
}

.wh-20-34 {
  width: 20px !important;
  height: 34px !important;
}

.wh-20-36 {
  width: 20px !important;
  height: 36px !important;
}

.wh-20-38 {
  width: 20px !important;
  height: 38px !important;
}

.wh-20-40 {
  width: 20px !important;
  height: 40px !important;
}

.wh-20-42 {
  width: 20px !important;
  height: 42px !important;
}

.wh-20-44 {
  width: 20px !important;
  height: 44px !important;
}

.wh-20-46 {
  width: 20px !important;
  height: 46px !important;
}

.wh-20-48 {
  width: 20px !important;
  height: 48px !important;
}

.wh-20-50 {
  width: 20px !important;
  height: 50px !important;
}

.wh-20-52 {
  width: 20px !important;
  height: 52px !important;
}

.wh-20-54 {
  width: 20px !important;
  height: 54px !important;
}

.wh-20-56 {
  width: 20px !important;
  height: 56px !important;
}

.wh-20-58 {
  width: 20px !important;
  height: 58px !important;
}

.wh-20-60 {
  width: 20px !important;
  height: 60px !important;
}

.wh-20-62 {
  width: 20px !important;
  height: 62px !important;
}

.wh-20-64 {
  width: 20px !important;
  height: 64px !important;
}

.wh-20-66 {
  width: 20px !important;
  height: 66px !important;
}

.wh-20-68 {
  width: 20px !important;
  height: 68px !important;
}

.wh-20-70 {
  width: 20px !important;
  height: 70px !important;
}

.wh-20-72 {
  width: 20px !important;
  height: 72px !important;
}

.wh-22-16 {
  width: 22px !important;
  height: 16px !important;
}

.wh-22-18 {
  width: 22px !important;
  height: 18px !important;
}

.wh-22-20 {
  width: 22px !important;
  height: 20px !important;
}

.wh-22-22 {
  width: 22px !important;
  height: 22px !important;
}

.wh-22-24 {
  width: 22px !important;
  height: 24px !important;
}

.wh-22-26 {
  width: 22px !important;
  height: 26px !important;
}

.wh-22-28 {
  width: 22px !important;
  height: 28px !important;
}

.wh-22-30 {
  width: 22px !important;
  height: 30px !important;
}

.wh-22-32 {
  width: 22px !important;
  height: 32px !important;
}

.wh-22-34 {
  width: 22px !important;
  height: 34px !important;
}

.wh-22-36 {
  width: 22px !important;
  height: 36px !important;
}

.wh-22-38 {
  width: 22px !important;
  height: 38px !important;
}

.wh-22-40 {
  width: 22px !important;
  height: 40px !important;
}

.wh-22-42 {
  width: 22px !important;
  height: 42px !important;
}

.wh-22-44 {
  width: 22px !important;
  height: 44px !important;
}

.wh-22-46 {
  width: 22px !important;
  height: 46px !important;
}

.wh-22-48 {
  width: 22px !important;
  height: 48px !important;
}

.wh-22-50 {
  width: 22px !important;
  height: 50px !important;
}

.wh-22-52 {
  width: 22px !important;
  height: 52px !important;
}

.wh-22-54 {
  width: 22px !important;
  height: 54px !important;
}

.wh-22-56 {
  width: 22px !important;
  height: 56px !important;
}

.wh-22-58 {
  width: 22px !important;
  height: 58px !important;
}

.wh-22-60 {
  width: 22px !important;
  height: 60px !important;
}

.wh-22-62 {
  width: 22px !important;
  height: 62px !important;
}

.wh-22-64 {
  width: 22px !important;
  height: 64px !important;
}

.wh-22-66 {
  width: 22px !important;
  height: 66px !important;
}

.wh-22-68 {
  width: 22px !important;
  height: 68px !important;
}

.wh-22-70 {
  width: 22px !important;
  height: 70px !important;
}

.wh-22-72 {
  width: 22px !important;
  height: 72px !important;
}

.wh-24-16 {
  width: 24px !important;
  height: 16px !important;
}

.wh-24-18 {
  width: 24px !important;
  height: 18px !important;
}

.wh-24-20 {
  width: 24px !important;
  height: 20px !important;
}

.wh-24-22 {
  width: 24px !important;
  height: 22px !important;
}

.wh-24-24 {
  width: 24px !important;
  height: 24px !important;
}

.wh-24-26 {
  width: 24px !important;
  height: 26px !important;
}

.wh-24-28 {
  width: 24px !important;
  height: 28px !important;
}

.wh-24-30 {
  width: 24px !important;
  height: 30px !important;
}

.wh-24-32 {
  width: 24px !important;
  height: 32px !important;
}

.wh-24-34 {
  width: 24px !important;
  height: 34px !important;
}

.wh-24-36 {
  width: 24px !important;
  height: 36px !important;
}

.wh-24-38 {
  width: 24px !important;
  height: 38px !important;
}

.wh-24-40 {
  width: 24px !important;
  height: 40px !important;
}

.wh-24-42 {
  width: 24px !important;
  height: 42px !important;
}

.wh-24-44 {
  width: 24px !important;
  height: 44px !important;
}

.wh-24-46 {
  width: 24px !important;
  height: 46px !important;
}

.wh-24-48 {
  width: 24px !important;
  height: 48px !important;
}

.wh-24-50 {
  width: 24px !important;
  height: 50px !important;
}

.wh-24-52 {
  width: 24px !important;
  height: 52px !important;
}

.wh-24-54 {
  width: 24px !important;
  height: 54px !important;
}

.wh-24-56 {
  width: 24px !important;
  height: 56px !important;
}

.wh-24-58 {
  width: 24px !important;
  height: 58px !important;
}

.wh-24-60 {
  width: 24px !important;
  height: 60px !important;
}

.wh-24-62 {
  width: 24px !important;
  height: 62px !important;
}

.wh-24-64 {
  width: 24px !important;
  height: 64px !important;
}

.wh-24-66 {
  width: 24px !important;
  height: 66px !important;
}

.wh-24-68 {
  width: 24px !important;
  height: 68px !important;
}

.wh-24-70 {
  width: 24px !important;
  height: 70px !important;
}

.wh-24-72 {
  width: 24px !important;
  height: 72px !important;
}

.wh-26-16 {
  width: 26px !important;
  height: 16px !important;
}

.wh-26-18 {
  width: 26px !important;
  height: 18px !important;
}

.wh-26-20 {
  width: 26px !important;
  height: 20px !important;
}

.wh-26-22 {
  width: 26px !important;
  height: 22px !important;
}

.wh-26-24 {
  width: 26px !important;
  height: 24px !important;
}

.wh-26-26 {
  width: 26px !important;
  height: 26px !important;
}

.wh-26-28 {
  width: 26px !important;
  height: 28px !important;
}

.wh-26-30 {
  width: 26px !important;
  height: 30px !important;
}

.wh-26-32 {
  width: 26px !important;
  height: 32px !important;
}

.wh-26-34 {
  width: 26px !important;
  height: 34px !important;
}

.wh-26-36 {
  width: 26px !important;
  height: 36px !important;
}

.wh-26-38 {
  width: 26px !important;
  height: 38px !important;
}

.wh-26-40 {
  width: 26px !important;
  height: 40px !important;
}

.wh-26-42 {
  width: 26px !important;
  height: 42px !important;
}

.wh-26-44 {
  width: 26px !important;
  height: 44px !important;
}

.wh-26-46 {
  width: 26px !important;
  height: 46px !important;
}

.wh-26-48 {
  width: 26px !important;
  height: 48px !important;
}

.wh-26-50 {
  width: 26px !important;
  height: 50px !important;
}

.wh-26-52 {
  width: 26px !important;
  height: 52px !important;
}

.wh-26-54 {
  width: 26px !important;
  height: 54px !important;
}

.wh-26-56 {
  width: 26px !important;
  height: 56px !important;
}

.wh-26-58 {
  width: 26px !important;
  height: 58px !important;
}

.wh-26-60 {
  width: 26px !important;
  height: 60px !important;
}

.wh-26-62 {
  width: 26px !important;
  height: 62px !important;
}

.wh-26-64 {
  width: 26px !important;
  height: 64px !important;
}

.wh-26-66 {
  width: 26px !important;
  height: 66px !important;
}

.wh-26-68 {
  width: 26px !important;
  height: 68px !important;
}

.wh-26-70 {
  width: 26px !important;
  height: 70px !important;
}

.wh-26-72 {
  width: 26px !important;
  height: 72px !important;
}

.wh-28-16 {
  width: 28px !important;
  height: 16px !important;
}

.wh-28-18 {
  width: 28px !important;
  height: 18px !important;
}

.wh-28-20 {
  width: 28px !important;
  height: 20px !important;
}

.wh-28-22 {
  width: 28px !important;
  height: 22px !important;
}

.wh-28-24 {
  width: 28px !important;
  height: 24px !important;
}

.wh-28-26 {
  width: 28px !important;
  height: 26px !important;
}

.wh-28-28 {
  width: 28px !important;
  height: 28px !important;
}

.wh-28-30 {
  width: 28px !important;
  height: 30px !important;
}

.wh-28-32 {
  width: 28px !important;
  height: 32px !important;
}

.wh-28-34 {
  width: 28px !important;
  height: 34px !important;
}

.wh-28-36 {
  width: 28px !important;
  height: 36px !important;
}

.wh-28-38 {
  width: 28px !important;
  height: 38px !important;
}

.wh-28-40 {
  width: 28px !important;
  height: 40px !important;
}

.wh-28-42 {
  width: 28px !important;
  height: 42px !important;
}

.wh-28-44 {
  width: 28px !important;
  height: 44px !important;
}

.wh-28-46 {
  width: 28px !important;
  height: 46px !important;
}

.wh-28-48 {
  width: 28px !important;
  height: 48px !important;
}

.wh-28-50 {
  width: 28px !important;
  height: 50px !important;
}

.wh-28-52 {
  width: 28px !important;
  height: 52px !important;
}

.wh-28-54 {
  width: 28px !important;
  height: 54px !important;
}

.wh-28-56 {
  width: 28px !important;
  height: 56px !important;
}

.wh-28-58 {
  width: 28px !important;
  height: 58px !important;
}

.wh-28-60 {
  width: 28px !important;
  height: 60px !important;
}

.wh-28-62 {
  width: 28px !important;
  height: 62px !important;
}

.wh-28-64 {
  width: 28px !important;
  height: 64px !important;
}

.wh-28-66 {
  width: 28px !important;
  height: 66px !important;
}

.wh-28-68 {
  width: 28px !important;
  height: 68px !important;
}

.wh-28-70 {
  width: 28px !important;
  height: 70px !important;
}

.wh-28-72 {
  width: 28px !important;
  height: 72px !important;
}

.wh-30-16 {
  width: 30px !important;
  height: 16px !important;
}

.wh-30-18 {
  width: 30px !important;
  height: 18px !important;
}

.wh-30-20 {
  width: 30px !important;
  height: 20px !important;
}

.wh-30-22 {
  width: 30px !important;
  height: 22px !important;
}

.wh-30-24 {
  width: 30px !important;
  height: 24px !important;
}

.wh-30-26 {
  width: 30px !important;
  height: 26px !important;
}

.wh-30-28 {
  width: 30px !important;
  height: 28px !important;
}

.wh-30-30 {
  width: 30px !important;
  height: 30px !important;
}

.wh-30-32 {
  width: 30px !important;
  height: 32px !important;
}

.wh-30-34 {
  width: 30px !important;
  height: 34px !important;
}

.wh-30-36 {
  width: 30px !important;
  height: 36px !important;
}

.wh-30-38 {
  width: 30px !important;
  height: 38px !important;
}

.wh-30-40 {
  width: 30px !important;
  height: 40px !important;
}

.wh-30-42 {
  width: 30px !important;
  height: 42px !important;
}

.wh-30-44 {
  width: 30px !important;
  height: 44px !important;
}

.wh-30-46 {
  width: 30px !important;
  height: 46px !important;
}

.wh-30-48 {
  width: 30px !important;
  height: 48px !important;
}

.wh-30-50 {
  width: 30px !important;
  height: 50px !important;
}

.wh-30-52 {
  width: 30px !important;
  height: 52px !important;
}

.wh-30-54 {
  width: 30px !important;
  height: 54px !important;
}

.wh-30-56 {
  width: 30px !important;
  height: 56px !important;
}

.wh-30-58 {
  width: 30px !important;
  height: 58px !important;
}

.wh-30-60 {
  width: 30px !important;
  height: 60px !important;
}

.wh-30-62 {
  width: 30px !important;
  height: 62px !important;
}

.wh-30-64 {
  width: 30px !important;
  height: 64px !important;
}

.wh-30-66 {
  width: 30px !important;
  height: 66px !important;
}

.wh-30-68 {
  width: 30px !important;
  height: 68px !important;
}

.wh-30-70 {
  width: 30px !important;
  height: 70px !important;
}

.wh-30-72 {
  width: 30px !important;
  height: 72px !important;
}

.wh-32-16 {
  width: 32px !important;
  height: 16px !important;
}

.wh-32-18 {
  width: 32px !important;
  height: 18px !important;
}

.wh-32-20 {
  width: 32px !important;
  height: 20px !important;
}

.wh-32-22 {
  width: 32px !important;
  height: 22px !important;
}

.wh-32-24 {
  width: 32px !important;
  height: 24px !important;
}

.wh-32-26 {
  width: 32px !important;
  height: 26px !important;
}

.wh-32-28 {
  width: 32px !important;
  height: 28px !important;
}

.wh-32-30 {
  width: 32px !important;
  height: 30px !important;
}

.wh-32-32 {
  width: 32px !important;
  height: 32px !important;
}

.wh-32-34 {
  width: 32px !important;
  height: 34px !important;
}

.wh-32-36 {
  width: 32px !important;
  height: 36px !important;
}

.wh-32-38 {
  width: 32px !important;
  height: 38px !important;
}

.wh-32-40 {
  width: 32px !important;
  height: 40px !important;
}

.wh-32-42 {
  width: 32px !important;
  height: 42px !important;
}

.wh-32-44 {
  width: 32px !important;
  height: 44px !important;
}

.wh-32-46 {
  width: 32px !important;
  height: 46px !important;
}

.wh-32-48 {
  width: 32px !important;
  height: 48px !important;
}

.wh-32-50 {
  width: 32px !important;
  height: 50px !important;
}

.wh-32-52 {
  width: 32px !important;
  height: 52px !important;
}

.wh-32-54 {
  width: 32px !important;
  height: 54px !important;
}

.wh-32-56 {
  width: 32px !important;
  height: 56px !important;
}

.wh-32-58 {
  width: 32px !important;
  height: 58px !important;
}

.wh-32-60 {
  width: 32px !important;
  height: 60px !important;
}

.wh-32-62 {
  width: 32px !important;
  height: 62px !important;
}

.wh-32-64 {
  width: 32px !important;
  height: 64px !important;
}

.wh-32-66 {
  width: 32px !important;
  height: 66px !important;
}

.wh-32-68 {
  width: 32px !important;
  height: 68px !important;
}

.wh-32-70 {
  width: 32px !important;
  height: 70px !important;
}

.wh-32-72 {
  width: 32px !important;
  height: 72px !important;
}

.wh-34-16 {
  width: 34px !important;
  height: 16px !important;
}

.wh-34-18 {
  width: 34px !important;
  height: 18px !important;
}

.wh-34-20 {
  width: 34px !important;
  height: 20px !important;
}

.wh-34-22 {
  width: 34px !important;
  height: 22px !important;
}

.wh-34-24 {
  width: 34px !important;
  height: 24px !important;
}

.wh-34-26 {
  width: 34px !important;
  height: 26px !important;
}

.wh-34-28 {
  width: 34px !important;
  height: 28px !important;
}

.wh-34-30 {
  width: 34px !important;
  height: 30px !important;
}

.wh-34-32 {
  width: 34px !important;
  height: 32px !important;
}

.wh-34-34 {
  width: 34px !important;
  height: 34px !important;
}

.wh-34-36 {
  width: 34px !important;
  height: 36px !important;
}

.wh-34-38 {
  width: 34px !important;
  height: 38px !important;
}

.wh-34-40 {
  width: 34px !important;
  height: 40px !important;
}

.wh-34-42 {
  width: 34px !important;
  height: 42px !important;
}

.wh-34-44 {
  width: 34px !important;
  height: 44px !important;
}

.wh-34-46 {
  width: 34px !important;
  height: 46px !important;
}

.wh-34-48 {
  width: 34px !important;
  height: 48px !important;
}

.wh-34-50 {
  width: 34px !important;
  height: 50px !important;
}

.wh-34-52 {
  width: 34px !important;
  height: 52px !important;
}

.wh-34-54 {
  width: 34px !important;
  height: 54px !important;
}

.wh-34-56 {
  width: 34px !important;
  height: 56px !important;
}

.wh-34-58 {
  width: 34px !important;
  height: 58px !important;
}

.wh-34-60 {
  width: 34px !important;
  height: 60px !important;
}

.wh-34-62 {
  width: 34px !important;
  height: 62px !important;
}

.wh-34-64 {
  width: 34px !important;
  height: 64px !important;
}

.wh-34-66 {
  width: 34px !important;
  height: 66px !important;
}

.wh-34-68 {
  width: 34px !important;
  height: 68px !important;
}

.wh-34-70 {
  width: 34px !important;
  height: 70px !important;
}

.wh-34-72 {
  width: 34px !important;
  height: 72px !important;
}

.wh-36-16 {
  width: 36px !important;
  height: 16px !important;
}

.wh-36-18 {
  width: 36px !important;
  height: 18px !important;
}

.wh-36-20 {
  width: 36px !important;
  height: 20px !important;
}

.wh-36-22 {
  width: 36px !important;
  height: 22px !important;
}

.wh-36-24 {
  width: 36px !important;
  height: 24px !important;
}

.wh-36-26 {
  width: 36px !important;
  height: 26px !important;
}

.wh-36-28 {
  width: 36px !important;
  height: 28px !important;
}

.wh-36-30 {
  width: 36px !important;
  height: 30px !important;
}

.wh-36-32 {
  width: 36px !important;
  height: 32px !important;
}

.wh-36-34 {
  width: 36px !important;
  height: 34px !important;
}

.wh-36-36 {
  width: 36px !important;
  height: 36px !important;
}

.wh-36-38 {
  width: 36px !important;
  height: 38px !important;
}

.wh-36-40 {
  width: 36px !important;
  height: 40px !important;
}

.wh-36-42 {
  width: 36px !important;
  height: 42px !important;
}

.wh-36-44 {
  width: 36px !important;
  height: 44px !important;
}

.wh-36-46 {
  width: 36px !important;
  height: 46px !important;
}

.wh-36-48 {
  width: 36px !important;
  height: 48px !important;
}

.wh-36-50 {
  width: 36px !important;
  height: 50px !important;
}

.wh-36-52 {
  width: 36px !important;
  height: 52px !important;
}

.wh-36-54 {
  width: 36px !important;
  height: 54px !important;
}

.wh-36-56 {
  width: 36px !important;
  height: 56px !important;
}

.wh-36-58 {
  width: 36px !important;
  height: 58px !important;
}

.wh-36-60 {
  width: 36px !important;
  height: 60px !important;
}

.wh-36-62 {
  width: 36px !important;
  height: 62px !important;
}

.wh-36-64 {
  width: 36px !important;
  height: 64px !important;
}

.wh-36-66 {
  width: 36px !important;
  height: 66px !important;
}

.wh-36-68 {
  width: 36px !important;
  height: 68px !important;
}

.wh-36-70 {
  width: 36px !important;
  height: 70px !important;
}

.wh-36-72 {
  width: 36px !important;
  height: 72px !important;
}

.wh-38-16 {
  width: 38px !important;
  height: 16px !important;
}

.wh-38-18 {
  width: 38px !important;
  height: 18px !important;
}

.wh-38-20 {
  width: 38px !important;
  height: 20px !important;
}

.wh-38-22 {
  width: 38px !important;
  height: 22px !important;
}

.wh-38-24 {
  width: 38px !important;
  height: 24px !important;
}

.wh-38-26 {
  width: 38px !important;
  height: 26px !important;
}

.wh-38-28 {
  width: 38px !important;
  height: 28px !important;
}

.wh-38-30 {
  width: 38px !important;
  height: 30px !important;
}

.wh-38-32 {
  width: 38px !important;
  height: 32px !important;
}

.wh-38-34 {
  width: 38px !important;
  height: 34px !important;
}

.wh-38-36 {
  width: 38px !important;
  height: 36px !important;
}

.wh-38-38 {
  width: 38px !important;
  height: 38px !important;
}

.wh-38-40 {
  width: 38px !important;
  height: 40px !important;
}

.wh-38-42 {
  width: 38px !important;
  height: 42px !important;
}

.wh-38-44 {
  width: 38px !important;
  height: 44px !important;
}

.wh-38-46 {
  width: 38px !important;
  height: 46px !important;
}

.wh-38-48 {
  width: 38px !important;
  height: 48px !important;
}

.wh-38-50 {
  width: 38px !important;
  height: 50px !important;
}

.wh-38-52 {
  width: 38px !important;
  height: 52px !important;
}

.wh-38-54 {
  width: 38px !important;
  height: 54px !important;
}

.wh-38-56 {
  width: 38px !important;
  height: 56px !important;
}

.wh-38-58 {
  width: 38px !important;
  height: 58px !important;
}

.wh-38-60 {
  width: 38px !important;
  height: 60px !important;
}

.wh-38-62 {
  width: 38px !important;
  height: 62px !important;
}

.wh-38-64 {
  width: 38px !important;
  height: 64px !important;
}

.wh-38-66 {
  width: 38px !important;
  height: 66px !important;
}

.wh-38-68 {
  width: 38px !important;
  height: 68px !important;
}

.wh-38-70 {
  width: 38px !important;
  height: 70px !important;
}

.wh-38-72 {
  width: 38px !important;
  height: 72px !important;
}

.wh-40-16 {
  width: 40px !important;
  height: 16px !important;
}

.wh-40-18 {
  width: 40px !important;
  height: 18px !important;
}

.wh-40-20 {
  width: 40px !important;
  height: 20px !important;
}

.wh-40-22 {
  width: 40px !important;
  height: 22px !important;
}

.wh-40-24 {
  width: 40px !important;
  height: 24px !important;
}

.wh-40-26 {
  width: 40px !important;
  height: 26px !important;
}

.wh-40-28 {
  width: 40px !important;
  height: 28px !important;
}

.wh-40-30 {
  width: 40px !important;
  height: 30px !important;
}

.wh-40-32 {
  width: 40px !important;
  height: 32px !important;
}

.wh-40-34 {
  width: 40px !important;
  height: 34px !important;
}

.wh-40-36 {
  width: 40px !important;
  height: 36px !important;
}

.wh-40-38 {
  width: 40px !important;
  height: 38px !important;
}

.wh-40-40 {
  width: 40px !important;
  height: 40px !important;
}

.wh-40-42 {
  width: 40px !important;
  height: 42px !important;
}

.wh-40-44 {
  width: 40px !important;
  height: 44px !important;
}

.wh-40-46 {
  width: 40px !important;
  height: 46px !important;
}

.wh-40-48 {
  width: 40px !important;
  height: 48px !important;
}

.wh-40-50 {
  width: 40px !important;
  height: 50px !important;
}

.wh-40-52 {
  width: 40px !important;
  height: 52px !important;
}

.wh-40-54 {
  width: 40px !important;
  height: 54px !important;
}

.wh-40-56 {
  width: 40px !important;
  height: 56px !important;
}

.wh-40-58 {
  width: 40px !important;
  height: 58px !important;
}

.wh-40-60 {
  width: 40px !important;
  height: 60px !important;
}

.wh-40-62 {
  width: 40px !important;
  height: 62px !important;
}

.wh-40-64 {
  width: 40px !important;
  height: 64px !important;
}

.wh-40-66 {
  width: 40px !important;
  height: 66px !important;
}

.wh-40-68 {
  width: 40px !important;
  height: 68px !important;
}

.wh-40-70 {
  width: 40px !important;
  height: 70px !important;
}

.wh-40-72 {
  width: 40px !important;
  height: 72px !important;
}

.wh-42-16 {
  width: 42px !important;
  height: 16px !important;
}

.wh-42-18 {
  width: 42px !important;
  height: 18px !important;
}

.wh-42-20 {
  width: 42px !important;
  height: 20px !important;
}

.wh-42-22 {
  width: 42px !important;
  height: 22px !important;
}

.wh-42-24 {
  width: 42px !important;
  height: 24px !important;
}

.wh-42-26 {
  width: 42px !important;
  height: 26px !important;
}

.wh-42-28 {
  width: 42px !important;
  height: 28px !important;
}

.wh-42-30 {
  width: 42px !important;
  height: 30px !important;
}

.wh-42-32 {
  width: 42px !important;
  height: 32px !important;
}

.wh-42-34 {
  width: 42px !important;
  height: 34px !important;
}

.wh-42-36 {
  width: 42px !important;
  height: 36px !important;
}

.wh-42-38 {
  width: 42px !important;
  height: 38px !important;
}

.wh-42-40 {
  width: 42px !important;
  height: 40px !important;
}

.wh-42-42 {
  width: 42px !important;
  height: 42px !important;
}

.wh-42-44 {
  width: 42px !important;
  height: 44px !important;
}

.wh-42-46 {
  width: 42px !important;
  height: 46px !important;
}

.wh-42-48 {
  width: 42px !important;
  height: 48px !important;
}

.wh-42-50 {
  width: 42px !important;
  height: 50px !important;
}

.wh-42-52 {
  width: 42px !important;
  height: 52px !important;
}

.wh-42-54 {
  width: 42px !important;
  height: 54px !important;
}

.wh-42-56 {
  width: 42px !important;
  height: 56px !important;
}

.wh-42-58 {
  width: 42px !important;
  height: 58px !important;
}

.wh-42-60 {
  width: 42px !important;
  height: 60px !important;
}

.wh-42-62 {
  width: 42px !important;
  height: 62px !important;
}

.wh-42-64 {
  width: 42px !important;
  height: 64px !important;
}

.wh-42-66 {
  width: 42px !important;
  height: 66px !important;
}

.wh-42-68 {
  width: 42px !important;
  height: 68px !important;
}

.wh-42-70 {
  width: 42px !important;
  height: 70px !important;
}

.wh-42-72 {
  width: 42px !important;
  height: 72px !important;
}

.wh-44-16 {
  width: 44px !important;
  height: 16px !important;
}

.wh-44-18 {
  width: 44px !important;
  height: 18px !important;
}

.wh-44-20 {
  width: 44px !important;
  height: 20px !important;
}

.wh-44-22 {
  width: 44px !important;
  height: 22px !important;
}

.wh-44-24 {
  width: 44px !important;
  height: 24px !important;
}

.wh-44-26 {
  width: 44px !important;
  height: 26px !important;
}

.wh-44-28 {
  width: 44px !important;
  height: 28px !important;
}

.wh-44-30 {
  width: 44px !important;
  height: 30px !important;
}

.wh-44-32 {
  width: 44px !important;
  height: 32px !important;
}

.wh-44-34 {
  width: 44px !important;
  height: 34px !important;
}

.wh-44-36 {
  width: 44px !important;
  height: 36px !important;
}

.wh-44-38 {
  width: 44px !important;
  height: 38px !important;
}

.wh-44-40 {
  width: 44px !important;
  height: 40px !important;
}

.wh-44-42 {
  width: 44px !important;
  height: 42px !important;
}

.wh-44-44 {
  width: 44px !important;
  height: 44px !important;
}

.wh-44-46 {
  width: 44px !important;
  height: 46px !important;
}

.wh-44-48 {
  width: 44px !important;
  height: 48px !important;
}

.wh-44-50 {
  width: 44px !important;
  height: 50px !important;
}

.wh-44-52 {
  width: 44px !important;
  height: 52px !important;
}

.wh-44-54 {
  width: 44px !important;
  height: 54px !important;
}

.wh-44-56 {
  width: 44px !important;
  height: 56px !important;
}

.wh-44-58 {
  width: 44px !important;
  height: 58px !important;
}

.wh-44-60 {
  width: 44px !important;
  height: 60px !important;
}

.wh-44-62 {
  width: 44px !important;
  height: 62px !important;
}

.wh-44-64 {
  width: 44px !important;
  height: 64px !important;
}

.wh-44-66 {
  width: 44px !important;
  height: 66px !important;
}

.wh-44-68 {
  width: 44px !important;
  height: 68px !important;
}

.wh-44-70 {
  width: 44px !important;
  height: 70px !important;
}

.wh-44-72 {
  width: 44px !important;
  height: 72px !important;
}

.wh-46-16 {
  width: 46px !important;
  height: 16px !important;
}

.wh-46-18 {
  width: 46px !important;
  height: 18px !important;
}

.wh-46-20 {
  width: 46px !important;
  height: 20px !important;
}

.wh-46-22 {
  width: 46px !important;
  height: 22px !important;
}

.wh-46-24 {
  width: 46px !important;
  height: 24px !important;
}

.wh-46-26 {
  width: 46px !important;
  height: 26px !important;
}

.wh-46-28 {
  width: 46px !important;
  height: 28px !important;
}

.wh-46-30 {
  width: 46px !important;
  height: 30px !important;
}

.wh-46-32 {
  width: 46px !important;
  height: 32px !important;
}

.wh-46-34 {
  width: 46px !important;
  height: 34px !important;
}

.wh-46-36 {
  width: 46px !important;
  height: 36px !important;
}

.wh-46-38 {
  width: 46px !important;
  height: 38px !important;
}

.wh-46-40 {
  width: 46px !important;
  height: 40px !important;
}

.wh-46-42 {
  width: 46px !important;
  height: 42px !important;
}

.wh-46-44 {
  width: 46px !important;
  height: 44px !important;
}

.wh-46-46 {
  width: 46px !important;
  height: 46px !important;
}

.wh-46-48 {
  width: 46px !important;
  height: 48px !important;
}

.wh-46-50 {
  width: 46px !important;
  height: 50px !important;
}

.wh-46-52 {
  width: 46px !important;
  height: 52px !important;
}

.wh-46-54 {
  width: 46px !important;
  height: 54px !important;
}

.wh-46-56 {
  width: 46px !important;
  height: 56px !important;
}

.wh-46-58 {
  width: 46px !important;
  height: 58px !important;
}

.wh-46-60 {
  width: 46px !important;
  height: 60px !important;
}

.wh-46-62 {
  width: 46px !important;
  height: 62px !important;
}

.wh-46-64 {
  width: 46px !important;
  height: 64px !important;
}

.wh-46-66 {
  width: 46px !important;
  height: 66px !important;
}

.wh-46-68 {
  width: 46px !important;
  height: 68px !important;
}

.wh-46-70 {
  width: 46px !important;
  height: 70px !important;
}

.wh-46-72 {
  width: 46px !important;
  height: 72px !important;
}

.wh-48-16 {
  width: 48px !important;
  height: 16px !important;
}

.wh-48-18 {
  width: 48px !important;
  height: 18px !important;
}

.wh-48-20 {
  width: 48px !important;
  height: 20px !important;
}

.wh-48-22 {
  width: 48px !important;
  height: 22px !important;
}

.wh-48-24 {
  width: 48px !important;
  height: 24px !important;
}

.wh-48-26 {
  width: 48px !important;
  height: 26px !important;
}

.wh-48-28 {
  width: 48px !important;
  height: 28px !important;
}

.wh-48-30 {
  width: 48px !important;
  height: 30px !important;
}

.wh-48-32 {
  width: 48px !important;
  height: 32px !important;
}

.wh-48-34 {
  width: 48px !important;
  height: 34px !important;
}

.wh-48-36 {
  width: 48px !important;
  height: 36px !important;
}

.wh-48-38 {
  width: 48px !important;
  height: 38px !important;
}

.wh-48-40 {
  width: 48px !important;
  height: 40px !important;
}

.wh-48-42 {
  width: 48px !important;
  height: 42px !important;
}

.wh-48-44 {
  width: 48px !important;
  height: 44px !important;
}

.wh-48-46 {
  width: 48px !important;
  height: 46px !important;
}

.wh-48-48 {
  width: 48px !important;
  height: 48px !important;
}

.wh-48-50 {
  width: 48px !important;
  height: 50px !important;
}

.wh-48-52 {
  width: 48px !important;
  height: 52px !important;
}

.wh-48-54 {
  width: 48px !important;
  height: 54px !important;
}

.wh-48-56 {
  width: 48px !important;
  height: 56px !important;
}

.wh-48-58 {
  width: 48px !important;
  height: 58px !important;
}

.wh-48-60 {
  width: 48px !important;
  height: 60px !important;
}

.wh-48-62 {
  width: 48px !important;
  height: 62px !important;
}

.wh-48-64 {
  width: 48px !important;
  height: 64px !important;
}

.wh-48-66 {
  width: 48px !important;
  height: 66px !important;
}

.wh-48-68 {
  width: 48px !important;
  height: 68px !important;
}

.wh-48-70 {
  width: 48px !important;
  height: 70px !important;
}

.wh-48-72 {
  width: 48px !important;
  height: 72px !important;
}

.wh-50-16 {
  width: 50px !important;
  height: 16px !important;
}

.wh-50-18 {
  width: 50px !important;
  height: 18px !important;
}

.wh-50-20 {
  width: 50px !important;
  height: 20px !important;
}

.wh-50-22 {
  width: 50px !important;
  height: 22px !important;
}

.wh-50-24 {
  width: 50px !important;
  height: 24px !important;
}

.wh-50-26 {
  width: 50px !important;
  height: 26px !important;
}

.wh-50-28 {
  width: 50px !important;
  height: 28px !important;
}

.wh-50-30 {
  width: 50px !important;
  height: 30px !important;
}

.wh-50-32 {
  width: 50px !important;
  height: 32px !important;
}

.wh-50-34 {
  width: 50px !important;
  height: 34px !important;
}

.wh-50-36 {
  width: 50px !important;
  height: 36px !important;
}

.wh-50-38 {
  width: 50px !important;
  height: 38px !important;
}

.wh-50-40 {
  width: 50px !important;
  height: 40px !important;
}

.wh-50-42 {
  width: 50px !important;
  height: 42px !important;
}

.wh-50-44 {
  width: 50px !important;
  height: 44px !important;
}

.wh-50-46 {
  width: 50px !important;
  height: 46px !important;
}

.wh-50-48 {
  width: 50px !important;
  height: 48px !important;
}

.wh-50-50 {
  width: 50px !important;
  height: 50px !important;
}

.wh-50-52 {
  width: 50px !important;
  height: 52px !important;
}

.wh-50-54 {
  width: 50px !important;
  height: 54px !important;
}

.wh-50-56 {
  width: 50px !important;
  height: 56px !important;
}

.wh-50-58 {
  width: 50px !important;
  height: 58px !important;
}

.wh-50-60 {
  width: 50px !important;
  height: 60px !important;
}

.wh-50-62 {
  width: 50px !important;
  height: 62px !important;
}

.wh-50-64 {
  width: 50px !important;
  height: 64px !important;
}

.wh-50-66 {
  width: 50px !important;
  height: 66px !important;
}

.wh-50-68 {
  width: 50px !important;
  height: 68px !important;
}

.wh-50-70 {
  width: 50px !important;
  height: 70px !important;
}

.wh-50-72 {
  width: 50px !important;
  height: 72px !important;
}

.wh-52-16 {
  width: 52px !important;
  height: 16px !important;
}

.wh-52-18 {
  width: 52px !important;
  height: 18px !important;
}

.wh-52-20 {
  width: 52px !important;
  height: 20px !important;
}

.wh-52-22 {
  width: 52px !important;
  height: 22px !important;
}

.wh-52-24 {
  width: 52px !important;
  height: 24px !important;
}

.wh-52-26 {
  width: 52px !important;
  height: 26px !important;
}

.wh-52-28 {
  width: 52px !important;
  height: 28px !important;
}

.wh-52-30 {
  width: 52px !important;
  height: 30px !important;
}

.wh-52-32 {
  width: 52px !important;
  height: 32px !important;
}

.wh-52-34 {
  width: 52px !important;
  height: 34px !important;
}

.wh-52-36 {
  width: 52px !important;
  height: 36px !important;
}

.wh-52-38 {
  width: 52px !important;
  height: 38px !important;
}

.wh-52-40 {
  width: 52px !important;
  height: 40px !important;
}

.wh-52-42 {
  width: 52px !important;
  height: 42px !important;
}

.wh-52-44 {
  width: 52px !important;
  height: 44px !important;
}

.wh-52-46 {
  width: 52px !important;
  height: 46px !important;
}

.wh-52-48 {
  width: 52px !important;
  height: 48px !important;
}

.wh-52-50 {
  width: 52px !important;
  height: 50px !important;
}

.wh-52-52 {
  width: 52px !important;
  height: 52px !important;
}

.wh-52-54 {
  width: 52px !important;
  height: 54px !important;
}

.wh-52-56 {
  width: 52px !important;
  height: 56px !important;
}

.wh-52-58 {
  width: 52px !important;
  height: 58px !important;
}

.wh-52-60 {
  width: 52px !important;
  height: 60px !important;
}

.wh-52-62 {
  width: 52px !important;
  height: 62px !important;
}

.wh-52-64 {
  width: 52px !important;
  height: 64px !important;
}

.wh-52-66 {
  width: 52px !important;
  height: 66px !important;
}

.wh-52-68 {
  width: 52px !important;
  height: 68px !important;
}

.wh-52-70 {
  width: 52px !important;
  height: 70px !important;
}

.wh-52-72 {
  width: 52px !important;
  height: 72px !important;
}

.wh-54-16 {
  width: 54px !important;
  height: 16px !important;
}

.wh-54-18 {
  width: 54px !important;
  height: 18px !important;
}

.wh-54-20 {
  width: 54px !important;
  height: 20px !important;
}

.wh-54-22 {
  width: 54px !important;
  height: 22px !important;
}

.wh-54-24 {
  width: 54px !important;
  height: 24px !important;
}

.wh-54-26 {
  width: 54px !important;
  height: 26px !important;
}

.wh-54-28 {
  width: 54px !important;
  height: 28px !important;
}

.wh-54-30 {
  width: 54px !important;
  height: 30px !important;
}

.wh-54-32 {
  width: 54px !important;
  height: 32px !important;
}

.wh-54-34 {
  width: 54px !important;
  height: 34px !important;
}

.wh-54-36 {
  width: 54px !important;
  height: 36px !important;
}

.wh-54-38 {
  width: 54px !important;
  height: 38px !important;
}

.wh-54-40 {
  width: 54px !important;
  height: 40px !important;
}

.wh-54-42 {
  width: 54px !important;
  height: 42px !important;
}

.wh-54-44 {
  width: 54px !important;
  height: 44px !important;
}

.wh-54-46 {
  width: 54px !important;
  height: 46px !important;
}

.wh-54-48 {
  width: 54px !important;
  height: 48px !important;
}

.wh-54-50 {
  width: 54px !important;
  height: 50px !important;
}

.wh-54-52 {
  width: 54px !important;
  height: 52px !important;
}

.wh-54-54 {
  width: 54px !important;
  height: 54px !important;
}

.wh-54-56 {
  width: 54px !important;
  height: 56px !important;
}

.wh-54-58 {
  width: 54px !important;
  height: 58px !important;
}

.wh-54-60 {
  width: 54px !important;
  height: 60px !important;
}

.wh-54-62 {
  width: 54px !important;
  height: 62px !important;
}

.wh-54-64 {
  width: 54px !important;
  height: 64px !important;
}

.wh-54-66 {
  width: 54px !important;
  height: 66px !important;
}

.wh-54-68 {
  width: 54px !important;
  height: 68px !important;
}

.wh-54-70 {
  width: 54px !important;
  height: 70px !important;
}

.wh-54-72 {
  width: 54px !important;
  height: 72px !important;
}

.wh-56-16 {
  width: 56px !important;
  height: 16px !important;
}

.wh-56-18 {
  width: 56px !important;
  height: 18px !important;
}

.wh-56-20 {
  width: 56px !important;
  height: 20px !important;
}

.wh-56-22 {
  width: 56px !important;
  height: 22px !important;
}

.wh-56-24 {
  width: 56px !important;
  height: 24px !important;
}

.wh-56-26 {
  width: 56px !important;
  height: 26px !important;
}

.wh-56-28 {
  width: 56px !important;
  height: 28px !important;
}

.wh-56-30 {
  width: 56px !important;
  height: 30px !important;
}

.wh-56-32 {
  width: 56px !important;
  height: 32px !important;
}

.wh-56-34 {
  width: 56px !important;
  height: 34px !important;
}

.wh-56-36 {
  width: 56px !important;
  height: 36px !important;
}

.wh-56-38 {
  width: 56px !important;
  height: 38px !important;
}

.wh-56-40 {
  width: 56px !important;
  height: 40px !important;
}

.wh-56-42 {
  width: 56px !important;
  height: 42px !important;
}

.wh-56-44 {
  width: 56px !important;
  height: 44px !important;
}

.wh-56-46 {
  width: 56px !important;
  height: 46px !important;
}

.wh-56-48 {
  width: 56px !important;
  height: 48px !important;
}

.wh-56-50 {
  width: 56px !important;
  height: 50px !important;
}

.wh-56-52 {
  width: 56px !important;
  height: 52px !important;
}

.wh-56-54 {
  width: 56px !important;
  height: 54px !important;
}

.wh-56-56 {
  width: 56px !important;
  height: 56px !important;
}

.wh-56-58 {
  width: 56px !important;
  height: 58px !important;
}

.wh-56-60 {
  width: 56px !important;
  height: 60px !important;
}

.wh-56-62 {
  width: 56px !important;
  height: 62px !important;
}

.wh-56-64 {
  width: 56px !important;
  height: 64px !important;
}

.wh-56-66 {
  width: 56px !important;
  height: 66px !important;
}

.wh-56-68 {
  width: 56px !important;
  height: 68px !important;
}

.wh-56-70 {
  width: 56px !important;
  height: 70px !important;
}

.wh-56-72 {
  width: 56px !important;
  height: 72px !important;
}

.wh-58-16 {
  width: 58px !important;
  height: 16px !important;
}

.wh-58-18 {
  width: 58px !important;
  height: 18px !important;
}

.wh-58-20 {
  width: 58px !important;
  height: 20px !important;
}

.wh-58-22 {
  width: 58px !important;
  height: 22px !important;
}

.wh-58-24 {
  width: 58px !important;
  height: 24px !important;
}

.wh-58-26 {
  width: 58px !important;
  height: 26px !important;
}

.wh-58-28 {
  width: 58px !important;
  height: 28px !important;
}

.wh-58-30 {
  width: 58px !important;
  height: 30px !important;
}

.wh-58-32 {
  width: 58px !important;
  height: 32px !important;
}

.wh-58-34 {
  width: 58px !important;
  height: 34px !important;
}

.wh-58-36 {
  width: 58px !important;
  height: 36px !important;
}

.wh-58-38 {
  width: 58px !important;
  height: 38px !important;
}

.wh-58-40 {
  width: 58px !important;
  height: 40px !important;
}

.wh-58-42 {
  width: 58px !important;
  height: 42px !important;
}

.wh-58-44 {
  width: 58px !important;
  height: 44px !important;
}

.wh-58-46 {
  width: 58px !important;
  height: 46px !important;
}

.wh-58-48 {
  width: 58px !important;
  height: 48px !important;
}

.wh-58-50 {
  width: 58px !important;
  height: 50px !important;
}

.wh-58-52 {
  width: 58px !important;
  height: 52px !important;
}

.wh-58-54 {
  width: 58px !important;
  height: 54px !important;
}

.wh-58-56 {
  width: 58px !important;
  height: 56px !important;
}

.wh-58-58 {
  width: 58px !important;
  height: 58px !important;
}

.wh-58-60 {
  width: 58px !important;
  height: 60px !important;
}

.wh-58-62 {
  width: 58px !important;
  height: 62px !important;
}

.wh-58-64 {
  width: 58px !important;
  height: 64px !important;
}

.wh-58-66 {
  width: 58px !important;
  height: 66px !important;
}

.wh-58-68 {
  width: 58px !important;
  height: 68px !important;
}

.wh-58-70 {
  width: 58px !important;
  height: 70px !important;
}

.wh-58-72 {
  width: 58px !important;
  height: 72px !important;
}

.wh-60-16 {
  width: 60px !important;
  height: 16px !important;
}

.wh-60-18 {
  width: 60px !important;
  height: 18px !important;
}

.wh-60-20 {
  width: 60px !important;
  height: 20px !important;
}

.wh-60-22 {
  width: 60px !important;
  height: 22px !important;
}

.wh-60-24 {
  width: 60px !important;
  height: 24px !important;
}

.wh-60-26 {
  width: 60px !important;
  height: 26px !important;
}

.wh-60-28 {
  width: 60px !important;
  height: 28px !important;
}

.wh-60-30 {
  width: 60px !important;
  height: 30px !important;
}

.wh-60-32 {
  width: 60px !important;
  height: 32px !important;
}

.wh-60-34 {
  width: 60px !important;
  height: 34px !important;
}

.wh-60-36 {
  width: 60px !important;
  height: 36px !important;
}

.wh-60-38 {
  width: 60px !important;
  height: 38px !important;
}

.wh-60-40 {
  width: 60px !important;
  height: 40px !important;
}

.wh-60-42 {
  width: 60px !important;
  height: 42px !important;
}

.wh-60-44 {
  width: 60px !important;
  height: 44px !important;
}

.wh-60-46 {
  width: 60px !important;
  height: 46px !important;
}

.wh-60-48 {
  width: 60px !important;
  height: 48px !important;
}

.wh-60-50 {
  width: 60px !important;
  height: 50px !important;
}

.wh-60-52 {
  width: 60px !important;
  height: 52px !important;
}

.wh-60-54 {
  width: 60px !important;
  height: 54px !important;
}

.wh-60-56 {
  width: 60px !important;
  height: 56px !important;
}

.wh-60-58 {
  width: 60px !important;
  height: 58px !important;
}

.wh-60-60 {
  width: 60px !important;
  height: 60px !important;
}

.wh-60-62 {
  width: 60px !important;
  height: 62px !important;
}

.wh-60-64 {
  width: 60px !important;
  height: 64px !important;
}

.wh-60-66 {
  width: 60px !important;
  height: 66px !important;
}

.wh-60-68 {
  width: 60px !important;
  height: 68px !important;
}

.wh-60-70 {
  width: 60px !important;
  height: 70px !important;
}

.wh-60-72 {
  width: 60px !important;
  height: 72px !important;
}

.wh-62-16 {
  width: 62px !important;
  height: 16px !important;
}

.wh-62-18 {
  width: 62px !important;
  height: 18px !important;
}

.wh-62-20 {
  width: 62px !important;
  height: 20px !important;
}

.wh-62-22 {
  width: 62px !important;
  height: 22px !important;
}

.wh-62-24 {
  width: 62px !important;
  height: 24px !important;
}

.wh-62-26 {
  width: 62px !important;
  height: 26px !important;
}

.wh-62-28 {
  width: 62px !important;
  height: 28px !important;
}

.wh-62-30 {
  width: 62px !important;
  height: 30px !important;
}

.wh-62-32 {
  width: 62px !important;
  height: 32px !important;
}

.wh-62-34 {
  width: 62px !important;
  height: 34px !important;
}

.wh-62-36 {
  width: 62px !important;
  height: 36px !important;
}

.wh-62-38 {
  width: 62px !important;
  height: 38px !important;
}

.wh-62-40 {
  width: 62px !important;
  height: 40px !important;
}

.wh-62-42 {
  width: 62px !important;
  height: 42px !important;
}

.wh-62-44 {
  width: 62px !important;
  height: 44px !important;
}

.wh-62-46 {
  width: 62px !important;
  height: 46px !important;
}

.wh-62-48 {
  width: 62px !important;
  height: 48px !important;
}

.wh-62-50 {
  width: 62px !important;
  height: 50px !important;
}

.wh-62-52 {
  width: 62px !important;
  height: 52px !important;
}

.wh-62-54 {
  width: 62px !important;
  height: 54px !important;
}

.wh-62-56 {
  width: 62px !important;
  height: 56px !important;
}

.wh-62-58 {
  width: 62px !important;
  height: 58px !important;
}

.wh-62-60 {
  width: 62px !important;
  height: 60px !important;
}

.wh-62-62 {
  width: 62px !important;
  height: 62px !important;
}

.wh-62-64 {
  width: 62px !important;
  height: 64px !important;
}

.wh-62-66 {
  width: 62px !important;
  height: 66px !important;
}

.wh-62-68 {
  width: 62px !important;
  height: 68px !important;
}

.wh-62-70 {
  width: 62px !important;
  height: 70px !important;
}

.wh-62-72 {
  width: 62px !important;
  height: 72px !important;
}

.wh-64-16 {
  width: 64px !important;
  height: 16px !important;
}

.wh-64-18 {
  width: 64px !important;
  height: 18px !important;
}

.wh-64-20 {
  width: 64px !important;
  height: 20px !important;
}

.wh-64-22 {
  width: 64px !important;
  height: 22px !important;
}

.wh-64-24 {
  width: 64px !important;
  height: 24px !important;
}

.wh-64-26 {
  width: 64px !important;
  height: 26px !important;
}

.wh-64-28 {
  width: 64px !important;
  height: 28px !important;
}

.wh-64-30 {
  width: 64px !important;
  height: 30px !important;
}

.wh-64-32 {
  width: 64px !important;
  height: 32px !important;
}

.wh-64-34 {
  width: 64px !important;
  height: 34px !important;
}

.wh-64-36 {
  width: 64px !important;
  height: 36px !important;
}

.wh-64-38 {
  width: 64px !important;
  height: 38px !important;
}

.wh-64-40 {
  width: 64px !important;
  height: 40px !important;
}

.wh-64-42 {
  width: 64px !important;
  height: 42px !important;
}

.wh-64-44 {
  width: 64px !important;
  height: 44px !important;
}

.wh-64-46 {
  width: 64px !important;
  height: 46px !important;
}

.wh-64-48 {
  width: 64px !important;
  height: 48px !important;
}

.wh-64-50 {
  width: 64px !important;
  height: 50px !important;
}

.wh-64-52 {
  width: 64px !important;
  height: 52px !important;
}

.wh-64-54 {
  width: 64px !important;
  height: 54px !important;
}

.wh-64-56 {
  width: 64px !important;
  height: 56px !important;
}

.wh-64-58 {
  width: 64px !important;
  height: 58px !important;
}

.wh-64-60 {
  width: 64px !important;
  height: 60px !important;
}

.wh-64-62 {
  width: 64px !important;
  height: 62px !important;
}

.wh-64-64 {
  width: 64px !important;
  height: 64px !important;
}

.wh-64-66 {
  width: 64px !important;
  height: 66px !important;
}

.wh-64-68 {
  width: 64px !important;
  height: 68px !important;
}

.wh-64-70 {
  width: 64px !important;
  height: 70px !important;
}

.wh-64-72 {
  width: 64px !important;
  height: 72px !important;
}

.wh-66-16 {
  width: 66px !important;
  height: 16px !important;
}

.wh-66-18 {
  width: 66px !important;
  height: 18px !important;
}

.wh-66-20 {
  width: 66px !important;
  height: 20px !important;
}

.wh-66-22 {
  width: 66px !important;
  height: 22px !important;
}

.wh-66-24 {
  width: 66px !important;
  height: 24px !important;
}

.wh-66-26 {
  width: 66px !important;
  height: 26px !important;
}

.wh-66-28 {
  width: 66px !important;
  height: 28px !important;
}

.wh-66-30 {
  width: 66px !important;
  height: 30px !important;
}

.wh-66-32 {
  width: 66px !important;
  height: 32px !important;
}

.wh-66-34 {
  width: 66px !important;
  height: 34px !important;
}

.wh-66-36 {
  width: 66px !important;
  height: 36px !important;
}

.wh-66-38 {
  width: 66px !important;
  height: 38px !important;
}

.wh-66-40 {
  width: 66px !important;
  height: 40px !important;
}

.wh-66-42 {
  width: 66px !important;
  height: 42px !important;
}

.wh-66-44 {
  width: 66px !important;
  height: 44px !important;
}

.wh-66-46 {
  width: 66px !important;
  height: 46px !important;
}

.wh-66-48 {
  width: 66px !important;
  height: 48px !important;
}

.wh-66-50 {
  width: 66px !important;
  height: 50px !important;
}

.wh-66-52 {
  width: 66px !important;
  height: 52px !important;
}

.wh-66-54 {
  width: 66px !important;
  height: 54px !important;
}

.wh-66-56 {
  width: 66px !important;
  height: 56px !important;
}

.wh-66-58 {
  width: 66px !important;
  height: 58px !important;
}

.wh-66-60 {
  width: 66px !important;
  height: 60px !important;
}

.wh-66-62 {
  width: 66px !important;
  height: 62px !important;
}

.wh-66-64 {
  width: 66px !important;
  height: 64px !important;
}

.wh-66-66 {
  width: 66px !important;
  height: 66px !important;
}

.wh-66-68 {
  width: 66px !important;
  height: 68px !important;
}

.wh-66-70 {
  width: 66px !important;
  height: 70px !important;
}

.wh-66-72 {
  width: 66px !important;
  height: 72px !important;
}

.wh-68-16 {
  width: 68px !important;
  height: 16px !important;
}

.wh-68-18 {
  width: 68px !important;
  height: 18px !important;
}

.wh-68-20 {
  width: 68px !important;
  height: 20px !important;
}

.wh-68-22 {
  width: 68px !important;
  height: 22px !important;
}

.wh-68-24 {
  width: 68px !important;
  height: 24px !important;
}

.wh-68-26 {
  width: 68px !important;
  height: 26px !important;
}

.wh-68-28 {
  width: 68px !important;
  height: 28px !important;
}

.wh-68-30 {
  width: 68px !important;
  height: 30px !important;
}

.wh-68-32 {
  width: 68px !important;
  height: 32px !important;
}

.wh-68-34 {
  width: 68px !important;
  height: 34px !important;
}

.wh-68-36 {
  width: 68px !important;
  height: 36px !important;
}

.wh-68-38 {
  width: 68px !important;
  height: 38px !important;
}

.wh-68-40 {
  width: 68px !important;
  height: 40px !important;
}

.wh-68-42 {
  width: 68px !important;
  height: 42px !important;
}

.wh-68-44 {
  width: 68px !important;
  height: 44px !important;
}

.wh-68-46 {
  width: 68px !important;
  height: 46px !important;
}

.wh-68-48 {
  width: 68px !important;
  height: 48px !important;
}

.wh-68-50 {
  width: 68px !important;
  height: 50px !important;
}

.wh-68-52 {
  width: 68px !important;
  height: 52px !important;
}

.wh-68-54 {
  width: 68px !important;
  height: 54px !important;
}

.wh-68-56 {
  width: 68px !important;
  height: 56px !important;
}

.wh-68-58 {
  width: 68px !important;
  height: 58px !important;
}

.wh-68-60 {
  width: 68px !important;
  height: 60px !important;
}

.wh-68-62 {
  width: 68px !important;
  height: 62px !important;
}

.wh-68-64 {
  width: 68px !important;
  height: 64px !important;
}

.wh-68-66 {
  width: 68px !important;
  height: 66px !important;
}

.wh-68-68 {
  width: 68px !important;
  height: 68px !important;
}

.wh-68-70 {
  width: 68px !important;
  height: 70px !important;
}

.wh-68-72 {
  width: 68px !important;
  height: 72px !important;
}

.wh-70-16 {
  width: 70px !important;
  height: 16px !important;
}

.wh-70-18 {
  width: 70px !important;
  height: 18px !important;
}

.wh-70-20 {
  width: 70px !important;
  height: 20px !important;
}

.wh-70-22 {
  width: 70px !important;
  height: 22px !important;
}

.wh-70-24 {
  width: 70px !important;
  height: 24px !important;
}

.wh-70-26 {
  width: 70px !important;
  height: 26px !important;
}

.wh-70-28 {
  width: 70px !important;
  height: 28px !important;
}

.wh-70-30 {
  width: 70px !important;
  height: 30px !important;
}

.wh-70-32 {
  width: 70px !important;
  height: 32px !important;
}

.wh-70-34 {
  width: 70px !important;
  height: 34px !important;
}

.wh-70-36 {
  width: 70px !important;
  height: 36px !important;
}

.wh-70-38 {
  width: 70px !important;
  height: 38px !important;
}

.wh-70-40 {
  width: 70px !important;
  height: 40px !important;
}

.wh-70-42 {
  width: 70px !important;
  height: 42px !important;
}

.wh-70-44 {
  width: 70px !important;
  height: 44px !important;
}

.wh-70-46 {
  width: 70px !important;
  height: 46px !important;
}

.wh-70-48 {
  width: 70px !important;
  height: 48px !important;
}

.wh-70-50 {
  width: 70px !important;
  height: 50px !important;
}

.wh-70-52 {
  width: 70px !important;
  height: 52px !important;
}

.wh-70-54 {
  width: 70px !important;
  height: 54px !important;
}

.wh-70-56 {
  width: 70px !important;
  height: 56px !important;
}

.wh-70-58 {
  width: 70px !important;
  height: 58px !important;
}

.wh-70-60 {
  width: 70px !important;
  height: 60px !important;
}

.wh-70-62 {
  width: 70px !important;
  height: 62px !important;
}

.wh-70-64 {
  width: 70px !important;
  height: 64px !important;
}

.wh-70-66 {
  width: 70px !important;
  height: 66px !important;
}

.wh-70-68 {
  width: 70px !important;
  height: 68px !important;
}

.wh-70-70 {
  width: 70px !important;
  height: 70px !important;
}

.wh-70-72 {
  width: 70px !important;
  height: 72px !important;
}

.wh-72-16 {
  width: 72px !important;
  height: 16px !important;
}

.wh-72-18 {
  width: 72px !important;
  height: 18px !important;
}

.wh-72-20 {
  width: 72px !important;
  height: 20px !important;
}

.wh-72-22 {
  width: 72px !important;
  height: 22px !important;
}

.wh-72-24 {
  width: 72px !important;
  height: 24px !important;
}

.wh-72-26 {
  width: 72px !important;
  height: 26px !important;
}

.wh-72-28 {
  width: 72px !important;
  height: 28px !important;
}

.wh-72-30 {
  width: 72px !important;
  height: 30px !important;
}

.wh-72-32 {
  width: 72px !important;
  height: 32px !important;
}

.wh-72-34 {
  width: 72px !important;
  height: 34px !important;
}

.wh-72-36 {
  width: 72px !important;
  height: 36px !important;
}

.wh-72-38 {
  width: 72px !important;
  height: 38px !important;
}

.wh-72-40 {
  width: 72px !important;
  height: 40px !important;
}

.wh-72-42 {
  width: 72px !important;
  height: 42px !important;
}

.wh-72-44 {
  width: 72px !important;
  height: 44px !important;
}

.wh-72-46 {
  width: 72px !important;
  height: 46px !important;
}

.wh-72-48 {
  width: 72px !important;
  height: 48px !important;
}

.wh-72-50 {
  width: 72px !important;
  height: 50px !important;
}

.wh-72-52 {
  width: 72px !important;
  height: 52px !important;
}

.wh-72-54 {
  width: 72px !important;
  height: 54px !important;
}

.wh-72-56 {
  width: 72px !important;
  height: 56px !important;
}

.wh-72-58 {
  width: 72px !important;
  height: 58px !important;
}

.wh-72-60 {
  width: 72px !important;
  height: 60px !important;
}

.wh-72-62 {
  width: 72px !important;
  height: 62px !important;
}

.wh-72-64 {
  width: 72px !important;
  height: 64px !important;
}

.wh-72-66 {
  width: 72px !important;
  height: 66px !important;
}

.wh-72-68 {
  width: 72px !important;
  height: 68px !important;
}

.wh-72-70 {
  width: 72px !important;
  height: 70px !important;
}

.wh-72-72 {
  width: 72px !important;
  height: 72px !important;
}

.column-gap-2 {
  column-gap: 2px !important;
}

.row-gap-2 {
  row-gap: 2px !important;
}

.gap-2 {
  gap: 2px !important;
}

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

/* stylelint-disable */
.txt-ellipsis-2 {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.txt-ellipsis-3 {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* stylelint-enable */
html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  text-size-adjust: 100%;
}

body {
  -webkit-overflow-scrolling: touch;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0 none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

a {
  background-color: transparent;
  color: #21212b;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

dfn {
  font-style: italic;
}

mark {
  background-color: yellow;
  color: black;
}

svg:not(:root) {
  overflow: hidden;
}

code,
kbd,
pre,
samp {
  font-family: monospace;
  font-size: 1em;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  appearance: button;
}

input,
textarea,
button,
select,
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

address {
  font-style: normal;
}

a:focus:not(:focus-visible),
select:focus:not(:focus-visible),
input:focus:not(:focus-visible),
textarea:focus:not(:focus-visible) {
  outline: 0;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

button,
input[type=reset],
input[type=button],
input[type=submit] {
  cursor: pointer;
}

button[disabled],
input[disabled] {
  cursor: default;
}

button {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  line-height: 1;
  appearance: none;
}
button:focus:not(:focus-visible) {
  outline: 0;
}

a,
a:hover {
  text-decoration: none;
}

[href="javascript:void();"],
[href="javascript:"] {
  cursor: default;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

input[type=text],
input[type=password],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=search],
input[type=tel],
input[type=time],
input[type=url],
input[type=week],
textarea {
  box-sizing: border-box;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

input[type=search] {
  appearance: textfield;
  outline-offset: -2px;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button {
  appearance: none;
}

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

::-webkit-file-upload-button {
  appearance: button;
  font: inherit;
}

input[type=number] {
  appearance: textfield;
}

select {
  width: 100%;
  height: 20px;
  border: 0 none;
  background: none;
}

textarea {
  overflow: auto;
  border: 0 none;
  resize: none;
}

::placeholder {
  color: #777;
  line-height: normal;
}

[hidden] {
  display: none;
}

::-webkit-scrollbar {
  width: 4px;
  height: 6px;
}

::-webkit-scrollbar-thumb {
  border-radius: 12px;
  background-clip: content-box;
  background-color: rgba(82, 97, 115, 0.25);
}
::-webkit-scrollbar-thumb:hover {
  background-color: rgba(82, 97, 115, 0.5);
}

.flash {
  margin: 1rem 0;
  padding: 1rem;
  border-left-width: 4px;
  border-left-style: solid;
}
.flash--alert {
  border-left-color: #ecc94b;
  background-color: #fefcbf;
  color: #b7791f;
}
.flash--notice {
  border-left-color: #48bb78;
  background-color: #c6f6d5;
  color: #2f855a;
}

.custom-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  transition: color 0.225s ease, fill 0.225s ease;
  stroke-width: 0;
  stroke: currentcolor;
  fill: currentcolor;
}

.headline {
  color: #121212;
  font-family: "Inter", "PT Sans", sans-serif;
  font-weight: 500;
  line-height: 1.3;
  overflow-wrap: break-word;
}
.headline--lvl1 {
  font-size: 28px;
}
@media (min-width: 768px) {
  .headline--lvl1 {
    font-size: 32px;
  }
}
@media (min-width: 1480px) {
  .headline--lvl1 {
    font-size: 40px;
  }
}
.headline--lvl2 {
  font-size: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  height: 48px;
  padding-right: 32px;
  padding-left: 32px;
  transition: background-color 0.225s ease, border-color 0.225s ease, color 0.225s ease;
  border: 1px solid transparent;
  border-radius: 24px;
  font-family: "Inter", "PT Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
}
.button:focus-visible {
  border-radius: 4px;
  outline: 0;
  box-shadow: 0 0 0 2px black, 0 0 0 3px white;
}
.button:focus-visible {
  border-radius: 24px;
  outline: 0;
  box-shadow: 0 0 0 2px black, 0 0 0 3px white;
}
.button:disabled {
  pointer-events: none;
}
.button--primary, .button--icon-primary {
  border-color: #008dd2;
  background-color: #008dd2;
  color: white;
}
@media (min-width: 1480px) {
  .button--primary:hover, .button--icon-primary:hover {
    border-color: #065a86;
    background-color: #065a86;
  }
}
.button--primary:active, .button--icon-primary:active {
  border-color: #016ba3;
  background-color: #016ba3;
}
.button--primary:disabled, .button--icon-primary:disabled {
  border-color: #d7dfe6;
  background-color: #d7dfe6;
}
.button--secondary {
  border-color: #008dd2;
  background-color: transparent;
  color: #008dd2;
}
@media (min-width: 1480px) {
  .button--secondary:hover {
    border-color: #065a86;
    color: #065a86;
  }
}
.button--secondary:active {
  border-color: #016ba3;
  color: #016ba3;
}
.button--secondary:disabled {
  border-color: #d7dfe6;
  color: #d7dfe6;
}
.button--third {
  min-width: initial;
  border: 0 none;
  background-color: transparent;
  color: #008dd2;
}
@media (min-width: 1480px) {
  .button--third:hover {
    color: #065a86;
  }
}
.button--third:active {
  color: #016ba3;
}
.button--third:disabled {
  color: #d7dfe6;
}
.button--icon {
  min-width: initial;
  padding: 0;
  border: 0 none;
  background-color: transparent;
}
.button--icon-primary {
  min-width: initial;
  padding: 0;
}

.delete-button {
  align-items: center;
  align-self: end;
  max-width: 48px;
}

.input-field {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
  width: 100%;
}
.input-field.is-valid .input-field__input {
  border-color: #008dd2;
}
.input-field.is-invalid .input-field__input {
  border-color: #f94d4d;
  color: #f94d4d;
}
.input-field.is-invalid .input-field__input::placeholder {
  color: #f94d4d;
}
.input-field.is-invalid .input-field__error {
  display: block;
}
.input-field__label {
  color: #121212;
  font-size: 14px;
  line-height: 1.5;
  overflow-wrap: break-word;
}
.input-field__input {
  min-height: 48px;
  padding-block: 0;
  padding-inline: 16px;
  border: 1px solid #ebecee;
  border-radius: 4px;
  color: #121212;
  font-size: 16px;
}
.input-field__input::placeholder {
  color: #8f929b;
}
.input-field__input:focus {
  outline: none;
}
.input-field__input:not(:placeholder-shown) {
  border-color: #008dd2;
}
.input-field__input:disabled {
  border-color: #e0e3e5;
  background-color: #fafafb;
  cursor: default;
  pointer-events: none;
  user-select: none;
}
.input-field__error {
  display: none;
  margin-left: 4px;
  color: #f94d4d;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}
.input-field--with-icon .input-field__input {
  padding-left: 56px;
  background-image: url("/assets/icons/common/search-b47c8ae4.svg");
  background-repeat: no-repeat;
  background-position: 20px center;
  background-size: 16px 16px;
}
.input-field--with-icon .input-field__input:focus, .input-field--with-icon .input-field__input:not(:placeholder-shown) {
  padding-inline-start: 16px;
  background-image: none;
}

.input-field-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media (min-width: 640px) {
  .input-field-group {
    flex-wrap: nowrap;
  }
}

.file {
  display: flex;
  width: 100%;
  column-gap: 16px;
}
.file__element {
  flex: 1;
  min-width: 0;
  padding: 10px;
  border: 1px solid #008dd2;
  border-radius: 4px;
  color: #8f929b;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  row-gap: 4px;
}
.file__element-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.file__element-size {
  margin-top: 4px;
}
.file__button {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.file__button-icon {
  width: 20px;
  height: 20px;
  color: #008dd2;
}

.input-file {
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: 4px;
}
@media (min-width: 768px) {
  .input-file {
    display: grid;
    grid-template-areas: "label files" "button files" "errors files";
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    column-gap: 16px;
    justify-items: start;
  }
}
.input-file.is-invalid .input-file__error {
  display: block;
}
.input-file__label {
  color: #121212;
  font-size: 16px;
  line-height: 1.5;
  overflow-wrap: break-word;
}
@media (min-width: 768px) {
  .input-file__label {
    grid-area: label;
  }
}
.input-file__button {
  padding: 0;
  column-gap: 8px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .input-file__button {
    grid-area: button;
  }
}
.input-file__button-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.input-file__button-icon {
  width: 18px;
  height: 18px;
}
.input-file__uploaded-files {
  display: flex;
  flex-direction: column;
  width: 100%;
  row-gap: 8px;
}
@media (min-width: 768px) {
  .input-file__uploaded-files {
    display: grid;
    grid-area: files;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 8px;
  }
  .input-file__uploaded-files:has(> .file:only-child) {
    display: flex;
  }
}
.input-file__uploaded-files:empty {
  display: none;
}
.input-file__error {
  display: none;
  margin-left: 4px;
  color: #f94d4d;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .input-file__error {
    grid-area: errors;
  }
}

.custom-select {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}
.custom-select.is-invalid .custom-select__error {
  display: block;
}
.custom-select.is-invalid .choices:has(.is-selected):not(.is-disabled) .choices__inner {
  border-color: #f94d4d;
}
.custom-select.is-invalid .choices:has(.is-selected):not(.is-disabled) .choices__inner .choices__item {
  color: #f94d4d;
}
.custom-select__label {
  color: #121212;
  font-size: 14px;
  line-height: 1.5;
  overflow-wrap: break-word;
}
.custom-select .choices {
  margin-bottom: 0;
}
.custom-select .choices[data-type*=select-one]::after {
  right: 22px;
  width: 16px;
  height: 16px;
  margin-top: 0;
  transition: rotate 0.225s ease;
  border: 0 none;
  background-image: url("/assets/icons/common/arrow-down-388d6510.svg");
  background-repeat: no-repeat;
  background-size: 16px 16px;
  translate: 0 -50%;
}
.custom-select .choices.is-open .choices__inner {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.custom-select .choices.is-open[data-type*=select-one]::after {
  rotate: 180deg;
}
.custom-select .choices.is-open .choices__list--dropdown {
  border-color: #ebecee;
}
.custom-select .choices__inner {
  min-height: 48px;
  padding-top: 8px;
  padding-right: 10px;
  padding-bottom: 8px;
  border-radius: 4px;
  border-color: #ebecee;
  background-color: white;
}
.custom-select .choices__item {
  color: #8f929b;
  font-family: "Inter", "PT Sans", sans-serif;
  font-size: 16px;
}
.custom-select .choices__list--single {
  padding-right: 50px;
  padding-left: 8px;
}
.custom-select .choices__list--dropdown {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.custom-select .choices__list--dropdown .choices__item {
  padding: 2px 16px;
  transition: color 0.225s ease, background-color 0.225s ease;
  color: #121212;
  font-size: 16px;
  line-height: 1.5;
}
.custom-select .choices__list--dropdown .choices__item--selectable[data-select-text] {
  padding-right: 16px;
}
.custom-select .choices__list--dropdown .choices__item--selectable.is-highlighted {
  background-color: #f0f9ff;
  color: #008dd2;
}
.custom-select .choices__list--dropdown .choices__item--selectable.is-highlighted::after {
  display: none;
}
.custom-select .choices__list--dropdown .choices__list {
  flex-direction: column;
  max-height: 204px;
  padding-block: 12px;
  row-gap: 10px;
}
.custom-select .choices__list--dropdown.is-active .choices__list {
  display: flex;
}
.custom-select .choices__list--multiple .choices__item {
  border: 1px solid #008dd2;
  background-color: #008dd2;
  color: white;
}
.custom-select .choices.is-disabled .choices__inner,
.custom-select .choices.is-disabled .choices__input {
  border-color: #e0e3e5;
  background-color: #f7f8f9;
  cursor: default;
}
.custom-select .choices.is-disabled .choices__item {
  color: #cdd0d4;
  cursor: default;
}
.custom-select .choices.is-disabled[data-type*=select-one]::after {
  filter: invert(93%) sepia(5%) saturate(175%) hue-rotate(175deg) brightness(89%) contrast(93%);
}
.custom-select .choices:has(.is-selected):not(.is-disabled) .choices__inner {
  border-color: #008dd2;
}
.custom-select__error {
  display: none;
  margin-left: 4px;
  color: #f94d4d;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.table-wrapper {
  overflow-x: auto;
  white-space: nowrap;
}
.table-wrapper--normal {
  white-space: normal;
}

.table {
  width: 100%;
  min-width: 1600px;
  table-layout: fixed;
  border: 1px solid #ebecee;
  color: #121212;
  text-align: left;
}
.table--layout-auto {
  table-layout: auto;
}
.table thead {
  background-color: #fafafb;
}
.table tr {
  border-top: 1px solid #ebecee;
}
.table th {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
.table td {
  font-size: 14px;
  line-height: 1.5;
}
.table th,
.table td {
  padding: 16px 32px;
}
.table--short {
  min-width: initial;
}
.table--short th,
.table--short td {
  padding-inline: 16px;
}
.table__button-group {
  display: flex;
  column-gap: 16px;
}

.table-pagination {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
@media (min-width: 768px) {
  .table-pagination {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    row-gap: initial;
  }
}
.table-pagination__info {
  color: #8f929b;
  font-size: 14px;
  line-height: 1.5;
}
.table-pagination__navigation nav {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
}
@media (min-width: 768px) {
  .table-pagination__navigation nav {
    justify-content: initial;
  }
}
.table-pagination__navigation nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin: 4px;
  border: 1px solid transparent;
  border-radius: 50%;
  color: #8f929b;
  line-height: 1.5;
  cursor: pointer;
}
.table-pagination__navigation nav a.current {
  border-color: #008dd2;
  color: #008dd2;
}
.table-pagination__navigation nav a[aria-label=Previous], .table-pagination__navigation nav a[aria-label=Next] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='19' fill='none'%3E%3Cpath fill='%23121212' fill-rule='evenodd' d='M8.994 18.064a.75.75 0 0 0 .07-1.058L2.497 9.5l6.567-7.506a.75.75 0 1 0-1.128-.988l-7 8a.75.75 0 0 0 0 .988l7 8a.75.75 0 0 0 1.058.07Z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 19px;
  font-size: 0;
  filter: invert(64%) sepia(9%) saturate(278%) hue-rotate(187deg) brightness(89%) contrast(87%);
}
.table-pagination__navigation nav a[aria-label=Next] {
  rotate: 180deg;
}
.table-pagination__navigation nav a:not(.current)[aria-disabled=true] {
  cursor: default;
  filter: invert(95%) sepia(5%) saturate(103%) hue-rotate(161deg) brightness(98%) contrast(89%);
}

.filter {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
.filter__group {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
@media (min-width: 1480px) {
  .filter__group {
    flex-direction: row;
    row-gap: initial;
    column-gap: 24px;
  }
}
.filter__action {
  align-self: start;
}
@media (min-width: 1480px) {
  .filter__action {
    align-self: end;
  }
}

.hamburger {
  display: inline-block;
  transition-property: opacity, filter, background-color;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  background-color: transparent;
  color: inherit;
  font-size: 0;
}
.hamburger__box {
  display: inline-flex;
  position: relative;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 7px 3px;
}
.hamburger__inner {
  display: block;
  top: 50%;
  margin-top: -1px;
}
.hamburger__inner::after, .hamburger__inner::before {
  content: "";
  display: block;
}
.hamburger__inner::after {
  bottom: -12px;
}
.hamburger__inner::before {
  top: -12px;
}
.hamburger__inner, .hamburger__inner::after, .hamburger__inner::before {
  position: absolute;
  width: 34px;
  height: 2px;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
  border-radius: 4px;
  background-color: white;
}
.hamburger--spin .hamburger__inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger__inner::before {
  transition: top 0.1s ease-in 0.25s, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger__inner::after {
  transition: bottom 0.1s ease-in 0.25s, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger__inner {
  transform: rotate(225deg);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0.12s;
}
.hamburger--spin.is-active .hamburger__inner::before {
  top: 0;
  transition: top 0.1s ease-out, opacity 0.1s ease-out 0.12s;
  opacity: 0;
}
.hamburger--spin.is-active .hamburger__inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
}

html {
  height: 100%;
}

body {
  display: grid;
  grid-template-rows: var(--header-footer-height, var(--header-height-mobile)) 1fr var(--header-footer-height, var(--header-height-mobile));
  min-height: 100%;
  background-color: white;
  color: #121212;
  font-family: "Inter", "PT Sans", sans-serif;
  font-size: 16px;
}
@media (min-width: 1480px) {
  body {
    --header-footer-height: var(--header-height);
  }
}

.disabled-scroll {
  overflow-y: hidden;
}

.container {
  max-width: 1648px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}
@media (min-width: 768px) {
  .container {
    padding-right: 24px;
    padding-left: 24px;
  }
}

.visually-hidden:not(:focus, :active) {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
  white-space: nowrap;
  clip-path: inset(100%);
}

.turbo-progress-bar {
  display: none;
  width: initial !important;
}

.main-header {
  background-color: #008dd2;
  /* &__logo-link {
    display: block;
  } */
}
.main-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height-mobile);
}
@media (min-width: 1480px) {
  .main-header__hamburger {
    display: none;
  }
}
.main-header__logo {
  display: block;
}
@media (min-width: 1480px) {
  .main-header__logo {
    width: 217px;
    height: 57px;
  }
}

.main-navbar {
  --list-width: 294px;
  position: fixed;
  z-index: 1;
  inset: 0;
  top: var(--header-height-mobile);
  padding: 40px 24px;
  overflow: auto;
  transition: opacity 0.225s ease;
  opacity: 0;
  background-color: transparent;
  pointer-events: none;
}
@media (min-width: 1480px) {
  .main-navbar {
    position: initial;
    width: initial;
    min-height: var(--header-height);
    margin-left: auto;
    padding: initial;
    overflow: initial;
    transition: initial;
    opacity: initial;
    box-shadow: initial;
    pointer-events: initial;
  }
}
.main-navbar.is-opened {
  transform: translate(0, 0);
  opacity: 1;
  background-color: white;
  pointer-events: auto;
}
.main-navbar.is-opened .main-navbar__list {
  display: flex;
}
.main-navbar__list-outer {
  display: flex;
  flex-direction: column;
  row-gap: 41px;
}
@media (min-width: 1480px) {
  .main-navbar__list-outer {
    flex-direction: initial;
    align-items: center;
    min-height: inherit;
    row-gap: initial;
    margin-right: -16px;
  }
}
@media (min-width: 1480px) {
  .main-navbar__item-outer {
    position: relative;
  }
  .main-navbar__item-outer::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    width: var(--list-width);
    height: 100%;
  }
}
@media (width >= 1795px) {
  .main-navbar__item-outer::before {
    display: none;
  }
}
@media (min-width: 1480px) {
  .main-navbar__item-outer:hover .main-navbar__group-tittle {
    color: #bae2fd;
    cursor: pointer;
  }
  .main-navbar__item-outer:hover .main-navbar__group-tittle + .main-navbar__list {
    z-index: 1;
    overflow: visible;
    opacity: 1;
    pointer-events: initial;
  }
}
.main-navbar__item-outer:not(:first-child) {
  position: relative;
}
.main-navbar__item-outer:not(:first-child)::before {
  content: "";
  position: absolute;
  top: -21px;
  width: 100%;
  height: 1px;
  background-color: #ebecee;
}
@media (min-width: 1480px) {
  .main-navbar__item-outer:not(:first-child)::before {
    display: none;
  }
}
.main-navbar__list {
  display: none;
  flex-direction: column;
  row-gap: 16px;
  padding: 16px 0;
}
@media (min-width: 1480px) {
  .main-navbar__list {
    display: flex;
    position: absolute;
    top: 56px;
    right: 0;
    width: var(--list-width);
    padding: 26px 32px;
    overflow: hidden;
    transition: opacity 0.225s ease;
    border: 1px solid #ebecee;
    border-radius: 4px;
    opacity: 0;
    background-color: white;
    pointer-events: none;
    row-gap: 10px;
  }
}
@media (width >= 1795px) {
  .main-navbar__list {
    right: initial;
    left: 50%;
    translate: -50% 0;
  }
}
.main-navbar__group-tittle {
  padding: 8px 0;
  transition: color 0.225s ease;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 1480px) {
  .main-navbar__group-tittle {
    display: flex;
    align-items: center;
    padding: 16px 32px;
    column-gap: 10px;
    color: white;
  }
}
.main-navbar__group-icon {
  display: none;
  width: 16px;
  height: 16px;
  transition: initial;
}
@media (min-width: 1480px) {
  .main-navbar__group-icon {
    display: inline-block;
  }
}
.main-navbar__item button {
  display: block;
  width: 100%;
  padding: 2px 0;
  color: #121212;
  line-height: 1.5;
  text-align: left;
}
@media (min-width: 1480px) {
  .main-navbar__item button:hover {
    color: #008dd2;
  }
}
.main-navbar__link {
  display: block;
  padding: 2px 0;
  transition: color 0.225s ease;
  color: #121212;
  line-height: 1.5;
}
.main-navbar__link:focus-visible {
  border-radius: 4px;
  outline: 0;
  box-shadow: 0 0 0 2px black, 0 0 0 3px white;
}
@media (min-width: 1480px) {
  .main-navbar__link:hover {
    color: #008dd2;
  }
}

.h1-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.ml-auto {
  margin-left: auto;
}

.expand-title {
  cursor: pointer;
}

.expand-title:hover {
  color: #0d3e2b;
  text-decoration: underline;
}

.main-content {
  min-width: 0;
}
.main-content__container {
  padding-top: 32px;
  padding-bottom: 64px;
}
@media (min-width: 768px) {
  .main-content__container {
    padding-bottom: 80px;
  }
}
@media (min-width: 1480px) {
  .main-content__container {
    padding-top: 48px;
    padding-bottom: 100px;
  }
}
.main-content__wrapper {
  display: grid;
  margin-top: 24px;
  row-gap: 24px;
}
@media (min-width: 1480px) {
  .main-content__wrapper {
    grid-template-columns: 520px 1fr;
    column-gap: 24px;
    row-gap: initial;
  }
}

.items-center {
  display: flex;
  align-items: center;
}

.main-aside {
  padding: 16px 20px;
  background-color: #fafafb;
}
@media (min-width: 768px) {
  .main-aside {
    padding: 24px;
  }
}

.aside-navbar__list {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}
@media (min-width: 768px) {
  .aside-navbar__list {
    row-gap: initial;
  }
}
.aside-navbar__item:has(.is-selected) .aside-navbar__link {
  color: #008dd2;
  font-weight: 500;
}
.aside-navbar__item:has(.is-selected) .aside-navbar__item-icon {
  color: #008dd2;
  rotate: 180deg;
}
.aside-navbar__item:has(.is-selected) .aside-navbar__inner-list {
  display: block;
}
@media (min-width: 768px) {
  .aside-navbar__item.is-completed .aside-navbar__inner-link {
    color: #17181a;
  }
}
.aside-navbar__item.is-completed .aside-navbar__item-done-icon {
  display: inline-block;
}
.aside-navbar__item.is-completed .aside-navbar__inner-list {
  display: none;
}
@media (min-width: 768px) {
  .aside-navbar__item.is-completed .aside-navbar__inner-list {
    display: block;
  }
}
.aside-navbar__item.is-completed .aside-navbar__link {
  color: #17181a;
}
.aside-navbar__item.is-completed .aside-navbar__item-icon {
  color: #121212;
}
.aside-navbar__link {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 8px 0;
  column-gap: 12px;
  box-shadow: inset 0 -1px 0 0 #ebecee;
  color: #8f929b;
  font-size: 16px;
  letter-spacing: 0.01em;
  line-height: 1.5;
}
.aside-navbar__link:not(:has(.aside-navbar__item-icon-wrapper)) {
  padding-right: 52px;
}
.aside-navbar__item-icon-wrapper {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: auto;
}
@media (min-width: 768px) {
  .aside-navbar__item-icon-wrapper {
    display: none;
  }
}
.aside-navbar__item-icon {
  width: 14px;
  height: 14px;
  color: #d7dfe6;
}
.aside-navbar__inner-list {
  display: none;
}
@media (min-width: 768px) {
  .aside-navbar__inner-list {
    display: block;
  }
}
.aside-navbar__inner-item-icon-wrapper {
  display: none;
}
@media (min-width: 768px) {
  .aside-navbar__inner-item-icon-wrapper {
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-left: auto;
  }
}
.aside-navbar__inner-link {
  display: flex;
  align-items: center;
  min-height: 48px;
  margin-left: 20px;
  padding: 8px 52px 8px 0;
  column-gap: 12px;
  box-shadow: inset 0 -1px 0 0 #ebecee;
  color: #8f929b;
  font-size: 14px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .aside-navbar__inner-link {
    padding-top: 4px;
    padding-right: 0;
    padding-bottom: 4px;
  }
}
.aside-navbar__inner-link.is-selected {
  color: #008dd2;
}
@media (min-width: 768px) {
  .aside-navbar__inner-link.is-selected .aside-navbar__inner-item-icon-wrapper {
    display: flex;
  }
}
.aside-navbar__item-done-icon {
  display: none;
  flex-shrink: 0;
}

.main-stepper {
  min-width: 0;
  padding: 24px 20px 40px;
  background-color: #fafafb;
}
@media (min-width: 768px) {
  .main-stepper {
    padding: 32px 24px;
  }
}
@media (min-width: 1480px) {
  .main-stepper {
    padding: 36px 32px 40px;
  }
}
.main-stepper__legend {
  color: #8f929b;
  line-height: 1.5;
}
.main-stepper__form-group {
  display: flex;
  flex-direction: column;
  min-width: 0;
  row-gap: 16px;
}
.main-stepper__form-group-button {
  width: 100%;
  max-width: 295px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .main-stepper__form-group-button {
    margin-inline: initial;
  }
}

.main-footer {
  background-color: #008dd2;
}

.pagy {
  --B: 1;
  --H: 200.1;
  --S: 100;
  --L: 41.76;
  --A: 1;
  --spacing: 0.5rem;
  --padding: 0.8125rem;
  --rounding: 1.9375rem;
  --border-width: 0rem;
  --font-size: 0.875rem;
  --font-weight: 500;
  --line-height: 1.875;
  --text: hsla(var(--H) var(--S) calc(var(--L) - (25 * var(--B))) / var(--A));
  --text-hover: hsla(var(--H) var(--S) calc(var(--L) - (30 * var(--B))) / var(--A));
  --text-current: hsla(var(--H) var(--S) calc(100 * (var(--B) + 1)) / var(--A));
  --background: hsla(var(--H) var(--S) calc(var(--L) + (30 * var(--B))) / var(--A));
  --background-hover: hsla(var(--H) var(--S) calc(var(--L) + (20 * var(--B))) / var(--A));
  --background-current: hsla(var(--H) var(--S) var(--L) / var(--A));
  --background-input: hsla(var(--H) var(--S) calc(var(--L) + (45 * var(--B))) / var(--A));
  color: var(--text);
  font-size: var(--font-size);
  line-height: var(--line-height);
  font-weight: var(--font-weight);
  display: flex;
}

.pagy > :not([hidden]) ~ :not([hidden]) {
  margin-left: calc(var(--spacing) * (1 - var(--space-reverse, 0)));
  margin-right: calc(var(--spacing) * var(--space-reverse, 0));
}

.rtl .pagy > :not([hidden]) ~ :not([hidden]) {
  --space-reverse: 1;
}

.pagy a:not([role=separator]) { /* all but gaps */
  display: block;
  text-decoration: none;
  background-color: var(--background);
  padding: calc(var(--padding) / 3) var(--padding);
  border: var(--border-width) solid var(--background-current);
  border-radius: var(--rounding);
  color: inherit;
}

.pagy a[href]:hover { /* all links on hover */
  background-color: var(--background-hover);
  color: var(--text-hover);
}

.pagy a:not([href]) { /* all but links */
  cursor: default;
}

.pagy a[role=link]:not([aria-current]) { /* disabled links */
  opacity: 0.6;
}

.pagy a[aria-current] { /* current page */
  background-color: var(--background-current);
  color: var(--text-current);
  border-color: var(--text);
}

.pagy label {
  white-space: nowrap;
  display: inline-block;
  border: var(--border-width) solid var(--background-current);
  border-radius: var(--rounding);
  background-color: var(--background);
  padding: calc(var(--padding) / 3 - var(--border-width)) var(--padding);
}

.pagy label input {
  all: unset;
  border: var(--border-width) solid var(--background-current);
  border-radius: calc(var(--rounding) / 2) !important;
  background-color: var(--background-input);
}
