/* src/sass/user.scss */
@media (min-width: 992px) {
  #Tree {
    display: none;
  }
}
#MainSection {
  display: flex;
  justify-content: center;
  gap: 5px;
  width: 100%;
}
#MainSection #desktopTree {
  display: none;
}
@media (min-width: 992px) {
  #MainSection #desktopTree {
    display: block;
    margin: 0 15px 0 0;
    min-width: 20%;
    width: 25%;
    max-width: 500px;
  }
}
#MainSection #desktopTree div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#MainSection #desktopTree .nav-tree {
  background: #ffffff;
  border: 1px solid #cccccc;
  padding: 0;
}
#MainSection #desktopTree .nav-tree > ul > li:first-child {
  border-top: 0;
}
#MainSection #desktopTree .nav-tree ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#MainSection #desktopTree .nav-tree ul li {
  border-top: 1px solid #cccccc;
}
#MainSection #desktopTree .nav-tree ul li > div {
  display: flex;
}
#MainSection #desktopTree .nav-tree ul li > a {
  font-family: "Barlow";
  display: block;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
}
#MainSection #desktopTree .nav-tree ul li > div,
#MainSection #desktopTree .nav-tree ul li > a {
  font-family: "Barlow";
  padding: 1rem 1.25rem;
  color: #000000;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
#MainSection #desktopTree .nav-tree ul li > div:hover,
#MainSection #desktopTree .nav-tree ul li > a:hover {
  background: #e0e0e0;
}
#MainSection #desktopTree .nav-tree ul li > div.active,
#MainSection #desktopTree .nav-tree ul li > a.active {
  background: #000000;
  color: #ffffff;
}
#MainSection #desktopTree .nav-tree ul li > div > a,
#MainSection #desktopTree .nav-tree ul li > a > a {
  font-family: "Barlow";
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
}
#MainSection #desktopTree .nav-tree ul li ul {
  background: #ffffff;
}
#MainSection #desktopTree .nav-tree ul li ul li a {
  font-family: "Barlow";
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
  display: block;
  padding: 0.85rem 2rem;
  font-weight: 400;
  color: #000000;
  text-decoration: none;
  transition: background 0.3s;
}
#MainSection #desktopTree .nav-tree ul li ul li a:hover {
  background: #f5f5f5;
}
#MainSection #desktopTree .nav-tree ul li.open > ul {
  display: block;
}
#MainSection #ContentWrapper {
  min-width: 80%;
}
#body .fw-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow";
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: #fff;
  border: 1px solid #000;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  color: #000;
  transition: all 0.3s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  white-space: nowrap;
  min-height: 44px;
  max-height: 60px;
  min-width: 44px;
  max-width: 320px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
#body .fw-button:hover {
  background-color: #000;
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
#body .fw-button:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
#body .fw-button:focus {
  outline: 2px solid #000;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.25);
}
#body .fw-button:disabled,
#body .fw-button.disabled {
  opacity: 0.65;
  cursor: not-allowed;
  background-color: #ced4da;
  color: #6c757d;
  border-color: #ced4da;
  transform: none;
  box-shadow: none;
}
#body .fw-button:disabled:hover,
#body .fw-button.disabled:hover {
  transform: none;
  box-shadow: none;
}
#body .fw-button.fw-button-primary {
  background-color: #007bff;
  border-color: #007bff;
  color: #ffffff;
}
#body .fw-button.fw-button-primary:hover {
  background-color: rgb(0, 98.4, 204);
  border-color: rgb(0, 98.4, 204);
  color: #ffffff;
}
#body .fw-button.fw-button-primary:focus {
  outline-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}
