html, body, div, span, applet, object, iframe,
h1, h3, h2, 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, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "Mazda Type Cyrillic";
  src: url("/fonts/MazdaTypeCyrillic-Medium.woff2") format("woff2"), url("/fonts/MazdaTypeCyrillic-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mazda Type Cyrillic";
  src: url("/fonts/MazdaTypeCyrillic-Bold.woff2") format("woff2"), url("/fonts/MazdaTypeCyrillic-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mazda Type Cyrillic";
  src: url("/fonts/MazdaTypeCyrillic-Regular.woff2") format("woff2"), url("/fonts/MazdaTypeCyrillic-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.v-select {
  position: relative;
  font-family: inherit;
}

.v-select, .v-select * {
  box-sizing: border-box;
}
@keyframes vSelectSpinner {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.vs__fade-enter-active, .vs__fade-leave-active {
  transition: opacity 0.15s cubic-bezier(1, 0.5, 0.8, 1);
}

.vs__fade-enter, .vs__fade-leave-to {
  opacity: 0;
}

.vs--disabled .vs__clear, .vs--disabled .vs__dropdown-toggle, .vs--disabled .vs__open-indicator, .vs--disabled .vs__search, .vs--disabled .vs__selected {
  cursor: not-allowed;
  background-color: #f8f8f8;
}

.v-select[dir=rtl] .vs__actions {
  padding: 0 3px 0 6px;
}

.v-select[dir=rtl] .vs__clear {
  margin-left: 6px;
  margin-right: 0;
}

.v-select[dir=rtl] .vs__deselect {
  margin-left: 0;
  margin-right: 2px;
}

.v-select[dir=rtl] .vs__dropdown-menu {
  text-align: right;
}

.vs__dropdown-toggle {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: flex;
  padding: 0 0 2px;
  height: 40px;
  background: #fff;
  border: 1px solid #D5D5D5;
  border-radius: 4px;
  white-space: normal;
}

.vs__selected-options {
  display: flex;
  flex-basis: 100%;
  flex-grow: 1;
  flex-wrap: wrap;
  padding: 4px 2px 4px 2px;
  position: relative;
}

.vs__actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  position: absolute;
  right: 0;
  top: 12px;
  padding: 4px 7px 0 3px;
}

.vs--searchable .vs__dropdown-toggle {
  cursor: text;
}

.vs--unsearchable .vs__dropdown-toggle {
  cursor: pointer;
}

.vs--open .vs__dropdown-toggle {
  border-bottom-color: transparent;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.vs__open-indicator {
  fill: none;
  background: url("/img/general/navigatedown.svg") 0 0/contain no-repeat;
  width: 15px;
  height: 10px;
  cursor: pointer;
  flex-shrink: 0;
}

.vs--open .vs__open-indicator {
  transform: rotate(180deg) scale(1);
}

.vs--loading .vs__open-indicator {
  opacity: 0;
}

.vs__clear {
  fill: #000;
  padding: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  margin-right: 8px;
  flex-shrink: 0;
}

.vs__dropdown-menu {
  display: block;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  z-index: 1000;
  padding: 5px 0;
  margin: 0;
  width: 100%;
  max-height: 350px;
  min-width: 160px;
  overflow-y: auto;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(60, 60, 60, 0.26);
  border-top-style: none;
  border-radius: 0 0 4px 4px;
  text-align: left;
  list-style: none;
  background: #fff;
  font-size: 16px;
  font-weight: 400;
}

.vs__no-options {
  text-align: center;
}

.vs__dropdown-option {
  line-height: 1.42857143;
  display: block;
  padding: 3px 20px 3px 10px;
  clear: both;
  color: #333;
  white-space: nowrap;
}

.vs__dropdown-option:hover {
  cursor: pointer;
}

.vs__dropdown-option--highlight {
  background: #5897fb;
  color: #fff;
}

.vs__selected {
  white-space: nowrap;
  width: calc(100% - 58px);
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  align-items: center;
  background-color: #f0f0f0;
  border: 1px solid rgba(60, 60, 60, 0.26);
  border-radius: 4px;
  color: #333;
  line-height: 1.4;
  margin: 4px 2px 0;
  padding: 0 0.25em;
  font-size: 16px;
  font-weight: 400;
}

.vs__deselect {
  display: inline-flex;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-left: 4px;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: none;
  fill: rgba(60, 60, 60, 0.5);
  text-shadow: 0 1px 0 #fff;
}

.vs--single .vs__selected {
  background-color: transparent;
  border-color: transparent;
}

.vs--single.vs--open .vs__selected {
  position: absolute;
  opacity: 0.4;
}

.vs--single.vs--searching .vs__selected {
  display: none;
}

.vs__search::-ms-clear, .vs__search::-webkit-search-cancel-button, .vs__search::-webkit-search-decoration, .vs__search::-webkit-search-results-button, .vs__search::-webkit-search-results-decoration {
  display: none;
}

.vs__search, .vs__search:focus {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: 1.4;
  font-size: 1em;
  border: 1px solid transparent;
  border-left: none;
  outline: none;
  margin: 4px 0 0;
  padding: 0 7px;
  background: none;
  box-shadow: none;
  width: 100%;
  position: absolute;
  max-width: 100%;
  flex-grow: 1;
}

.vs__search::-moz-placeholder {
  color: inherit;
}

.vs__search::placeholder {
  color: inherit;
}

.vs--unsearchable .vs__search {
  opacity: 1;
}

.vs--unsearchable .vs__search:hover {
  cursor: pointer;
}

.vs--single.vs--searching:not(.vs--open):not(.vs--loading) .vs__search {
  opacity: 0.2;
}

.vs__spinner {
  align-self: center;
  opacity: 0;
  font-size: 5px;
  text-indent: -9999em;
  overflow: hidden;
  border: 0.9em solid hsla(0deg, 0%, 39.2%, 0.1);
  border-left-color: rgba(60, 60, 60, 0.45);
  transform: translateZ(0);
  animation: vSelectSpinner 1.1s linear infinite;
  transition: opacity 0.1s;
}

.vs__spinner, .vs__spinner:after {
  border-radius: 50%;
  width: 5em;
  height: 5em;
}

.vs--loading .vs__spinner {
  opacity: 1;
}

/*# sourceMappingURL=vue-select.css.map*/
.datepicker {
  display: none;
  color: #000;
  font-weight: 400;
}

.datepicker.active {
  display: block;
}

.datepicker-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  padding-top: 4px;
}

.datepicker-dropdown.datepicker-orient-top {
  padding-top: 0;
  padding-bottom: 4px;
}

.datepicker-picker {
  display: inline-block;
  border-radius: 4px;
  background-color: white;
}

.datepicker-dropdown .datepicker-picker {
  box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
}

.datepicker-picker span {
  display: block;
  flex: 1;
  border: 0;
  border-radius: 4px;
  cursor: default;
  text-align: center;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.datepicker-main {
  padding: 2px;
}

.datepicker-footer {
  box-shadow: inset 0 1px 1px rgba(10, 10, 10, 0.1);
  background-color: whitesmoke;
}

.datepicker-grid,
.datepicker-view .days-of-week,
.datepicker-view,
.datepicker-controls {
  display: flex;
}

.datepicker-grid {
  flex-wrap: wrap;
}

.datepicker-view .days .datepicker-cell,
.datepicker-view .dow {
  flex-basis: 14.2857142857%;
}

.datepicker-view.datepicker-grid .datepicker-cell {
  flex-basis: 25%;
}

.datepicker-cell,
.datepicker-view .week {
  height: 2.25rem;
  line-height: 2.25rem;
}

.datepicker-title {
  box-shadow: inset 0 -1px 1px rgba(10, 10, 10, 0.1);
  background-color: whitesmoke;
  padding: 0.375rem 0.75rem;
  text-align: center;
  font-weight: 700;
}

.datepicker-header .datepicker-controls {
  padding: 2px 2px 0;
}

.datepicker-controls .button {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  box-shadow: none;
  background-color: white;
  cursor: pointer;
  padding: calc(0.375em - 1px) 0.75em;
  height: 2.25em;
  vertical-align: top;
  text-align: center;
  line-height: 1.5;
  white-space: nowrap;
  color: #363636;
  font-size: 1rem;
}

.datepicker-controls .button:focus,
.datepicker-controls .button:active {
  outline: none;
}

.datepicker-controls .button:hover {
  border-color: #b5b5b5;
  color: #363636;
}

.datepicker-controls .button:focus {
  border-color: #3273dc;
  color: #363636;
}

.datepicker-controls .button:focus:not(:active) {
  box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
}

.datepicker-controls .button:active {
  border-color: #4a4a4a;
  color: #363636;
}

.datepicker-controls .button[disabled] {
  cursor: not-allowed;
}

.datepicker-header .datepicker-controls .button {
  border-color: transparent;
  font-weight: bold;
}

.datepicker-header .datepicker-controls .button:hover {
  background-color: #f9f9f9;
}

.datepicker-header .datepicker-controls .button:focus:not(:active) {
  box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25);
}

.datepicker-header .datepicker-controls .button:active {
  background-color: #f2f2f2;
}

.datepicker-header .datepicker-controls .button[disabled] {
  box-shadow: none;
}

.datepicker-footer .datepicker-controls .button {
  margin: calc(0.375rem - 1px) 0.375rem;
  border-radius: 2px;
  width: 100%;
  font-size: 0.75rem;
}

.datepicker-controls .view-switch {
  flex: auto;
}

.datepicker-controls .prev-btn,
.datepicker-controls .next-btn {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
  width: 2.25rem;
}

.datepicker-controls .prev-btn.disabled,
.datepicker-controls .next-btn.disabled {
  visibility: hidden;
}

.datepicker-view .dow {
  height: 1.5rem;
  line-height: 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
}

.datepicker-view .week {
  width: 2.25rem;
  color: #b5b5b5;
  font-size: 0.75rem;
}

@media (max-width: 22.5rem) {
  .datepicker-view .week {
    width: 1.96875rem;
  }
}
.datepicker-grid {
  width: 15.75rem;
}

@media (max-width: 22.5rem) {
  .calendar-weeks + .days .datepicker-grid {
    width: 13.78125rem;
  }
}
.datepicker-cell:not(.disabled):hover {
  background-color: #f9f9f9;
  cursor: pointer;
}

.datepicker-cell.focused:not(.selected) {
  background-color: #e8e8e8;
}

.datepicker-cell.selected,
.datepicker-cell.selected:hover {
  background-color: #910A2D;
  color: #fff;
}

.datepicker-cell.disabled {
  color: #dbdbdb;
}

.datepicker-cell.prev:not(.disabled),
.datepicker-cell.next:not(.disabled) {
  color: #999;
}

.datepicker-cell.prev.selected,
.datepicker-cell.next.selected {
  color: #e6e6e6;
}

.datepicker-cell.highlighted:not(.selected):not(.range):not(.today) {
  border-radius: 0;
  background-color: whitesmoke;
}

.datepicker-cell.highlighted:not(.selected):not(.range):not(.today):not(.disabled):hover {
  background-color: #eeeeee;
}

.datepicker-cell.highlighted:not(.selected):not(.range):not(.today).focused {
  background-color: #e8e8e8;
}

.datepicker-cell.today:not(.selected) {
  background-color: #00d1b2;
}

.datepicker-cell.today:not(.selected):not(.disabled) {
  color: #fff;
}

.datepicker-cell.today.focused:not(.selected) {
  background-color: #00c4a7;
}

.datepicker-cell.range-end:not(.selected),
.datepicker-cell.range-start:not(.selected) {
  background-color: #b5b5b5;
  color: #fff;
}

.datepicker-cell.range-end.focused:not(.selected),
.datepicker-cell.range-start.focused:not(.selected) {
  background-color: #afafaf;
}

.datepicker-cell.range-start {
  border-radius: 4px 0 0 4px;
}

.datepicker-cell.range-end {
  border-radius: 0 4px 4px 0;
}

.datepicker-cell.range {
  border-radius: 0;
  background-color: #dbdbdb;
}

.datepicker-cell.range:not(.disabled):not(.focused):not(.today):hover {
  background-color: #d5d5d5;
}

.datepicker-cell.range.disabled {
  color: #c2c2c2;
}

.datepicker-cell.range.focused {
  background-color: #cfcfcf;
}

.datepicker-view.datepicker-grid .datepicker-cell {
  height: 4.5rem;
  line-height: 4.5rem;
}

.datepicker-input.in-edit {
  border-color: #2366d1;
}

.datepicker-input.in-edit:focus,
.datepicker-input.in-edit:active {
  box-shadow: 0 0 0.25em 0.25em rgba(35, 102, 209, 0.2);
}

.dp-arrow {
  position: absolute;
  background: url(/img/general/navigatedown.svg) 0 0/contain no-repeat;
  width: 15px;
  height: 10px;
  top: 15px;
  right: 7px;
}

.dp-wrap {
  background: #fff;
  position: relative;
  border-radius: 3px;
}
.dp-wrap input[type=text] {
  background: none;
}
.dp-wrap input[type=text]:focus ~ .dp-arrow {
  transform: scaleY(-1);
}

/**
 * Swiper 8.4.4
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 12, 2022
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-next + .swiper-slide, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.gallery-top__wrap {
  overflow: hidden;
  margin-bottom: 10px;
}
.gallery-top__wrap .swiper-slide {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  height: 300px;
  cursor: pointer;
}
.gallery-top__wrap img {
  max-height: 300px;
}

.modal-gallery-top {
  overflow: hidden;
}

.modal-gallery-top__wrap {
  margin-bottom: 20px;
  position: relative;
}
.modal-gallery-top__wrap .swiper-slide {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  height: 580px;
  padding-left: 30px;
  padding-right: 30px;
}
.modal-gallery-top__wrap img {
  max-height: 580px;
}

.gallery-bot__wrap {
  overflow: hidden;
  margin-bottom: 27px;
  position: relative;
}
.gallery-bot__wrap .swiper-slide {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  height: 40px;
}
.gallery-bot__wrap img {
  max-height: 40px;
  cursor: pointer;
}

.modal-gallery-bot__inner {
  margin-left: -5px;
  margin-right: -5px;
}

.modal-gallery-bot__wrap {
  overflow: hidden;
  margin-bottom: 27px;
  position: relative;
  padding-left: 30px;
  padding-right: 30px;
}
.modal-gallery-bot__wrap .swiper-slide {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  height: 40px;
}
.modal-gallery-bot__wrap img {
  max-height: 40px;
  cursor: pointer;
}

.gallery-bot__wrap {
  padding-left: 35px;
  padding-right: 35px;
}

.gallery-thumbs .swiper-slide {
  padding-left: 5px;
  padding-right: 5px;
}

.gallery-button-prev {
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 5px;
}
.gallery-button-prev svg {
  width: 10px;
  height: 15px;
  transform: scaleX(-1);
}

.gallery-button-next {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 5px;
}
.gallery-button-next svg {
  width: 10px;
  height: 15px;
}

.modal-gallery-thumbs .swiper-slide {
  padding-left: 5px;
  padding-right: 5px;
  width: 70px;
}
.modal-gallery-button-prev {
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 5px;
  z-index: 2;
}
.modal-gallery-button-prev svg {
  width: 10px;
  height: 15px;
  fill: #fff;
  transform: scaleX(-1);
}

.modal-gallery-button-next {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 5px;
  z-index: 2;
}
.modal-gallery-button-next svg {
  width: 10px;
  height: 15px;
  fill: #fff;
}

/*!
 * Cropper.js v1.5.12
 * https://fengyuanchen.github.io/cropperjs
 *
 * Copyright 2015-present Chen Fengyuan
 * Released under the MIT license
 *
 * Date: 2021-06-12T08:00:11.623Z
 */
.cropper-container {
  direction: ltr;
  font-size: 0;
  line-height: 0;
  position: relative;
  touch-action: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.cropper-container img {
  image-orientation: 0deg;
  display: block;
  height: 100%;
  max-height: none !important;
  max-width: none !important;
  min-height: 0 !important;
  min-width: 0 !important;
  width: 100%;
}

.cropper-canvas, .cropper-crop-box, .cropper-drag-box, .cropper-modal, .cropper-wrap-box {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.cropper-canvas, .cropper-wrap-box {
  overflow: hidden;
}

.cropper-drag-box {
  background-color: #fff;
  opacity: 0;
}

.cropper-modal {
  background-color: #000;
  opacity: 0.5;
}

.cropper-view-box {
  display: block;
  height: 100%;
  outline: 1px solid #39f;
  outline-color: rgba(51, 153, 255, 0.75);
  overflow: hidden;
  width: 100%;
}

.cropper-dashed {
  border: 0 dashed #eee;
  display: block;
  opacity: 0.5;
  position: absolute;
}

.cropper-dashed.dashed-h {
  border-bottom-width: 1px;
  border-top-width: 1px;
  height: 33.33333%;
  left: 0;
  top: 33.33333%;
  width: 100%;
}

.cropper-dashed.dashed-v {
  border-left-width: 1px;
  border-right-width: 1px;
  height: 100%;
  left: 33.33333%;
  top: 0;
  width: 33.33333%;
}

.cropper-center {
  display: block;
  height: 0;
  left: 50%;
  opacity: 0.75;
  position: absolute;
  top: 50%;
  width: 0;
}

.cropper-center:after, .cropper-center:before {
  background-color: #eee;
  content: " ";
  display: block;
  position: absolute;
}

.cropper-center:before {
  height: 1px;
  left: -3px;
  top: 0;
  width: 7px;
}

.cropper-center:after {
  height: 7px;
  left: 0;
  top: -3px;
  width: 1px;
}

.cropper-face, .cropper-line, .cropper-point {
  display: block;
  height: 100%;
  opacity: 0.1;
  position: absolute;
  width: 100%;
}

.cropper-face {
  background-color: #fff;
  left: 0;
  top: 0;
}

.cropper-line {
  background-color: #39f;
}

.cropper-line.line-e {
  cursor: ew-resize;
  right: -3px;
  top: 0;
  width: 5px;
}

.cropper-line.line-n {
  cursor: ns-resize;
  height: 5px;
  left: 0;
  top: -3px;
}

.cropper-line.line-w {
  cursor: ew-resize;
  left: -3px;
  top: 0;
  width: 5px;
}

.cropper-line.line-s {
  bottom: -3px;
  cursor: ns-resize;
  height: 5px;
  left: 0;
}

.cropper-point {
  background-color: #39f;
  height: 5px;
  opacity: 0.75;
  width: 5px;
}

.cropper-point.point-e {
  cursor: ew-resize;
  margin-top: -3px;
  right: -3px;
  top: 50%;
}

.cropper-point.point-n {
  cursor: ns-resize;
  left: 50%;
  margin-left: -3px;
  top: -3px;
}

.cropper-point.point-w {
  cursor: ew-resize;
  left: -3px;
  margin-top: -3px;
  top: 50%;
}

.cropper-point.point-s {
  bottom: -3px;
  cursor: s-resize;
  left: 50%;
  margin-left: -3px;
}

.cropper-point.point-ne {
  cursor: nesw-resize;
  right: -3px;
  top: -3px;
}

.cropper-point.point-nw {
  cursor: nwse-resize;
  left: -3px;
  top: -3px;
}

.cropper-point.point-sw {
  bottom: -3px;
  cursor: nesw-resize;
  left: -3px;
}

.cropper-point.point-se {
  bottom: -3px;
  cursor: nwse-resize;
  height: 20px;
  opacity: 1;
  right: -3px;
  width: 20px;
}

@media (min-width: 768px) {
  .cropper-point.point-se {
    height: 15px;
    width: 15px;
  }
}
@media (min-width: 992px) {
  .cropper-point.point-se {
    height: 10px;
    width: 10px;
  }
}
@media (min-width: 1200px) {
  .cropper-point.point-se {
    height: 5px;
    opacity: 0.75;
    width: 5px;
  }
}
.cropper-point.point-se:before {
  background-color: #39f;
  bottom: -50%;
  content: " ";
  display: block;
  height: 200%;
  opacity: 0;
  position: absolute;
  right: -50%;
  width: 200%;
}

.cropper-invisible {
  opacity: 0;
}

.cropper-bg {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC");
}

.cropper-hide {
  display: block;
  height: 0;
  position: absolute;
  width: 0;
}

.cropper-hidden {
  display: none !important;
}

.cropper-move {
  cursor: move;
}

.cropper-crop {
  cursor: crosshair;
}

.cropper-disabled .cropper-drag-box, .cropper-disabled .cropper-face, .cropper-disabled .cropper-line, .cropper-disabled .cropper-point {
  cursor: not-allowed;
}

.file-uploads.btn {
  height: 0;
}

.drop-active {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  pointer-events: none;
}

.modal-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: relative;
  width: 100%;
  max-height: 80vh;
  padding: 20px 30px 30px 30px;
  overflow: auto;
  background-color: #fff;
  border-radius: 4px;
}

.modal-gallery {
  position: relative;
  width: 100%;
  max-height: 80vh;
  overflow: auto;
}

.modal__subject {
  font-weight: 700;
  font-size: 23px;
  line-height: 23px;
  margin-bottom: 22px;
  text-align: center;
}

.modal__text {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 25px;
}
.modal__text p {
  margin-bottom: 20px;
}
.modal__text p:last-child {
  margin-bottom: 0;
}

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

::-moz-placeholder, .vs__search::-moz-placeholder {
  color: #999999;
}

::placeholder, .vs__search::placeholder {
  color: #999999;
}

:-ms-input-placeholder, .vs__search:-ms-input-placeholder {
  color: #999999;
}

::-ms-input-placeholder, .vs__search::-ms-input-placeholder {
  color: #999999;
}

a {
  text-decoration: none;
  color: #910A2D;
}

img,
svg {
  max-width: 100%;
  display: block;
}

input[type=text],
input[type=email],
input[type=number],
input[type=password] {
  font-family: inherit;
  background: #FFFFFF;
  border: 1px solid #D5D5D5;
  border-radius: 3px;
  width: 100%;
  height: 40px;
  padding-left: 10px;
  padding-right: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}

textarea {
  resize: vertical;
  font-family: inherit;
  background: #FFFFFF;
  border: 1px solid #D5D5D5;
  border-radius: 3px;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 7px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}

.input-error input[type=text],
.input-error input[type=number],
.input-error input[type=email],
.input-error input[type=password],
.input-error textarea {
  border: 2px solid #910A2D;
}

.label {
  display: block;
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.form-input {
  position: relative;
}

.form-note {
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  color: #999999;
}

.form-note-black {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  margin-bottom: 26px;
}

.error {
  font-weight: 500;
  margin-top: 5px;
  line-height: 20px;
  color: #910A2D;
}

.form-flex {
  display: flex;
  margin-left: -10px;
  margin-right: -10px;
}
.form-flex.-mr-90 {
  margin-right: -90px;
}
.form-flex .form-row {
  padding-left: 10px;
  padding-right: 10px;
}

.text {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
.text > p, .text > div {
  margin-bottom: 20px;
}
.text ul {
  margin-bottom: 20px;
  margin-left: 10px;
}
.text ul:last-child {
  margin-bottom: 0;
}
.text ul li {
  list-style: disc;
}

.h1 {
  font-size: 23px;
  line-height: 24px;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.h1.mb-0 {
  margin-bottom: 0;
}

.flex-line {
  display: flex;
  margin-left: -2px;
  margin-right: -2px;
}

.flex-line__item {
  padding-left: 2px;
  padding-right: 2px;
  flex-shrink: 0;
}

.flex {
  margin-left: -10px;
  margin-right: -10px;
}

.flex__item {
  padding-left: 10px;
  padding-right: 10px;
  flex-shrink: 0;
}

.min-flex {
  margin-left: -5px;
  margin-right: -5px;
}

.min-flex__item {
  padding-left: 5px;
  padding-right: 5px;
  flex-shrink: 0;
}

.hr {
  background: #D5D5D5;
  height: 1px;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  cursor: pointer;
  background: none;
  padding: 0;
}

.btn {
  font-family: inherit;
  text-align: center;
  height: 40px;
  border-radius: 3px;
  transition: 0.3s;
  border: 0;
  cursor: pointer;
}
.btn .btn__text {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  transition: 0.3s;
}
.btn path, .btn svg {
  transition: 0.3s;
}
.btn.btn-black {
  background: #000000;
}
.btn.btn-black .btn__text {
  color: #FFFFFF;
}
.btn.btn-black path, .btn.btn-black svg {
  fill: #fff;
}
.btn.btn-black:hover {
  background: #910A2D;
}
.btn.btn-white-bordered {
  border: 2px solid #000000;
  background: #fff;
  color: #000;
}
.btn.btn-white-bordered .btn__text {
  color: #000;
}
.btn.btn-white-bordered:hover {
  background: #910A2D;
  border: 2px solid #910A2D;
}
.btn.btn-white-bordered:hover .btn__text {
  color: #fff;
}
.btn.btn-white-bordered:hover path, .btn.btn-white-bordered:hover svg {
  fill: #fff;
}

.btn__text + .btn__image {
  margin-left: 11px;
  margin-right: 0;
}

.btn-with-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn__image {
  margin-right: 17px;
}

.link {
  display: flex;
  background: none;
  padding: 0;
  border-bottom: 2px solid #999999;
  padding-bottom: 3px;
  align-items: center;
}
.link:hover {
  border-bottom: 2px solid #910A2D;
}

.link__text {
  padding-left: 8px;
  color: #999;
  font-weight: 700;
  font-size: 13px;
  line-height: 24px;
  text-transform: uppercase;
}

.table {
  display: table;
  width: 100%;
}

.tr {
  display: table-row;
}
.tr:hover .td {
  background: #fff;
}
.tr:last-child .td {
  border-bottom: 1px solid #D5D5D5;
}

.th {
  display: table-cell;
  background: #D5D5D5;
  padding-left: 9px;
  padding-right: 9px;
  padding-top: 3px;
  padding-bottom: 3px;
}
.th.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.td {
  display: table-cell;
  background: #F5F5F5;
  padding-left: 9px;
  padding-right: 9px;
  padding-top: 10px;
  padding-bottom: 10px;
  vertical-align: middle;
  border-left: 1px solid #D5D5D5;
  border-top: 1px solid #D5D5D5;
  font-weight: 400;
  line-height: 20px;
}
.td:last-child {
  border-right: 1px solid #D5D5D5;
}

.th__subject {
  font-weight: 400;
  white-space: nowrap;
  line-height: 24px;
}

.th__arrow {
  margin-left: 8px;
  background: url("/img/general/down-grey.svg") 50% 50%/contain no-repeat;
  width: 12px;
  height: 12px;
}
.th__arrow.th__arrow-active {
  background: url("/img/general/down.svg") 50% 50%/contain no-repeat;
}
.th__arrow.th__arrow-top {
  transform: scaleY(-1);
}

.th__sort {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.th__sort.th__sort-center {
  justify-content: center;
}

.table__icon {
  justify-content: center;
  display: flex;
}

.table-edit {
  margin-left: -9px;
  margin-right: -9px;
}
.table-edit .td {
  background: none;
  border: 0;
}
.table-edit .th {
  background: none;
}
.table-edit .tr:hover .td {
  background: none;
}
.table-edit .tr:last-child .td {
  border: 0;
}
.table-edit .th__subject {
  font-weight: 700;
  font-size: 13px;
}

.table-label {
  display: table;
}

.table-label__tr {
  display: table-row;
}

.table-label__th {
  display: table-cell;
  font-weight: 700;
  font-size: 13px;
  line-height: 24px;
  text-transform: uppercase;
  color: #999999;
  padding-right: 15px;
  padding-top: 3px;
  padding-bottom: 3px;
  vertical-align: middle;
}

.table-label__td {
  display: table-cell;
  padding-top: 3px;
  padding-bottom: 3px;
  text-transform: uppercase;
  vertical-align: middle;
  font-size: 13px;
  line-height: 24px;
}

.checkbox-center [type=checkbox]:checked,
.checkbox-center [type=checkbox]:not(:checked),
.checkbox-center [type=radio]:checked,
.checkbox-center [type=radio]:not(:checked),
.radiobox-center [type=checkbox]:checked,
.radiobox-center [type=checkbox]:not(:checked),
.radiobox-center [type=radio]:checked,
.radiobox-center [type=radio]:not(:checked) {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}
.checkbox-center [type=checkbox]:checked + label .checkbox-circle:after,
.checkbox-center [type=radio]:checked + label .checkbox-circle:after,
.radiobox-center [type=checkbox]:checked + label .checkbox-circle:after,
.radiobox-center [type=radio]:checked + label .checkbox-circle:after {
  transform: scale(1);
  opacity: 1;
}
.checkbox-center [type=checkbox]:checked + label .radiobox-circle:after,
.checkbox-center [type=radio]:checked + label .radiobox-circle:after,
.radiobox-center [type=checkbox]:checked + label .radiobox-circle:after,
.radiobox-center [type=radio]:checked + label .radiobox-circle:after {
  transform: scale(1);
  opacity: 1;
}
.checkbox-center [type=checkbox]:checked + label .checkbox-square,
.checkbox-center [type=radio]:checked + label .checkbox-square,
.radiobox-center [type=checkbox]:checked + label .checkbox-square,
.radiobox-center [type=radio]:checked + label .checkbox-square {
  background: #000;
}
.checkbox-center [type=checkbox]:checked + label .checkbox-square:after,
.checkbox-center [type=radio]:checked + label .checkbox-square:after,
.radiobox-center [type=checkbox]:checked + label .checkbox-square:after,
.radiobox-center [type=radio]:checked + label .checkbox-square:after {
  transform: scale(1);
  opacity: 1;
}
.checkbox-center [type=checkbox]:checked + label .checkbox-link svg,
.checkbox-center [type=radio]:checked + label .checkbox-link svg,
.radiobox-center [type=checkbox]:checked + label .checkbox-link svg,
.radiobox-center [type=radio]:checked + label .checkbox-link svg {
  fill: #000;
}
.checkbox-center [type=checkbox]:checked + label .checkbox-text__sku,
.checkbox-center [type=radio]:checked + label .checkbox-text__sku,
.radiobox-center [type=checkbox]:checked + label .checkbox-text__sku,
.radiobox-center [type=radio]:checked + label .checkbox-text__sku {
  color: #000;
}
.checkbox-center label,
.radiobox-center label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.checkbox-center .checkbox-square,
.radiobox-center .checkbox-square {
  position: relative;
  width: 29px;
  height: 27px;
  background: #FFFFFF;
  border: 1px solid #D5D5D5;
  border-radius: 3px;
  flex-shrink: 0;
}
.checkbox-center .checkbox-square:after,
.radiobox-center .checkbox-square:after {
  content: "";
  opacity: 0;
  transition: 0.3s;
  transform: scale(0.5);
  position: absolute;
  top: 5px;
  left: 6px;
  width: 14px;
  height: 14px;
  background: url("/img/general/check.svg") 50% 50%/cover no-repeat;
}
.checkbox-center .checkbox-square + .checkbox-text,
.radiobox-center .checkbox-square + .checkbox-text {
  font-weight: 400;
  font-size: 13px;
  line-height: 19px;
  text-transform: uppercase;
  color: #999999;
  padding-left: 10px;
}
.checkbox-center .checkbox-square + .checkbox-text.checkbox-text__sku,
.radiobox-center .checkbox-square + .checkbox-text.checkbox-text__sku {
  text-transform: none;
  font-size: 14px;
  line-height: 20px;
}
.checkbox-center .checkbox-square + .checkbox-text a,
.radiobox-center .checkbox-square + .checkbox-text a {
  font-weight: 700;
  text-decoration: underline;
  color: #910a2d;
}
.checkbox-center .checkbox-square + .checkbox-text a:hover,
.radiobox-center .checkbox-square + .checkbox-text a:hover {
  text-decoration: none;
}
.checkbox-center .radiobox-circle,
.radiobox-center .radiobox-circle {
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #000000;
  border-radius: 99px;
  flex-shrink: 0;
}
.checkbox-center .radiobox-circle:after,
.radiobox-center .radiobox-circle:after {
  content: "";
  opacity: 0;
  transition: 0.3s;
  transform: scale(0.5);
  position: absolute;
  top: 4px;
  left: 4px;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: #000;
}
.checkbox-center .radiobox-circle + .radiobox-text,
.radiobox-center .radiobox-circle + .radiobox-text {
  font-weight: 400;
  font-size: 13px;
  line-height: 19px;
  color: #000;
  padding-left: 10px;
}
.checkbox-center .radiobox-circle + .radiobox-text a,
.radiobox-center .radiobox-circle + .radiobox-text a {
  font-weight: 700;
  text-decoration: underline;
  color: #910a2d;
}
.checkbox-center .radiobox-circle + .radiobox-text a:hover,
.radiobox-center .radiobox-circle + .radiobox-text a:hover {
  text-decoration: none;
}

.checkbox-switch [type=checkbox]:checked,
.checkbox-switch [type=checkbox]:not(:checked) {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}
.checkbox-switch.checkbox-switch-locked .checkbox-slider {
  background: #910A2D;
}
.checkbox-switch.checkbox-switch-locked .checkbox-slider .checkbox-slider-c {
  transform: translateX(45px);
}
.checkbox-switch.checkbox-switch-locked .checkbox-slider + .checkbox-text {
  color: #910A2D;
}
.checkbox-switch.checkbox-switch-locked label {
  cursor: auto;
}
.checkbox-switch [type=checkbox]:checked + label .checkbox-slider {
  background: #910A2D;
}
.checkbox-switch [type=checkbox]:checked + label .checkbox-slider .checkbox-slider-c {
  transform: translateX(45px);
}
.checkbox-switch [type=checkbox]:checked + label .checkbox-slider + .checkbox-text {
  color: #910A2D;
}
.checkbox-switch label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.checkbox-switch .checkbox-slider {
  position: relative;
  width: 85px;
  height: 40px;
  background: #E7E7E7;
  border-radius: 79px;
  flex-shrink: 0;
}
.checkbox-switch .checkbox-slider .checkbox-slider-c {
  opacity: 1;
  transition: 0.3s;
  position: absolute;
  top: 3px;
  left: 3px;
  width: 34px;
  height: 34px;
  border-radius: 79px;
  background: #F5F5F5;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  display: flex;
}
.checkbox-switch .checkbox-slider + .checkbox-text {
  font-weight: 400;
  font-size: 13px;
  line-height: 24px;
  text-transform: uppercase;
  color: #999999;
  padding-left: 20px;
}

.checkbox-link {
  margin-left: 11px;
}

.align-center {
  align-items: center;
}

.bg-F5F5F5 {
  background: #F5F5F5;
}

.c-999999 {
  color: #999999;
}

.c-910A2D {
  color: #910A2D;
}

.flex {
  display: flex;
}

.min-flex {
  display: flex;
}

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

.fcg {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.justify-center {
  justify-content: center;
}

.h-15 {
  height: 15px;
}

.h-18 {
  height: 18px;
}

.h-24 {
  height: 24px;
}

.h-30 {
  height: 30px;
}

.h-40 {
  height: 40px;
}

.min-h-90 {
  min-height: 90px;
}

.min-h-140 {
  min-height: 140px;
}

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

.ml-auto {
  margin-left: auto;
}

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

.mb-6 {
  margin-bottom: 6px;
}
.mb-6.h1 {
  margin-bottom: 6px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-13 {
  margin-bottom: 13px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-17 {
  margin-bottom: 17px;
}

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

.mb-19 {
  margin-bottom: 19px;
}

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

.mb-21 {
  margin-bottom: 21px;
}

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

.mb-23 {
  margin-bottom: 23px;
}

.mb-24 {
  margin-bottom: 23px;
}

.mb-25 {
  margin-bottom: 25px;
}

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

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

.mb-29 {
  margin-bottom: 29px;
}

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

.mb-33 {
  margin-bottom: 33px;
}

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

.mt-13 {
  margin-top: 13px;
}

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

.-mr-5 {
  margin-right: -5px;
}

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

.w-quarter {
  width: 25%;
}

.w-third {
  width: 33.3333%;
}

.w-half {
  width: 50%;
}

.w-full {
  width: 100%;
}

.w-14 {
  width: 14px;
}

.w-18 {
  width: 18px;
}

.w-20 {
  width: 20px;
}

.w-40 {
  width: 40px;
}

.w-60 {
  width: 60px;
}

.w-70 {
  width: 70px;
}

.w-80 {
  width: 80px;
}

.w-90 {
  width: 90px;
}

.w-100 {
  width: 100px;
}

.w-120 {
  width: 120px;
}

.w-140 {
  width: 140px;
}

.w-160 {
  width: 160px;
}

.w-174 {
  width: 174px;
}

.w-180 {
  width: 180px;
}

.w-200 {
  width: 200px;
}

.w-220 {
  width: 220px;
}

.w-230 {
  width: 230px;
}

.w-240 {
  width: 240px;
}

.w-260 {
  width: 260px;
}

.w-330 {
  width: 330px;
}

.w-360 {
  width: 360px;
}

.w-440 {
  width: 440px;
}

.w-550 {
  width: 550px;
}

.w-920 {
  width: 920px;
}

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

.max-w-420 {
  max-width: 420px;
}

.max-w-680 {
  max-width: 680px;
}

.max-w-750 {
  max-width: 750px;
}

.max-w-860 {
  max-width: 860px;
}

.max-w-920 {
  max-width: 920px;
}

.max-w-1170 {
  max-width: 1170px;
}

.max-w-1190 {
  max-width: 1190px;
}

.max-w-1270 {
  max-width: 1270px;
}

.max-w-1320 {
  max-width: 1320px;
}

html {
  font-family: "Mazda Type Cyrillic", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #000;
  background: #F5F5F5;
  min-width: 1440px;
}

#app {
  flex-direction: column;
  display: flex;
  min-height: 100vh;
}

.main__form {
  margin-top: auto;
  margin-bottom: auto;
  padding-top: 40px;
  padding-bottom: 40px;
}

.main-form__subject {
  font-size: 23px;
  line-height: 23px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.show-pass {
  background: url("/img/general/show-pass.svg") 50% 50%/cover no-repeat;
  width: 18px;
  height: 14px;
  cursor: pointer;
  border: 0;
  position: absolute;
  right: 10px;
  top: 13px;
}

.forgot-pass {
  margin-left: auto;
  color: #999999;
  text-transform: uppercase;
  font-size: 13px;
  display: inline-block;
  border-bottom: 2px solid #999999;
  padding-bottom: 8px;
  padding-top: 8px;
}

.page__inner {
  flex-grow: 1;
  flex-direction: column;
  display: flex;
  padding: 20px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.breadcrumbs__item {
  margin-right: 5px;
}
.breadcrumbs__item:last-child {
  margin-right: 0;
}

.breadcrumbs__name {
  font-weight: 400;
  line-height: 20px;
  color: #999999;
}

.search {
  position: relative;
}

.search__btn {
  width: 16px;
  height: 16px;
  padding: 0;
  background: none;
  position: absolute;
  right: 17px;
  top: 11px;
  z-index: 2;
}
.search__btn svg {
  width: 16px;
  height: 16px;
  fill: #999;
}

.status {
  height: 17px;
  line-height: 17px;
  font-size: 10px;
  background: #000;
  color: #fff;
  padding-left: 4px;
  padding-right: 4px;
  border-radius: 3px;
  display: inline-block;
  text-transform: uppercase;
}

.forgot-flex {
  display: flex;
}

.settings__value {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.settings__value.lh-40 {
  line-height: 40px;
}

.settings__value-small {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
}

.settings__value-vsmall {
  font-weight: 400;
  font-size: 13px;
  line-height: 24px;
}

/*hb*/
.hb-list__item {
  margin-bottom: 7px;
}

.hb-list__subject {
  font-weight: 700;
  font-size: 23px;
  line-height: 30px;
  margin-bottom: 23px;
  text-transform: uppercase;
}

.hb-list-sublevel {
  flex-wrap: wrap;
  display: flex;
  margin-left: -10px;
  margin-right: -10px;
}

.hb-list-sublevel__item {
  width: 220px;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 15px;
}

.hb-list-sublevel__image {
  width: 200px;
  height: 120px;
  background-color: #D5D5D5;
  margin-bottom: 5px;
}

.hb-list-sublevel__image-nobg {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.hb-list-sublevel__link {
  display: block;
}

.hb-list-sublevel__subject {
  font-weight: 400;
  line-height: 20px;
  color: #000;
}

/*collection*/
.collection {
  flex-wrap: wrap;
  display: flex;
}

.collection-cities .collection__item {
  width: 25%;
  display: flex;
}

.collection__item {
  width: 33.3333%;
  margin-bottom: 20px;
  padding-right: 40px;
}

.collection__name {
  font-size: 13px;
  line-height: 24px;
  text-transform: uppercase;
  margin-bottom: 13px;
}

.collection-list__item-wrap {
  margin-bottom: 10px;
  display: flex;
}

.collection-list__name {
  font-weight: 400;
  line-height: 20px;
  white-space: nowrap;
}

.collection-list__item {
  position: relative;
  padding: 10px 20px;
  background: #D9D9D9;
  border-radius: 150px;
}
.collection-list__item:hover {
  background: #910A2D;
}
.collection-list__item:hover .collection-list__name {
  color: #fff;
}
.collection-list__item:hover .collection-list__overlay {
  display: flex;
}

.collection-list__item-add {
  padding: 10px 13px;
}

.collection-list__item-add-min {
  padding: 5px 8px;
}

.collection-list__item-add,
.collection-list__item-add-min {
  position: relative;
  cursor: pointer;
  display: flex;
  background: #D9D9D9;
  border-radius: 150px;
}
.collection-list__item-add .collection-list__name,
.collection-list__item-add-min .collection-list__name {
  color: #fff;
  padding-left: 7px;
  padding-right: 10px;
  display: none;
}
.collection-list__item-add:hover,
.collection-list__item-add-min:hover {
  background: #910A2D;
}
.collection-list__item-add:hover .collection-list__name,
.collection-list__item-add-min:hover .collection-list__name {
  color: #fff;
  display: block;
}

.collection-list__btn {
  background: none;
  padding: 0;
  margin-right: 8px;
  flex-shrink: 0;
}
.collection-list__btn:last-child {
  margin-right: 0;
}

.collection-list__add {
  background: none;
  padding: 3px 0;
}

.collection-list__overlay {
  display: none;
  position: absolute;
  bottom: 0;
  right: 17px;
  padding-right: 8px;
  padding-left: 8px;
  top: 0;
  border-radius: 0 150px 150px 0;
  background: #910A2D;
  transform: translateX(100%);
  z-index: 2;
  min-width: 64px;
}

.show-more .collection-list__item-wrap {
  display: none;
}
.show-more .show-more-visible {
  display: none;
}
.show-more.active .show-more-notvisible {
  display: none;
}
.show-more.active .collection-list__item-wrap {
  display: flex;
}
.show-more.active .show-more-visible {
  display: inline-block;
}

.show-more-visible,
.show-more-notvisible {
  display: inline-block;
  font-size: 13px;
  line-height: 24px;
  color: #999999;
  text-transform: uppercase;
  cursor: pointer;
  border-bottom: 2px solid #999999;
  margin-bottom: 20px;
}
.show-more-visible:hover,
.show-more-notvisible:hover {
  color: #000;
  border-bottom: 2px solid #910A2D;
}

.show-more-notvisible {
  display: inline-block;
}

.modelsauto__image-nobg {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.modelsauto__image {
  position: relative;
  width: 310px;
  height: 140px;
  background-color: #D5D5D5;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.modelsauto__image img {
  max-height: 140px;
}
.modelsauto__image > label {
  flex-grow: 1;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  cursor: pointer;
}

.acc__gallery {
  width: 420px;
  flex-shrink: 0;
}

.acc-flex {
  display: flex;
}

.acc__info {
  padding-left: 21px;
  padding-right: 20px;
}

.page-flex {
  display: flex;
  flex-grow: 1;
  margin-bottom: 40px;
}

.page-flex__content {
  flex-grow: 1;
  flex-direction: column;
  display: flex;
}

.page-flex__sidebar {
  width: 180px;
  flex-shrink: 0;
}

.instructions__item {
  margin-bottom: 10px;
}
.instructions__item:hover .upload-images__remove {
  opacity: 1;
}
.instructions__item .upload-images__remove {
  position: relative;
  margin-left: 10px;
  background: none;
  width: 20px;
  height: 20px;
}
.instructions__item .upload-images__remove svg {
  fill: #910A2D;
}

.instructions__link {
  display: flex;
  align-items: center;
}
.instructions__link:hover .instructions__name {
  color: #910A2D;
}

.instructions__name {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-decoration: underline;
  color: #999999;
}

.instructions__name {
  padding-left: 6px;
}

.acc__update {
  font-weight: 400;
  font-size: 13px;
  line-height: 24px;
  text-transform: uppercase;
  color: #999999;
}

.acc__date {
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #999999;
  margin-bottom: 20px;
}

.acc__docs {
  font-size: 13px;
  line-height: 20px;
  text-transform: uppercase;
  color: #999999;
  margin-bottom: 10px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}

.tag-list__item-wrap {
  padding-left: 5px;
  padding-right: 5px;
  margin-bottom: 10px;
}

.tag-list__item {
  position: relative;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  background: #D9D9D9;
  border-radius: 150px;
  display: flex;
  align-items: center;
}
.tag-list__item:hover .tooltip-wrap {
  display: block;
}

.tag-list__name {
  font-weight: 400;
  line-height: 20px;
}

.tag-table {
  -moz-column-count: 2;
       column-count: 2;
}

.tag-list__alert {
  margin-left: 5px;
}

.tag-table__item {
  display: flex;
}

.tag-table__name {
  font-weight: 400;
  padding-right: 10px;
  line-height: 20px;
  padding-top: 5px;
}

.tooltip-wrap {
  display: none;
  position: absolute;
  z-index: 10;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 0);
  margin-top: -10px;
  padding-top: 20px;
}

.tooltip {
  background: #F5F5F5;
  border: 1px solid #D5D5D5;
  padding: 5px 10px 10px 10px;
}

.tooltip__tag-subject {
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 5px;
}

.vin-list__item {
  display: flex;
  align-items: center;
}

.vin-list__name {
  font-weight: 400;
  line-height: 20px;
}

.modal-gallery__close {
  padding: 5px;
  z-index: 2;
  position: absolute;
  right: 0;
  top: 0;
  background: none;
  cursor: pointer;
}

.gallery-download {
  position: absolute;
  right: 0;
  top: 28px;
  padding: 5px 3px;
}

.steps {
  width: 298px;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  display: flex;
  padding-top: 27px;
}

.steps__item.steps__item-active .steps__num {
  width: 70px;
  height: 70px;
  line-height: 68px;
  border-radius: 70px;
  background: #F5F5F5;
  border: 1px solid #D5D5D5;
  color: #999999;
}
.steps__item.steps__item-active .steps__text {
  color: #999999;
}

.steps__line {
  width: 1px;
  height: 40px;
  background: #D9D9D9;
  margin-top: 13px;
  margin-bottom: 10px;
}

.steps__num {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #E7E7E7;
  font-weight: 700;
  font-size: 23px;
  text-align: center;
  color: #D5D5D5;
  border-radius: 50px;
  margin: 0 auto 13px auto;
}

.steps__text {
  font-weight: 700;
  font-size: 13px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #D5D5D5;
}

.step-end__text {
  font-weight: 700;
  font-size: 13px;
  line-height: 24px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.step-end__correct {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 21px;
}

.upload__subject {
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 13px;
  text-transform: uppercase;
}

.upload-flex {
  display: flex;
}

.upload-flex-l {
  flex-shrink: 0;
  width: 310px;
}

.upload-flex-r {
  padding-left: 20px;
}

.upload__item {
  border-bottom: 1px solid #D5D5D5;
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.upload__item:last-child {
  border-bottom: 0;
}

.upload-drag {
  cursor: pointer;
  height: 170px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #E7E7E7;
  margin-bottom: 10px;
}

.upload-drag__text {
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}

.add-media__text {
  padding-left: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}

.upload-drag__icon {
  margin-bottom: 2px;
}

.upload-images {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.upload-images__wrap {
  width: 110px;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 15px;
}

.upload-images__item {
  overflow: hidden;
  position: relative;
}
.upload-images__item:hover .upload-images__name {
  color: #000;
}
.upload-images__item:hover .upload-images__remove {
  opacity: 1;
}

.upload-images__img {
  height: 60px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  margin-bottom: 5px;
  background: #fff;
}
.upload-images__img img {
  max-height: 60px;
}

.upload-images__name {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #999999;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.upload-images__remove {
  width: 30px;
  height: 30px;
  opacity: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  background: rgba(0, 0, 0, 0.75);
  position: absolute;
  right: 0;
  top: 0;
}

.add-media {
  height: 40px;
  background: #E7E7E7;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.upload__count {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #999999;
  margin-bottom: 25px;
}
.upload__count.upload__count_active {
  color: #000;
}

/*# sourceMappingURL=app.css.map*/