/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-carousel {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: 'tnum';
}
.ant-carousel .slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  touch-action: pan-y;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.ant-carousel .slick-list {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.ant-carousel .slick-list:focus {
  outline: none;
}
.ant-carousel .slick-list.dragging {
  cursor: pointer;
}
.ant-carousel .slick-list .slick-slide {
  pointer-events: none;
}
.ant-carousel .slick-list .slick-slide input.ant-radio-input,
.ant-carousel .slick-list .slick-slide input.ant-checkbox-input {
  visibility: hidden;
}
.ant-carousel .slick-list .slick-slide.slick-active {
  pointer-events: auto;
}
.ant-carousel .slick-list .slick-slide.slick-active input.ant-radio-input,
.ant-carousel .slick-list .slick-slide.slick-active input.ant-checkbox-input {
  visibility: visible;
}
.ant-carousel .slick-list .slick-slide > div > div {
  vertical-align: bottom;
}
.ant-carousel .slick-slider .slick-track,
.ant-carousel .slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
  touch-action: pan-y;
}
.ant-carousel .slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.ant-carousel .slick-track::before,
.ant-carousel .slick-track::after {
  display: table;
  content: '';
}
.ant-carousel .slick-track::after {
  clear: both;
}
.slick-loading .ant-carousel .slick-track {
  visibility: hidden;
}
.ant-carousel .slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
.ant-carousel .slick-slide img {
  display: block;
}
.ant-carousel .slick-slide.slick-loading img {
  display: none;
}
.ant-carousel .slick-slide.dragging img {
  pointer-events: none;
}
.ant-carousel .slick-initialized .slick-slide {
  display: block;
}
.ant-carousel .slick-loading .slick-slide {
  visibility: hidden;
}
.ant-carousel .slick-vertical .slick-slide {
  display: block;
  height: auto;
}
.ant-carousel .slick-arrow.slick-hidden {
  display: none;
}
.ant-carousel .slick-prev,
.ant-carousel .slick-next {
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  padding: 0;
  color: transparent;
  font-size: 0;
  line-height: 0;
  background: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
}
.ant-carousel .slick-prev:hover,
.ant-carousel .slick-next:hover,
.ant-carousel .slick-prev:focus,
.ant-carousel .slick-next:focus {
  color: transparent;
  background: transparent;
  outline: none;
}
.ant-carousel .slick-prev:hover::before,
.ant-carousel .slick-next:hover::before,
.ant-carousel .slick-prev:focus::before,
.ant-carousel .slick-next:focus::before {
  opacity: 1;
}
.ant-carousel .slick-prev.slick-disabled::before,
.ant-carousel .slick-next.slick-disabled::before {
  opacity: 0.25;
}
.ant-carousel .slick-prev {
  left: -25px;
}
.ant-carousel .slick-prev::before {
  content: '\2190';
}
.ant-carousel .slick-next {
  right: -25px;
}
.ant-carousel .slick-next::before {
  content: '\2192';
}
.ant-carousel .slick-dots {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: flex !important;
  justify-content: center;
  margin-right: 15%;
  margin-bottom: 0;
  margin-left: 15%;
  padding-left: 0;
  list-style: none;
}
.ant-carousel .slick-dots-bottom {
  bottom: 12px;
}
.ant-carousel .slick-dots-top {
  top: 12px;
  bottom: auto;
}
.ant-carousel .slick-dots li {
  position: relative;
  display: inline-block;
  flex: 0 1 auto;
  box-sizing: content-box;
  width: 16px;
  height: 3px;
  margin: 0 4px;
  padding: 0;
  text-align: center;
  text-indent: -999px;
  vertical-align: top;
  transition: all 0.5s;
}
.ant-carousel .slick-dots li button {
  position: relative;
  display: block;
  width: 100%;
  height: 3px;
  padding: 0;
  color: transparent;
  font-size: 0;
  background: #fff;
  border: 0;
  border-radius: 1px;
  outline: none;
  cursor: pointer;
  opacity: 0.3;
  transition: all 0.5s;
}
.ant-carousel .slick-dots li button:hover,
.ant-carousel .slick-dots li button:focus {
  opacity: 0.75;
}
.ant-carousel .slick-dots li button::after {
  position: absolute;
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
  content: '';
}
.ant-carousel .slick-dots li.slick-active {
  width: 24px;
}
.ant-carousel .slick-dots li.slick-active button {
  background: #fff;
  opacity: 1;
}
.ant-carousel .slick-dots li.slick-active:hover,
.ant-carousel .slick-dots li.slick-active:focus {
  opacity: 1;
}
.ant-carousel-vertical .slick-dots {
  top: 50%;
  bottom: auto;
  flex-direction: column;
  width: 3px;
  height: auto;
  margin: 0;
  transform: translateY(-50%);
}
.ant-carousel-vertical .slick-dots-left {
  right: auto;
  left: 12px;
}
.ant-carousel-vertical .slick-dots-right {
  right: 12px;
  left: auto;
}
.ant-carousel-vertical .slick-dots li {
  width: 3px;
  height: 16px;
  margin: 4px 0;
  vertical-align: baseline;
}
.ant-carousel-vertical .slick-dots li button {
  width: 3px;
  height: 16px;
}
.ant-carousel-vertical .slick-dots li.slick-active {
  width: 3px;
  height: 24px;
}
.ant-carousel-vertical .slick-dots li.slick-active button {
  width: 3px;
  height: 24px;
}
.ant-carousel-rtl {
  direction: rtl;
}
.ant-carousel-rtl .ant-carousel .slick-track {
  right: 0;
  left: auto;
}
.ant-carousel-rtl .ant-carousel .slick-prev {
  right: -25px;
  left: auto;
}
.ant-carousel-rtl .ant-carousel .slick-prev::before {
  content: '\2192';
}
.ant-carousel-rtl .ant-carousel .slick-next {
  right: auto;
  left: -25px;
}
.ant-carousel-rtl .ant-carousel .slick-next::before {
  content: '\2190';
}
.ant-carousel-rtl.ant-carousel .slick-dots {
  flex-direction: row-reverse;
}
.ant-carousel-rtl.ant-carousel-vertical .slick-dots {
  flex-direction: column;
}