#body .fw-button.fw-button-primary:disabled,
#body .fw-button.fw-button-primary.disabled {
  background-color: rgb(102, 175.8, 255);
  border-color: rgb(102, 175.8, 255);
}
#body .fw-button.fw-button-secondary {
  background-color: #6c757d;
  border-color: #6c757d;
  color: #ffffff;
}
#body .fw-button.fw-button-secondary:hover {
  background-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
  border-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
  color: #ffffff;
}
#body .fw-button.fw-button-secondary:focus {
  outline-color: #6c757d;
  box-shadow: 0 0 0 3px rgba(108, 117, 125, 0.25);
}
#body .fw-button.fw-button-success {
  background-color: #28a745;
  border-color: #28a745;
  color: #ffffff;
}
#body .fw-button.fw-button-success:hover {
  background-color: rgb(30.1449275362, 125.8550724638, 52);
  color: #ffffff;
  border-color: #28a745;
}
#body .fw-button.fw-button-success:focus {
  outline-color: #28a745;
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.25);
}
#body .fw-button.fw-button-success:disabled,
#body .fw-button.fw-button-success.disabled {
  background-color: rgb(92.8405797101, 216.1594202899, 121);
  color: white;
  border-color: rgb(92.8405797101, 216.1594202899, 121);
}
#body .fw-button.fw-button-danger {
  background-color: #dc3545;
  border-color: #dc3545;
  color: #ffffff;
}
#body .fw-button.fw-button-danger:hover {
  background-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
  border-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
  color: #ffffff;
}
#body .fw-button.fw-button-danger:focus {
  outline-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.25);
}
#body .fw-button.fw-button-warning {
  background-color: #ffc107;
  border-color: #ffc107;
  color: #343a40;
}
#body .fw-button.fw-button-warning:hover {
  background-color: rgb(211, 158.25, 0);
  border-color: rgb(211, 158.25, 0);
  color: #343a40;
}
#body .fw-button.fw-button-warning:focus {
  outline-color: #ffc107;
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.25);
}
#body .fw-button.fw-button-info {
  background-color: #17a2b8;
  border-color: #17a2b8;
  color: #ffffff;
}
#body .fw-button.fw-button-info:hover {
  background-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
  border-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
  color: #ffffff;
}
#body .fw-button.fw-button-info:focus {
  outline-color: #17a2b8;
  box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.25);
}
#body .fw-button.fw-button-light {
  background-color: #f8f9fa;
  border-color: #f8f9fa;
  color: #343a40;
}
#body .fw-button.fw-button-light:hover {
  background-color: rgb(225.6875, 229.875, 234.0625);
  border-color: rgb(225.6875, 229.875, 234.0625);
  color: #343a40;
}
#body .fw-button.fw-button-light:focus {
  outline-color: #343a40;
  box-shadow: 0 0 0 3px rgba(52, 58, 64, 0.25);
}
#body .fw-button.fw-button-dark {
  background-color: #343a40;
  border-color: #343a40;
  color: #ffffff;
}
#body .fw-button.fw-button-dark:hover {
  background-color: rgb(74.8620689655, 83.5, 92.1379310345);
  border-color: rgb(74.8620689655, 83.5, 92.1379310345);
  color: #ffffff;
}
#body .fw-button.fw-button-dark:focus {
  outline-color: #343a40;
  box-shadow: 0 0 0 3px rgba(52, 58, 64, 0.25);
}
#body .fw-button.fw-button-outline-primary {
  background-color: transparent;
  border-color: #007bff;
  color: #007bff;
}
#body .fw-button.fw-button-outline-primary:hover {
  background-color: #007bff;
  color: #ffffff;
}
#body .fw-button.fw-button-outline-secondary {
  background-color: transparent;
  border-color: #6c757d;
  color: #6c757d;
}
#body .fw-button.fw-button-outline-secondary:hover {
  background-color: #6c757d;
  color: #ffffff;
}
#body .fw-button.fw-button-outline-success {
  background-color: transparent;
  border-color: #28a745;
  color: #28a745;
}
#body .fw-button.fw-button-outline-success:hover {
  background-color: #28a745;
  color: #ffffff;
}
#body .fw-button.fw-button-outline-danger {
  background-color: transparent;
  border-color: #dc3545;
  color: #dc3545;
}
#body .fw-button.fw-button-outline-danger:hover {
  background-color: #dc3545;
  color: #ffffff;
}
#body .fw-button.fw-button-outline-warning {
  background-color: transparent;
  border-color: #ffc107;
  color: #ffc107;
}
#body .fw-button.fw-button-outline-warning:hover {
  background-color: #ffc107;
  color: #343a40;
}
#body .fw-button.fw-button-outline-info {
  background-color: transparent;
  border-color: #17a2b8;
  color: #17a2b8;
}
#body .fw-button.fw-button-outline-info:hover {
  background-color: #17a2b8;
  color: #ffffff;
}
#body .fw-button.fw-button-outline-dark {
  background-color: transparent;
  border-color: #343a40;
  color: #343a40;
}
#body .fw-button.fw-button-outline-dark:hover {
  background-color: #343a40;
  color: #ffffff;
}
#body .fw-button.fw-button-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  border-radius: 8px;
  min-height: 54px;
  max-height: 80px;
  max-width: 400px;
}
#body .fw-button.fw-button-sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  border-radius: 2px;
  min-height: 36px;
  max-height: 48px;
  max-width: 240px;
}
#body .fw-button.fw-button-xs {
  padding: 0.375rem 0.75rem;
  font-size: 0.6875rem;
  border-radius: 2px;
  min-height: 28px;
  max-height: 36px;
  min-width: 28px;
  max-width: 160px;
}
#body .fw-button.fw-button-block {
  display: flex;
  width: 100%;
  max-width: none;
}
#body .fw-button.fw-button-rounded {
  border-radius: 50rem;
}
#body .fw-button.fw-button-square {
  border-radius: 0;
}
#body .fw-button.fw-button-icon {
  border-radius: 50%;
  padding: 0.75rem;
  min-width: 44px;
  max-width: 44px;
  min-height: 44px;
  max-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#body .fw-button.fw-button-icon.fw-button-lg {
  padding: 1rem;
  min-width: 54px;
  max-width: 54px;
  min-height: 54px;
  max-height: 54px;
}
#body .fw-button.fw-button-icon.fw-button-sm {
  padding: 0.5rem;
  min-width: 36px;
  max-width: 36px;
  min-height: 36px;
  max-height: 36px;
}
#body .fw-button.fw-button-icon.fw-button-xs {
  padding: 0.375rem;
  min-width: 28px;
  max-width: 28px;
  min-height: 28px;
  max-height: 28px;
}
#body .fw-button.fw-button-ghost {
  background-color: transparent;
  border: none;
  box-shadow: none;
  color: #000;
  min-width: auto;
  max-width: none;
}
#body .fw-button.fw-button-ghost:hover {
  background-color: rgba(0, 0, 0, 0.1);
  transform: none;
  box-shadow: none;
}
#body .fw-button.fw-button-ghost:focus {
  background-color: rgba(0, 0, 0, 0.2);
}
#body .fw-button.fw-button-link {
  background-color: transparent;
  border: none;
  color: #000000;
  box-shadow: none;
  padding: 0;
  min-height: auto;
  max-height: none;
  min-width: auto;
  max-width: none;
  font-weight: 400;
  text-transform: none;
}
#body .fw-button.fw-button-link:hover {
  color: #000000;
  background-color: transparent;
  transform: none;
  box-shadow: none;
}
#body .fw-button.fw-button-link:focus {
  outline: 2px solid #000000;
  box-shadow: none;
}
#body .fw-button.fw-button-loading {
  pointer-events: none;
  position: relative;
  color: transparent !important;
}
#body .fw-button.fw-button-loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin: -8px 0 0 -8px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: fw-button-spin 1s linear infinite;
}
#body .fw-button.fw-button-loading.fw-button-sm::after {
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
}
#body .fw-button.fw-button-loading.fw-button-xs::after {
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
}
#body .fw-button-group {
  display: inline-flex;
  vertical-align: middle;
  min-width: auto;
  max-width: 100%;
}
#body .fw-button-group .fw-button {
  border-radius: 0;
  margin-right: -1px;
  position: relative;
  max-width: none;
}
#body .fw-button-group .fw-button:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
#body .fw-button-group .fw-button:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  margin-right: 0;
}
#body .fw-button-group .fw-button:hover,
#body .fw-button-group .fw-button:focus,
#body .fw-button-group .fw-button:active {
  z-index: 2;
}
#body .fw-button-group .fw-button.active {
  z-index: 3;
}
#body .fw-button-group.fw-button-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: auto;
  max-height: none;
}
#body .fw-button-group.fw-button-group-vertical .fw-button {
  width: 100%;
  margin-right: 0;
  margin-bottom: -1px;
  max-width: none;
}
#body .fw-button-group.fw-button-group-vertical .fw-button:first-child {
  border-radius: 5px 5px 0 0;
}
#body .fw-button-group.fw-button-group-vertical .fw-button:last-child {
  border-radius: 0 0 5px 5px;
  margin-bottom: 0;
}
@keyframes fw-button-spin {
  to {
    transform: rotate(360deg);
  }
}
#filter1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
}
#FilterToggle {
  position: static;
  margin-left: 0 !important;
  order: 1;
  flex: 0 0 auto;
}
#FilterToggle:focus {
  outline: none !important;
}
#FilterToggle.filterToggleLbl {
  display: block !important;
}
#SortToggle {
  position: static;
  margin-left: auto;
  margin-right: 0 !important;
  order: 2;
  float: right;
  flex: 0 0 auto;
  width: auto;
}
#SortToggle:focus {
  outline: none !important;
}
#SortToggle.sortToggleLbl {
  display: block !important;
}
@media (min-width: 992px) {
  #FilterContentWrapper,
  #SortAndPageSettings {
    position: absolute;
    margin-top: 20px;
    bottom: auto;
    left: auto !important;
  }
}
@media (min-width: 992px) {
  #SortAndPageSettings {
    right: 0;
  }
}
#PagerBottom {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
}
#PagerWrapper {
  position: static;
  margin: 50px auto 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  min-width: 100%;
}
#imgLogo {
  width: 300px;
}
#SearchTxt > input {
  font-family: "Barlow";
}
.prodlist-header.image-yes,
.prodlist-header.title-yes {
  margin-bottom: 0;
}
@font-face {
  font-family: "Barlow";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/barlow/v12/7cHrv4kjgoGqM7E_Cfs0wH8DnzcjTrA.woff2) format("woff2");
  unicode-range:
    U+0102-0103,
    U+0110-0111,
    U+0128-0129,
    U+0168-0169,
    U+01A0-01A1,
    U+01AF-01B0,
    U+1EA0-1EF9,
    U+20AB;
}
@font-face {
  font-family: "Barlow";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/barlow/v12/7cHrv4kjgoGqM7E_Cfs1wH8DnzcjTrA.woff2) format("woff2");
  unicode-range:
    U+0100-024F,
    U+0259,
    U+1E00-1EFF,
    U+2020,
    U+20A0-20AB,
    U+20AD-20CF,
    U+2113,
    U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: "Barlow";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/barlow/v12/7cHrv4kjgoGqM7E_Cfs7wH8Dnzcj.woff2) format("woff2");
  unicode-range:
    U+0000-00FF,
    U+0131,
    U+0152-0153,
    U+02BB-02BC,
    U+02C6,
    U+02DA,
    U+02DC,
    U+2000-206F,
    U+2074,
    U+20AC,
    U+2122,
    U+2191,
    U+2193,
    U+2212,
    U+2215,
    U+FEFF,
    U+FFFD;
}
@font-face {
  font-family: "Barlow";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfPI42ohvToJdLm8BvE.woff2) format("woff2");
  unicode-range:
    U+0102-0103,
    U+0110-0111,
    U+0128-0129,
    U+0168-0169,
    U+01A0-01A1,
    U+01AF-01B0,
    U+1EA0-1EF9,
    U+20AB;
}
@font-face {
  font-family: "Barlow";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfPI42ogvToJdLm8BvE.woff2) format("woff2");
  unicode-range:
    U+0100-024F,
    U+0259,
    U+1E00-1EFF,
    U+2020,
    U+20A0-20AB,
    U+20AD-20CF,
    U+2113,
    U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: "Barlow";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfPI42ouvToJdLm8.woff2) format("woff2");
  unicode-range:
    U+0000-00FF,
    U+0131,
    U+0152-0153,
    U+02BB-02BC,
    U+02C6,
    U+02DA,
    U+02DC,
    U+2000-206F,
    U+2074,
    U+20AC,
    U+2122,
    U+2191,
    U+2193,
    U+2212,
    U+2215,
    U+FEFF,
    U+FFFD;
}
@font-face {
  font-family: "Barlow";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOA5WohvToJdLm8BvE.woff2) format("woff2");
  unicode-range:
    U+0102-0103,
    U+0110-0111,
    U+0128-0129,
    U+0168-0169,
    U+01A0-01A1,
    U+01AF-01B0,
    U+1EA0-1EF9,
    U+20AB;
}
@font-face {
  font-family: "Barlow";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOA5WogvToJdLm8BvE.woff2) format("woff2");
  unicode-range:
    U+0100-024F,
    U+0259,
    U+1E00-1EFF,
    U+2020,
    U+20A0-20AB,
    U+20AD-20CF,
    U+2113,
    U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: "Barlow";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOA5WouvToJdLm8.woff2) format("woff2");
  unicode-range:
    U+0000-00FF,
    U+0131,
    U+0152-0153,
    U+02BB-02BC,
    U+02C6,
    U+02DA,
    U+02DC,
    U+2000-206F,
    U+2074,
    U+20AC,
    U+2122,
    U+2191,
    U+2193,
    U+2212,
    U+2215,
    U+FEFF,
    U+FFFD;
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/barlow/v12/7cHpv4kjgoGqM7E_A8s5ynghnQci.woff2) format("woff2");
  unicode-range:
    U+0102-0103,
    U+0110-0111,
    U+0128-0129,
    U+0168-0169,
    U+01A0-01A1,
    U+01AF-01B0,
    U+1EA0-1EF9,
    U+20AB;
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/barlow/v12/7cHpv4kjgoGqM7E_Ass5ynghnQci.woff2) format("woff2");
  unicode-range:
    U+0100-024F,
    U+0259,
    U+1E00-1EFF,
    U+2020,
    U+20A0-20AB,
    U+20AD-20CF,
    U+2113,
    U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/barlow/v12/7cHpv4kjgoGqM7E_DMs5ynghnQ.woff2) format("woff2");
  unicode-range:
    U+0000-00FF,
    U+0131,
    U+0152-0153,
    U+02BB-02BC,
    U+02C6,
    U+02DA,
    U+02DC,
    U+2000-206F,
    U+2074,
    U+20AC,
    U+2122,
    U+2191,
    U+2193,
    U+2212,
    U+2215,
    U+FEFF,
    U+FFFD;
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3_-gs6Fostz0rdom9.woff2) format("woff2");
  unicode-range:
    U+0102-0103,
    U+0110-0111,
    U+0128-0129,
    U+0168-0169,
    U+01A0-01A1,
    U+01AF-01B0,
    U+1EA0-1EF9,
    U+20AB;
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3_-gs6Vostz0rdom9.woff2) format("woff2");
  unicode-range:
    U+0100-024F,
    U+0259,
    U+1E00-1EFF,
    U+2020,
    U+20A0-20AB,
    U+20AD-20CF,
    U+2113,
    U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3_-gs51ostz0rdg.woff2) format("woff2");
  unicode-range:
    U+0000-00FF,
    U+0131,
    U+0152-0153,
    U+02BB-02BC,
    U+02C6,
    U+02DA,
    U+02DC,
    U+2000-206F,
    U+2074,
    U+20AC,
    U+2122,
    U+2191,
    U+2193,
    U+2212,
    U+2215,
    U+FEFF,
    U+FFFD;
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3t-4s6Fostz0rdom9.woff2) format("woff2");
  unicode-range:
    U+0102-0103,
    U+0110-0111,
    U+0128-0129,
    U+0168-0169,
    U+01A0-01A1,
    U+01AF-01B0,
    U+1EA0-1EF9,
    U+20AB;
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3t-4s6Vostz0rdom9.woff2) format("woff2");
  unicode-range:
    U+0100-024F,
    U+0259,
    U+1E00-1EFF,
    U+2020,
    U+20A0-20AB,
    U+20AD-20CF,
    U+2113,
    U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3t-4s51ostz0rdg.woff2) format("woff2");
  unicode-range:
    U+0000-00FF,
    U+0131,
    U+0152-0153,
    U+02BB-02BC,
    U+02C6,
    U+02DA,
    U+02DC,
    U+2000-206F,
    U+2074,
    U+20AC,
    U+2122,
    U+2191,
    U+2193,
    U+2212,
    U+2215,
    U+FEFF,
    U+FFFD;
}
a,
span,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Barlow" !important;
}
/*# sourceMappingURL=user.css.map */