.components-GalleriesPage-GalleriesFooter--galleries_footer_content {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 3;
    width: 100%;
    height: 30px;
    background: #FFFFFF;
    box-shadow: 0px -4px 10px 0px rgba(0,0,0,0.05);
    text-align: center;
    box-sizing: border-box;
    line-height: 30px;
    font-size: 12px;
    font-weight: 400;
    color: #9E9E9E;
}
.components-GalleriesPage-GalleriesFooter--galleries_footer_content_h {
    width: 100%;
    height: 30px;
    background: #FFFFFF;
}
.components-GalleriesPage-GalleriesFooter--galleries_footer_content .components-GalleriesPage-GalleriesFooter--a1 {
    width: 90px;
    position: relative;
    display: inline-block;
    height: 16px;
}
.components-GalleriesPage-GalleriesFooter--galleries_footer_content .components-GalleriesPage-GalleriesFooter--a1 img {
    position: absolute;
    left: 0;
    top: -16px;
    display: block;
    height: 50px;
}
.components-GalleriesPage-GalleriesFooter--galleries_footer_content a {
    font-size: 12px;
    color: #9E9E9E;
}
.components-GalleriesPage-GalleriesFooter--galleries_footer_content a:hover {
    color: #9E9E9E;
}
.components-GalleriesPage-GalleriesFooter--galleries_footer_content span {
    padding-right: 10px;
}
.components-GalleriesPage-GalleriesFooter--galleries_footer_content .components-GalleriesPage-GalleriesFooter--img_span {
    display: inline-block;
    position: relative;
    height: 16px;
    width: 16px;
    margin-right: 10px;
    top: 4px;
}
.components-GalleriesPage-GalleriesFooter--galleries_footer_content .components-GalleriesPage-GalleriesFooter--img_span .components-GalleriesPage-GalleriesFooter--img1,.components-GalleriesPage-GalleriesFooter--img2 {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    height: 16px;
    width: 16px;
    cursor: pointer;
}
.components-GalleriesPage-GalleriesFooter--galleries_footer_content .components-GalleriesPage-GalleriesFooter--img_span .components-GalleriesPage-GalleriesFooter--img2 {
    display: none;
    z-index: 3;
}
.components-GalleriesPage-GalleriesFooter--galleries_footer_content .components-GalleriesPage-GalleriesFooter--img_span:hover .components-GalleriesPage-GalleriesFooter--img2 {
    display: block;
}
.components-GalleriesPage-GalleriesFooter--galleries_footer_content .components-GalleriesPage-GalleriesFooter--img_span .components-GalleriesPage-GalleriesFooter--span_content {
    display: none;
    position: absolute;
    left: 50%;
    -ms-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    border-radius: 5px;
    overflow: hidden;
    bottom: 14px;
    padding-bottom: 14px;
    font-style: normal;
}
.components-GalleriesPage-GalleriesFooter--galleries_footer_content .components-GalleriesPage-GalleriesFooter--img_span:hover .components-GalleriesPage-GalleriesFooter--span_content {
    display: block;
}
.components-GalleriesPage-GalleriesFooter--galleries_footer_content .components-GalleriesPage-GalleriesFooter--img_span .components-GalleriesPage-GalleriesFooter--span_content img {
    display: block;
    width: 140px;
    height: 140px;
    box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.2);
}
.components-GalleriesPage-GalleriesFooter--item_hover_content {
    width: 164px;
    background: #FFFFFF;
    box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.2);
    border-radius: 5px;
    box-sizing: border-box;
    padding: 10px;
}
.components-GalleriesPage-GalleriesFooter--item_hover_content .components-GalleriesPage-GalleriesFooter--p1 {
    font-size: 14px;
    font-weight: 400;
    color: #1A1A1A;
    line-height: 24px;
    text-align: left;
}
.components-GalleriesPage-GalleriesFooter--item_hover_content .components-GalleriesPage-GalleriesFooter--p2 {
    font-size: 12px;
    font-weight: 400;
    color: #909090;
    line-height: 16px;
    text-align: left;
    white-space: nowrap;
}
 {
  /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
  /* Document
   ========================================================================== */
  /**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
  /* Sections
   ========================================================================== */
  /**
 * Remove the margin in all browsers.
 */
}
.ant-cascader-dropdown {
  overflow: visible !important;
}
html {
  font-size: 10px;
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
html,
body {
  /**
 * Render the `main` element consistently in IE.
 */
  /**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
  /* Grouping content
   ========================================================================== */
  /**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
  /**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
  /* Text-level semantics
   ========================================================================== */
  /**
 * Remove the gray background on active links in IE 10.
 */
  /**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
  /**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
  /**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
  /**
 * Add the correct font size in all browsers.
 */
  /**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
  /* Embedded content
   ========================================================================== */
  /**
 * Remove the border on images inside links in IE 10.
 */
  /* Forms
   ========================================================================== */
  /**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
  /**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
  /**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
  /**
 * Correct the inability to style clickable types in iOS and Safari.
 */
  /**
 * Remove the inner border and padding in Firefox.
 */
  /**
 * Restore the focus styles unset by the previous rule.
 */
  /**
 * Correct the padding in Firefox.
 */
  /**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
  /**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
  /**
 * Remove the default vertical scrollbar in IE 10+.
 */
  /**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
  /**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
  /**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
  /**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
  /**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
  /* Interactive
   ========================================================================== */
  /*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
  /*
 * Add the correct display in all browsers.
 */
  /* Misc
   ========================================================================== */
  /**
 * Add the correct display in IE 10+.
 */
  /**
 * Add the correct display in IE 10.
 */
}
html main,
body main {
  display: block;
}
html h1,
body h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
html hr,
body hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}
html pre,
body pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
html a,
body a {
  background-color: transparent;
}
html abbr[title],
body abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}
html b,
body b,
html strong,
body strong {
  font-weight: bolder;
}
html code,
body code,
html kbd,
body kbd,
html samp,
body samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
html small,
body small {
  font-size: 80%;
}
html sub,
body sub,
html sup,
body sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
html sub,
body sub {
  bottom: -0.25em;
}
html sup,
body sup {
  top: -0.5em;
}
html img,
body img {
  border-style: none;
}
html button,
body button,
html input,
body input,
html optgroup,
body optgroup,
html select,
body select,
html textarea,
body textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}
html button,
body button,
html input,
body input {
  /* 1 */
  overflow: visible;
}
html button,
body button,
html select,
body select {
  /* 1 */
  text-transform: none;
}
html button,
body button,
html [type="button"],
body [type="button"],
html [type="reset"],
body [type="reset"],
html [type="submit"],
body [type="submit"] {
  -webkit-appearance: button;
}
html button::-moz-focus-inner,
body button::-moz-focus-inner,
html [type="button"]::-moz-focus-inner,
body [type="button"]::-moz-focus-inner,
html [type="reset"]::-moz-focus-inner,
body [type="reset"]::-moz-focus-inner,
html [type="submit"]::-moz-focus-inner,
body [type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
html button:-moz-focusring,
body button:-moz-focusring,
html [type="button"]:-moz-focusring,
body [type="button"]:-moz-focusring,
html [type="reset"]:-moz-focusring,
body [type="reset"]:-moz-focusring,
html [type="submit"]:-moz-focusring,
body [type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
html fieldset,
body fieldset {
  padding: 0.35em 0.75em 0.625em;
}
html legend,
body legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}
html progress,
body progress {
  vertical-align: baseline;
}
html textarea,
body textarea {
  overflow: auto;
}
html [type="checkbox"],
body [type="checkbox"],
html [type="radio"],
body [type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}
html [type="number"]::-webkit-inner-spin-button,
body [type="number"]::-webkit-inner-spin-button,
html [type="number"]::-webkit-outer-spin-button,
body [type="number"]::-webkit-outer-spin-button {
  height: auto;
}
html [type="search"],
body [type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}
html [type="search"]::-webkit-search-decoration,
body [type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
html ::-webkit-file-upload-button,
body ::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}
html details,
body details {
  display: block;
}
html summary,
body summary {
  display: list-item;
}
html template,
body template {
  display: none;
}
html [hidden],
body [hidden] {
  display: none;
}
html *,
body * {
  box-sizing: border-box;
}
html *:before,
body *:before,
html *:after,
body *:after {
  box-sizing: border-box;
}
html *:focus,
body *:focus {
  outline: 0 !important;
}
html h1,
body h1,
html h2,
body h2,
html h3,
body h3,
html h4,
body h4 {
  padding: 0;
  margin: 0;
}
html input,
body input,
html button,
body button,
html select,
body select,
html textarea,
body textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
html img,
body img {
  border: 0;
}
html svg:not(:root),
body svg:not(:root) {
  overflow: hidden;
}
html button,
body button,
html input,
body input,
html optgroup,
body optgroup,
html select,
body select,
html textarea,
body textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
html button,
body button {
  overflow: visible;
}
html button,
body button,
html select,
body select {
  text-transform: none;
}
html button,
body button,
html html input[type="button"],
body html input[type="button"],
html input[type="reset"],
body input[type="reset"],
html input[type="submit"],
body input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
html button[disabled],
body button[disabled],
html html input[disabled],
body html input[disabled] {
  cursor: default;
}
html button::-moz-focus-inner,
body button::-moz-focus-inner,
html input::-moz-focus-inner,
body input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
html input[type="checkbox"],
body input[type="checkbox"],
html input[type="radio"],
body input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
  cursor: pointer;
}
html input[type="number"]::-webkit-inner-spin-button,
body input[type="number"]::-webkit-inner-spin-button,
html input[type="number"]::-webkit-outer-spin-button,
body input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
html input[type="search"],
body input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
html input[type="search"]::-webkit-search-cancel-button,
body input[type="search"]::-webkit-search-cancel-button,
html input[type="search"]::-webkit-search-decoration,
body input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
html input:-webkit-autofill,
body input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
  -webkit-text-fill-color: #333;
}
html textarea,
body textarea {
  overflow: auto;
  resize: none;
  color: #333;
  padding: 10px;
  border: #e9e9e9 1px solid;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
html optgroup,
body optgroup {
  font-weight: bold;
}
html a,
body a {
  color: inherit;
  text-decoration: none;
}
html a:focus,
body a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
html ul,
body ul,
html ol,
body ol {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
html p,
body p {
  margin: 0;
}
html input[type="text"],
body input[type="text"],
html input[type="password"],
body input[type="password"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-left: 10px;
  padding-right: 10px;
  color: #333;
  border: #e9e9e9 1px solid;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
html textarea:focus,
body textarea:focus,
html input[type="text"]:focus,
body input[type="text"]:focus,
html input[type="password"]:focus,
body input[type="password"]:focus {
  border-color: #a0bdfe;
  box-shadow: 0 0 3px 0 #427afb;
}
html ::placeholder,
body ::placeholder {
  color: #9b9b9b;
}
html .list-inline,
body .list-inline {
  font-size: 0;
}
html .list-inline li,
body .list-inline li {
  display: inline-block;
  font-size: 14px;
}
html .ellipsis,
body .ellipsis {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  min-height: 1em;
}
html .link,
body .link {
  color: #427afb;
  cursor: pointer;
}
html .ReactModal__Body--open,
body .ReactModal__Body--open {
  overflow: hidden;
}
html .container,
body .container {
  width: 1180px;
  margin: 0 auto;
}
html .modal-title,
body .modal-title {
  font-size: 20px;
  font-weight: normal;
  height: 60px;
  line-height: 60px;
  margin-top: 0;
  margin-bottom: 0;
  background: #f3f3f3;
  border-radius: 6px 6px 0 0;
  border-bottom: 1px solid #d8d8d8;
  padding-left: 20px;
}
html .modal-foot,
body .modal-foot {
  border-radius: 0 0 6px 6px;
  background: #f3f3f3;
  text-align: center;
  border-top: 1px solid #d8d8d8;
  height: 60px;
  padding-top: 12px;
}
html .tether-element,
body .tether-element {
  z-index: 100000000000;
}
html .modal-open,
body .modal-open {
  overflow: hidden;
}
html .clearfix:after,
body .clearfix:after {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
}
html .clearfix,
body .clearfix {
  zoom: 1;
}
html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-family: "PingFangSC-Regular", "Microsoft YaHei", "Hiragino Sans GB", tahoma, Arial, "\5B8B\4F53", "STHeiti", "WenQuanYi Micro Hei", SimSun, sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: "PingFangSC-Regular", "Microsoft YaHei", "Hiragino Sans GB", tahoma, Arial, "\5B8B\4F53", "STHeiti", "WenQuanYi Micro Hei", SimSun, sans-serif;
  font-size: 14px;
  line-height: 1;
  color: #333;
  background-color: #fff;
  word-wrap: break-word;
}
@media (max-width: 767px) {
  .ant-cascader-menu {
    width: 28vw!important;
    min-width: 28vw!important;
    overflow-x: hidden!important;
  }
  .ant-cascader-menu-item-content {
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .ant-cascader-menu-item-expand-icon {
    right: 4px!important;
  }
  .ant-cascader-menu-item {
    padding-right: 10px!important;
    padding-left: 5px!important;
  }
}

.components-GalleriesPage--page {
    background-color: #fff;
    padding-top: 0;
}

