@charset "UTF-8";
/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  box-sizing: border-box;
}

.noUi-target {
  position: relative;
}

.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}

.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
}

/* Offset direction
 */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}

/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  top: -100%;
  width: 0;
}

.noUi-horizontal .noUi-origin {
  height: 0;
}

.noUi-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
}

.noUi-touch-area {
  height: 100%;
  width: 100%;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  transition: transform 0.3s;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 18px;
}

.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  right: -17px;
  top: -6px;
}

.noUi-vertical {
  width: 18px;
}

.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  bottom: -17px;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}

/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}

.noUi-connects {
  border-radius: 3px;
}

.noUi-connect {
  background: #3FB8AF;
}

/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}

.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}

.noUi-active {
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}

/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px;
}

.noUi-handle:after {
  left: 17px;
}

.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}

.noUi-vertical .noUi-handle:after {
  top: 17px;
}

/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #B8B8B8;
}

[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}

/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  box-sizing: border-box;
}

.noUi-pips {
  position: absolute;
  color: #999;
}

/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}

.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}

/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #CCC;
}

.noUi-marker-sub {
  background: #AAA;
}

.noUi-marker-large {
  background: #AAA;
}

/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}

.noUi-value-horizontal {
  transform: translate(-50%, 50%);
}

.noUi-rtl .noUi-value-horizontal {
  transform: translate(50%, 50%);
}

.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}

/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}

.noUi-value-vertical {
  transform: translate(0, -50%);
  padding-left: 25px;
}

.noUi-rtl .noUi-value-vertical {
  transform: translate(0, 50%);
}

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}

.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}

.noUi-horizontal .noUi-tooltip {
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}

.noUi-vertical .noUi-tooltip {
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}

.noUi-horizontal .noUi-origin > .noUi-tooltip {
  transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}

.noUi-vertical .noUi-origin > .noUi-tooltip {
  transform: translate(0, -18px);
  top: auto;
  right: 28px;
}

.stm12 {
  margin-top: 12px;
}

.stm16 {
  margin-top: 16px;
}

.stm {
  margin-top: 24px;
}

.p13-400 {
  font-weight: 400;
  font-size: 13px;
  color: #919399;
}

.p14-500 {
  font-weight: 400;
  font-size: 14px;
  color: #797A80;
}

.p13-600 {
  font-weight: 600;
  font-size: 13px;
  color: #919399;
}

.p14-600 {
  font-weight: 600;
  font-size: 14px;
  color: #919399;
}

.title18 {
  font-weight: 600;
  font-size: 18px;
  color: #19191A;
}

.flex-c-b {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.flex-co {
  display: flex;
  align-items: center;
}

.gap-16 {
  gap: 16px;
}

.stblock {
  background: #fff;
  border: 1px solid rgba(1, 24, 46, 0.12);
  border-radius: 4px;
}

.pad24 {
  padding: 24px;
}

@-webkit-keyframes dropHeader {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes dropHeader {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*! 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.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 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.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

@font-face {
  font-family: "Manrope-Bold";
  font-display: swap;
  font-style: normal;
  font-weight: 700;
  src: url("./../fonts/Manrope/Manrope-Bold.woff2") format("woff2"), url("./../fonts/Manrope/Manrope-Bold.woff") format("woff");
}
@font-face {
  font-family: "Manrope-ExtraBold";
  font-display: swap;
  font-style: normal;
  font-weight: 800;
  src: url("./../fonts/Manrope/Manrope-ExtraBold.woff2") format("woff2"), url("./../fonts/Manrope/Manrope-ExtraBold.woff") format("woff");
}
@font-face {
  font-family: "Manrope-ExtraLight";
  font-display: swap;
  font-style: normal;
  font-weight: 100;
  src: url("./../fonts/Manrope/Manrope-ExtraLight.woff2") format("woff2"), url("./../fonts/Manrope/Manrope-ExtraLight.woff") format("woff");
}
@font-face {
  font-family: "Manrope-Light";
  font-display: swap;
  font-style: normal;
  font-weight: 200;
  src: url("./../fonts/Manrope/Manrope-Light.woff2") format("woff2"), url("./../fonts/Manrope/Manrope-Light.woff") format("woff");
}
@font-face {
  font-family: "Manrope-Medium";
  font-display: swap;
  font-style: normal;
  font-weight: 500;
  src: url("./../fonts/Manrope/Manrope-Medium.woff2") format("woff2"), url("./../fonts/Manrope/Manrope-Medium.woff") format("woff");
}
@font-face {
  font-family: "Manrope-Regular";
  font-display: swap;
  font-style: normal;
  font-weight: 400;
  src: url("./../fonts/Manrope/Manrope-Regular.woff2") format("woff2"), url("./../fonts/Manrope/Manrope-Regular.woff") format("woff");
}
@font-face {
  font-family: "Manrope-Semibold";
  font-display: swap;
  font-style: normal;
  font-weight: 600;
  src: url("./../fonts/Manrope/Manrope-SemiBold.woff2") format("woff2"), url("./../fonts/Manrope/Manrope-SemiBold.woff") format("woff");
}
body {
  font-family: "Manrope-Regular", sans-serif;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  height: 100%;
  background-color: #fff;
  min-width: 1024px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

::-moz-placeholder {
  color: #c4c6cc;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #c4c6cc;
  opacity: 1;
}

::placeholder {
  color: #c4c6cc;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #c4c6cc;
}

::-ms-input-placeholder {
  color: #c4c6cc;
}

a {
  text-decoration: none;
}

input:focus,
textarea:focus {
  outline: none;
}

textarea {
  resize: vertical;
}

.wrapper {
  min-width: 1024px;
}

.just-validate-error-label {
  margin-top: 8px;
  font-family: "Manrope-Regular", sans-serif;
  font-size: 12px;
  line-height: 14px;
  color: #ed0a34;
}

.page {
  display: block;
  padding: 20px 0;
  font-size: 18px;
  color: #313133;
  font-family: "Manrope-SemiBold", sans-serif;
  transition: color 0.3s;
}
.page:hover {
  color: #0e86f4;
}

#loader {
  overflow: hidden;
}

#loader .dashboard__content > div {
  filter: blur(2px);
}

#loader .dashboard__content .loader {
  filter: none;
}

#loader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 9999;
}

#loader .loader .lds-dual-ring {
  position: absolute;
  top: 50vh;
  left: 0;
  right: 0;
  margin: auto;
  display: inline-block;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
}

#loader .loader .lds-dual-ring:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #000;
  border-color: #000 transparent #000 transparent;
  -webkit-animation: lds-dual-ring 1.2s linear infinite;
          animation: lds-dual-ring 1.2s linear infinite;
}

@-webkit-keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#loader .notify.active {
  display: none !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  border-radius: 3px;
  cursor: pointer;
  font-family: "Manrope-SemiBold", sans-serif;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  justify-content: center;
  border: none;
  padding: 17px 20px;
  min-width: 160px;
  transition: color 0.3s, background-color 0.3s;
}
.btn svg {
  margin-left: 8px;
}
.btn[disabled] {
  opacity: 0.2;
  cursor: not-allowed;
  pointer-events: none;
}
.btn--lightblue {
  background: rgba(14, 134, 244, 0.12);
  border-radius: 4px;
  font-weight: 600;
  color: #0E7DE2;
}
.btn--blue {
  background-color: #0e86f4;
  color: white;
}
.btn--blue:hover {
  background-color: #0b7ee8;
}
.btn--green {
  background-color: #1FB46C;
  color: white;
}
.btn--green:hover {
  background-color: #1da764;
}
.btn--lightblue {
  background-color: rgba(14, 134, 244, 0.12);
  color: #0E7DE2;
}
.btn--lightblue:hover {
  background-color: rgba(14, 134, 244, 0.36);
}
.btn--reverse {
  border: 1px solid #0E7DE2;
  color: #0E7DE2;
  background: transparent;
}
.btn--reverse:hover {
  border: 1px solid #86C3FB;
  color: #86C3FB;
}
.btn--white {
  background-color: #ffffff;
  color: #19191a;
  border: 1px solid rgba(1, 24, 46, 0.12);
  padding: 16px 20px;
}
.btn--white:hover {
  background-color: #f7f7f7;
}
.btn--whitewblue {
  background-color: #ffffff;
  color: #919399;
  border: 1px solid rgba(1, 24, 46, 0.12);
  padding: 16px 20px;
}
.btn--whitewblue:hover {
  border: 1px solid transparent;
  background: rgba(14, 134, 244, 0.12);
  color: #0E86F4;
}
.btn--warning {
  background-color: #ED0A34;
  color: white;
}
.btn--warning:hover {
  background-color: #de0931;
}
.btn--compact {
  padding: 12px 20px;
  min-width: 120px;
}
.btn--blue-text {
  color: #0e86f4;
}
.btn--medium {
  padding: 13px 20px;
}
.btn--big {
  padding: 13px 32px;
}
.btn--wide {
  padding: 13px 40px;
}
.btn--large {
  padding: 13px 48px;
}
.btn--wplus {
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn--wplus img {
  margin-left: 8px;
}
.btn--full {
  width: 100%;
}

.btn-cancel {
  margin-left: 5px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 17px 20px;
  transition: 0.3s;
  border-radius: 4px;
}
.btn-cancel:hover {
  background: rgba(25, 25, 26, 0.06);
}

.ph-item {
  position: relative;
  background-color: #fff;
  direction: ltr;
  overflow: hidden;
  padding: 0;
}

.ph-item:before {
  -webkit-animation: phAnimation 0.8s linear infinite;
  animation: phAnimation 0.8s linear infinite;
  background: linear-gradient(90deg, hsla(0deg, 0%, 100%, 0) 46%, hsla(0deg, 0%, 100%, 0.35) 50%, hsla(0deg, 0%, 100%, 0) 54%) 50% 50%;
  bottom: 0;
  content: " ";
  left: 50%;
  margin-left: -250%;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 500%;
  z-index: 1;
}

.ph-row {
  display: flex;
  flex-wrap: wrap;
}

.fd-column {
  flex-direction: column;
}

.ph-line {
  background-color: #ced4da;
  height: 15px;
}

.ph-line.title {
  height: 24px;
}

.ph-line + .ph-line {
  margin-top: 12px;
}

.ph-row .big, .ph-row.big .line {
  height: 30px;
}

.ph-row .empty {
  background-color: hsla(0deg, 0%, 100%, 0);
}

.ph-col {
  flex: 1 0 0;
}

.ph-col-auto {
  flex: 0 0 auto;
  width: auto;
}

.ph-col-2 {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.ph-col-4 {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.ph-col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.ph-col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.ph-col-8 {
  flex: 0 0 auto;
  width: 66.6666666667%;
}

.ph-col-10 {
  flex: 0 0 auto;
  width: 83.3333333333%;
}

.ph-col-12 {
  flex: 0 0 auto;
  width: 100%;
}

[class*=ph-col] {
  direction: ltr;
}

.ph-avatar {
  background-color: #ced4da;
  border-radius: 50%;
  min-width: 60px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.ph-avatar:before {
  content: " ";
  display: block;
  padding-top: 100%;
}

.ph-picture {
  background-color: #ced4da;
  height: 100%;
  width: 100%;
}

@-webkit-keyframes phAnimation {
  0% {
    transform: translate3d(-30%, 0, 0);
  }
  to {
    transform: translate3d(30%, 0, 0);
  }
}
@keyframes phAnimation {
  0% {
    transform: translate3d(-30%, 0, 0);
  }
  to {
    transform: translate3d(30%, 0, 0);
  }
}
.item__block.ph-item {
  padding: 0;
  margin-bottom: 0;
}

.item__block.ph-item .item__block__top {
  padding-top: 15px;
}

.item__block .ph-col-12 {
  padding: 0;
}

.item__block .ph-picture {
  min-height: 175px;
}

.item__block .ph-row div + div {
  margin-top: 12px;
}

.items__block-tile .ph-picture {
  width: 220px;
}

.item__block-popup.ph-item .item__block-popup__top {
  padding: 24px 24px 0;
}

.thumb__elem.ph-item .thumb__elem__top {
  padding: 16px 16px 0;
  height: 210px;
}

.thumb__elem .ph-picture {
  width: 100%;
  height: 100%;
}

.page-adaptive {
  min-width: 320px;
}
.page-adaptive .wrapper {
  min-width: 320px;
}
@media (max-width: 1040px) {
  .page-adaptive .main__content {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .page-adaptive .main__content {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .page-adaptive .main__content {
    padding: 20px 16px;
  }
}
@media (max-width: 575px) {
  .page-adaptive .main__content-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media (max-width: 575px) {
  .page-adaptive .main__content-title {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (max-width: 575px) {
  .page-adaptive .main__content-text {
    margin-bottom: 24px;
  }
}
@media (max-width: 575px) {
  .page-adaptive .main__content-alert {
    margin-bottom: 24px;
  }
}
@media (max-width: 575px) {
  .page-adaptive .main__content-bottom .forget {
    display: none;
  }
}
@media (max-width: 1040px) {
  .page-adaptive .main__preview {
    display: none;
  }
}
@media (max-width: 575px) {
  .page-adaptive .notification {
    padding: 12px 16px 12px 42px;
  }
}
.page-adaptive .notification:before {
  transform: none;
  top: 17px;
}

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

.main {
  min-height: 100vh;
  display: flex;
}
.main__content {
  width: 49.2%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 60px;
}
@media screen and (min-width: 1280px) {
  .main__content {
    padding: 60px 104px;
  }
}
.main__content-top {
  display: flex;
  align-items: center;
}
.main__content-form {
  margin: 60px 0 40px;
  margin-bottom: auto;
  padding-bottom: 40px;
}
@media screen and (min-height: 750px) {
  .main__content-form {
    margin: 140px 0 auto;
  }
}
.main__content-form--top {
  margin-top: 60px;
}
.main__content-title {
  font-family: "Manrope-SemiBold", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 46px;
  color: #19191a;
  margin-bottom: 16px;
}
.main__content-text {
  font-family: "Manrope-Regular", sans-serif;
  font-size: 15px;
  line-height: 22px;
  color: #606266;
  margin-bottom: 32px;
}
.main__content-link {
  color: #0e7de2;
  margin-left: 4px;
}
.main__content-link:hover {
  color: #198af1;
}
.main__content-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main__content-alert {
  margin-bottom: 32px;
}
.main__note {
  font-family: "Manrope-Medium", sans-serif;
  font-size: 12px;
  line-height: 17px;
  color: #919399;
}
.main__logo {
  width: 114px;
  margin-right: 32px;
}
.main__preview {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50.8%;
  background: #f3f4f6;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 640px;
}
.main__preview:before {
  content: "";
  position: absolute;
  left: 70px;
  top: 50%;
  transform: translateY(calc(-50% + 100px));
  width: 272px;
  height: 338px;
  background-position: center;
  background-image: url("./../img/main-dots-pattern.svg");
}
@media screen and (min-width: 1600px) {
  .main__preview:before {
    left: 130px;
  }
}
.main__preview:after {
  content: "";
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(calc(-50% - 37px));
  width: 272px;
  height: 239px;
  background-position: center;
  background-image: url("./../img/main-dots-small-pattern.svg");
}
@media screen and (min-width: 1600px) {
  .main__preview:after {
    right: 130px;
  }
}
.main__preview--custom:before {
  left: 40px;
  transform: translateY(calc(-50% + 157px));
}
@media screen and (min-width: 1600px) {
  .main__preview--custom:before {
    left: 80px;
  }
}
.main__preview--custom:after {
  right: 40px;
  transform: translateY(calc(-50% - 214px));
}
@media screen and (min-width: 1600px) {
  .main__preview--custom:after {
    right: 80px;
  }
}
.main__preview-text {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transform: translateY(-242px);
}
.main__preview-text-subtitle {
  font-family: "Manrope-SemiBold", sans-serif;
  font-size: 36px;
  line-height: 145%;
  text-align: center;
  color: #e7e9ee;
}
@media screen and (min-width: 1280px) {
  .main__preview-text-subtitle {
    font-size: 40px;
  }
}
.main__preview-text-title {
  font-family: "Manrope-SemiBold", sans-serif;
  font-size: 62px;
  line-height: 145%;
  text-align: center;
  color: #e0e1e6;
  transform: translateY(-10px);
  color: #e0e1e6;
}
@media screen and (min-width: 1280px) {
  .main__preview-text-title {
    font-size: 72px;
  }
}
.main__preview-pic {
  position: relative;
  z-index: 1;
  max-width: calc(100% - 90px);
  text-align: center;
  position: absolute;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}
.main__preview-pic--visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.main__preview-pic--hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateX(30px);
}
.main__preview-pic-img {
  display: block;
  margin: auto;
  position: relative;
  max-width: 100%;
  height: auto;
}
.main__preview.main__preview-slider {
  width: 36%;
}
.main__preview.main__preview-slider picture {
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
}
.main__preview.main__preview-slider picture .main__preview-pic-img {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.language-drop {
  position: relative;
}
.language-drop__main {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding-right: 13.5px;
}
.language-drop__main:after {
  content: "";
  position: absolute;
  right: 0;
  width: 7px;
  height: 4px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("./../img/lang-arr.svg");
}
.language-drop__title {
  font-family: "Manrope-Regular", sans-serif;
  font-size: 13px;
  line-height: 20px;
  color: #313133;
}
.language-drop__pic {
  width: 23px;
  margin-right: 8px;
  flex-shrink: 0;
}
.language-drop__list {
  display: none;
}

.main-form__line {
  position: relative;
  margin-bottom: 26px;
  padding-top: 22px;
}
.main-form__line:last-child {
  margin-bottom: 0;
}
.main-form__line:hover label {
  color: #19191a;
}
.main-form__line .forget {
  position: absolute;
  top: 0;
  right: 0;
  color: #0E7DE2;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
}
.main-form__line-checkbox {
  padding-top: 0;
}
.main-form__lable {
  display: block;
  font-family: "Manrope-Regular", sans-serif;
  font-size: 12px;
  line-height: 14px;
  color: #919399;
  transition: color 0.3s;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
}
.main-form__input {
  background: #ffffff;
  border: 1px solid rgba(1, 24, 46, 0.12);
  box-sizing: border-box;
  border-radius: 3px;
  font-family: "Manrope-Regular", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #19191a;
  padding: 9px 14px;
  width: 100%;
  transition: color 0.3s, border-color 0.3s;
}
.main-form__input[value=""] {
  border: 1px solid rgba(1, 24, 46, 0.12);
}
.main-form__input[value=""] + label {
  color: #919399;
}
.main-form__input:active, .main-form__input:focus, .main-form__input:hover, .main-form__input.just-validate-success-field, .main-form__input.is-valid {
  border: 1px solid rgba(1, 24, 46, 0.24);
}
.main-form__input:active + label, .main-form__input:focus + label, .main-form__input:hover + label, .main-form__input.just-validate-success-field + label, .main-form__input.is-valid + label {
  color: #19191a;
}
.main-form__input.is-invalid {
  border-color: #ed0a34 !important;
}
.main-form__btn {
  margin-top: 24px;
  display: flex;
  align-items: center;
}
.main-form__btn-item {
  margin-right: 12px;
}
.main-form__btn-item:last-child {
  margin-right: 0;
}

.checkbox {
  position: relative;
}
.checkbox__input {
  visibility: hidden;
  opacity: 0;
  position: absolute;
}
.checkbox__input:checked + .checkbox__label {
  color: #19191a;
}
.checkbox__input:checked + .checkbox__label:before {
  border: 1px solid rgba(1, 24, 46, 0.24);
}
.checkbox__input:checked + .checkbox__label:after {
  transform: translateY(-50%);
  opacity: 1;
}
.checkbox__input.is-invalid:not(:checked) + label:before {
  border-color: #ed0a34 !important;
}
.checkbox__label {
  position: relative;
  display: inline-block;
  font-family: "Manrope-Regular", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #919399;
  padding-left: 30px;
  cursor: pointer;
}
.checkbox__label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  border: 1px solid rgba(1, 24, 46, 0.12);
  border-radius: 3px;
  width: 18px;
  height: 18px;
}
.checkbox__label:after {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  width: 14px;
  height: 10px;
  background-size: cover;
  background-position: center;
  background-image: url("./../img/checkbox-mark.svg");
  transition: transform 0.2s, opacity 0.2s;
  transform: translateY(-100%);
  opacity: 0;
}
.checkbox__label:hover:before {
  border: 1px solid rgba(1, 24, 46, 0.24);
}
.checkbox__label-link {
  color: #0e7de2;
}
.checkbox__label-link:hover {
  color: #198af1;
}

.notification {
  position: relative;
  padding: 15px 20px 15px 39px;
  border-radius: 3px;
  font-family: "Manrope-Regular", sans-serif;
  font-size: 15px;
  line-height: 22px;
}
.notification:before {
  content: "";
  position: absolute;
  left: 17px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-position: center;
  background-repeat: no-repeat;
}
.notification--green {
  color: #29b851;
  background: #d4f8de;
  border: 1px solid #29b851;
}
.notification--green:before {
  background-image: url("./../img/notification-mark.svg");
}
.notification--red {
  color: #ed0a34;
  background: #feebef;
  border: 1px solid #ed0a34;
}
.notification--red:before {
  background-image: url("./../img/notification-cross.svg");
}

.alert {
  padding: 10px 16px 10px 12px;
  border-radius: 4px;
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.alert .text {
  margin-left: 10px;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #161616;
}
.alert ul {
  margin-left: 30px !important;
}
.alert--success {
  background: #DAFACF;
  border: 1px solid #1FB46C;
}
.alert--warning {
  background: #FAEECF;
  border: 1px solid #DBAF3E;
}
.alert--error {
  background: #FAEECF;
  border: 1px solid #DBAF3E;
}

.main-slider {
  position: relative;
  margin-top: 12px;
}
.main-slider__inner {
  position: relative;
  overflow: hidden;
}
.main-slider__item {
  opacity: 0;
  visibility: hidden;
}
.main-slider__item--visible {
  position: relative;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s, visibility 0.4s;
}
.main-slider__item--hidden {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.main-slider__title {
  font-family: "Manrope-SemiBold", sans-serif;
  margin-bottom: 20px;
  font-size: 34px;
  line-height: 38px;
  color: #19191a;
}
.main-slider__text {
  font-family: "Manrope-SemiBold", sans-serif;
  font-size: 20px;
  line-height: 28px;
  color: #19191a;
  margin-bottom: 32px;
  max-width: 420px;
}
.main-slider__radio {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 10px 0 30px;
}
.main-slider__radio__textarea {
  display: flex;
  flex-direction: column;
}
.main-slider__radio__textarea textarea {
  width: 360px;
  height: 0px;
  padding: 0px;
  margin-top: 0px;
  resize: none;
  border-width: 0px;
  border-color: #fff;
  overflow: hidden;
  transition: all 0.4s ease;
  font-size: 14px;
  letter-spacing: -0.2px;
  line-height: 1;
}
.main-slider__radio__textarea textarea ::-moz-placeholder {
  color: #000;
  opacity: 0;
}
.main-slider__radio__textarea textarea :-ms-input-placeholder {
  color: #000;
  opacity: 0;
}
.main-slider__radio__textarea textarea ::placeholder {
  color: #000;
  opacity: 0;
}
.main-slider__radio label {
  display: flex;
  gap: 10px;
  font-family: "Manrope-ExtraLight", sans-serif;
}
.main-slider__radio label input {
  height: 18px;
  width: 18px;
}
.main-slider__radio label input:checked + .main-slider__radio__textarea textarea {
  height: 55px;
  padding: 10px 6px;
  margin-top: 10px;
  border-width: 1px;
  border-color: #C7C7C7;
}
.main-slider__dots {
  margin-top: 60px;
  display: flex;
  align-items: center;
}
.main-slider__dots-item {
  position: relative;
  margin-right: 4px;
  width: 24px;
  height: 4px;
  transition: width 0.3s, background-color 0.3s;
  background: #e0e1e6;
  border-radius: 100px;
  cursor: pointer;
}
.main-slider__dots-item:after {
  content: "";
  position: absolute;
  left: -2px;
  top: -2px;
  right: -2px;
  bottom: -2px;
}
.main-slider__dots-item--active {
  background-color: #0e7de2;
}
.main-slider__dots-item[disabled] {
  pointer-events: none;
  opacity: 0.3;
}

.dashboard {
  position: relative;
}
.dashboard__nav {
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 11;
  transition: top 0.5s ease;
}
.dashboard__header {
  position: absolute;
  left: 232px;
  right: 0;
  top: 0;
  z-index: 10;
}
.dashboard__sidebar {
  position: absolute;
  z-index: 10;
  left: 0;
  top: 0;
  bottom: 0;
}
.dashboard__content {
  position: relative;
  top: 0px;
  margin-left: 232px;
  margin-top: 66px;
  padding: 32px 40px;
  background-color: #f3f4f6;
  min-height: calc(100vh - 66px);
  transition: top 0.5s ease;
}
.dashboard__title {
  font-family: "Manrope-Regular", sans-serif;
  font-size: 24px;
  line-height: 36px;
  color: #19191a;
  margin-bottom: 28px;
}

.d-header {
  background-color: #fff;
  border-bottom: 1px solid #e0e1e6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
}
.d-header__controls {
  display: flex;
  align-items: center;
}
.d-header__controls-item {
  margin-right: 33px;
}
.d-header__controls-item:last-child {
  margin-right: 0;
}
.d-header__alarm {
  cursor: pointer;
  position: relative;
  width: 20px;
  height: 20px;
  background-image: url("./../img/icon-bell.svg");
}

.d-sidebar {
  width: 232px;
  min-height: calc(100vh - 40px);
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-right: 1px solid #e0e1e6;
}
.d-sidebar__logo {
  position: relative;
  border-bottom: 1px solid #e0e1e6;
  height: 67px;
  display: flex;
  align-items: center;
  padding: 24px;
}
.d-sidebar__logo-link {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: none;
}
.d-sidebar__nav {
  padding: 20px 8px;
}
.d-sidebar__link {
  display: block;
  position: relative;
  border-radius: 4px;
  transition: background-color 0.3s;
  padding: 12px 20px 12px 40px;
  margin-bottom: 12px;
}
.d-sidebar__link:hover {
  background-color: #f6f7f8;
}
.d-sidebar__link:hover img {
  filter: brightness(0%);
}
.d-sidebar__link:hover div {
  color: #19191A;
}
.d-sidebar__link:last-child {
  margin-bottom: 0;
}
.d-sidebar__link:after {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  height: 32px;
  width: 2px;
  background: #0e86f4;
  border-radius: 100px;
  opacity: 0;
  transition: opacity 0.3s;
}
.d-sidebar__link--active, .d-sidebar__link--active:hover {
  background-color: #f3f4f6;
}
.d-sidebar__link--active:after, .d-sidebar__link--active:hover:after {
  opacity: 1;
}
.d-sidebar__link--active .d-sidebar__link-text, .d-sidebar__link--active:hover .d-sidebar__link-text {
  color: #0e86f4;
}
.d-sidebar__link--active .d-sidebar__link-img, .d-sidebar__link--active:hover .d-sidebar__link-img {
  opacity: 1;
  filter: grayscale(0);
}
.d-sidebar__link-text {
  display: inline-block;
  font-family: "Manrope-Medium", sans-serif;
  font-size: 16px;
  line-height: 16px;
  color: #aaadb3;
}
.d-sidebar__link-img {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 16px;
  filter: grayscale(1);
  opacity: 0.7;
  transition: filter 0.3s, opacity 0.3s;
}
.d-sidebar__link-badge {
  position: relative;
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  border-radius: 16px;
  background-color: rgb(31, 180, 108);
  margin: -10px 10px;
  padding: 5px 10px;
  top: -2px;
}
.d-sidebar__bottom {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 28px 24px;
}
.d-sidebar__bottom .btn {
  width: 100%;
  margin-bottom: 24px;
}
.d-sidebar__help {
  font-family: "Manrope-SemiBold", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #aaadb3;
}
.d-sidebar__version {
  font-family: "Manrope-Regular", sans-serif;
  font-size: 13px;
  line-height: 20px;
  text-align: right;
  color: #c4c6cc;
}

.user-drop {
  display: flex;
  position: relative;
  align-items: center;
}
.user-drop__pic {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 12px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Manrope-SemiBold", sans-serif;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #ffffff;
  width: 36px;
  height: 36px;
}
.user-drop__data {
  padding-right: 17px;
  position: relative;
}
.user-drop__data:after {
  content: "";
  position: absolute;
  right: 0;
  top: 9px;
  width: 9px;
  height: 5px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("./../img/user-drop-arr.svg");
}
.user-drop__name {
  font-family: "Manrope-Regular", sans-serif;
  font-size: 15px;
  line-height: 22px;
  color: #19191a;
}
.user-drop__descr {
  font-family: "Manrope-Regular", sans-serif;
  font-size: 13px;
  line-height: 20px;
  color: #606266;
}

.dr__el-btn {
  cursor: pointer;
}

.branding {
  margin-top: 32px;
}
.branding__btns {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 24px 0;
}
.branding__btns-item {
  margin-right: 20px;
}
.branding__btns-item:last-child {
  margin-right: 0;
}
.branding__cancel {
  font-family: "Manrope-SemiBold", sans-serif;
  font-size: 14px;
  line-height: 14px;
  text-align: right;
  color: #19191a;
}
.branding .branding-banner {
  border-radius: 4px;
  background: #DFEAF9;
  position: relative;
}
.branding .branding-banner:before, .branding .branding-banner:after {
  content: " ";
  position: absolute;
  top: 0;
  width: 300px;
  height: 100%;
  background-size: cover;
}
.branding .branding-banner:before {
  left: 0;
  background-image: url("./../img/branding/branding-banner-left.svg");
}
.branding .branding-banner:after {
  right: 0;
  background-image: url("./../img/branding/branding-banner-right.svg");
}
.branding .branding-banner__content {
  max-width: 388px;
  margin: auto;
  padding: 32px 0;
  text-align: center;
}
.branding .branding-banner__title {
  font-family: "Manrope-SemiBold", sans-serif;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 12px;
}
.branding .branding-banner__subtitle {
  font-family: "Manrope-Regular", sans-serif;
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 24px;
}

.branding-cards__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 24px;
       column-gap: 24px;
  margin-bottom: 24px;
}

.branding-card--pic:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 222px;
  height: 205px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("./../img/branding-card-pic.svg");
  pointer-events: none;
}
.branding-card__body {
  display: flex;
  padding: 20px;
  border-radius: 5px 5px 0 0;
  background-color: #fff;
}
.branding-card__footer {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  border-radius: 0 0 5px 5px;
  color: #919399;
  font-family: "Manrope-SemiBold", sans-serif;
  border-top: 1px solid rgba(1, 24, 46, 0.12);
  grid-row-start: 2;
  grid-row-end: 3;
  align-self: start;
  background-color: #fff;
}
.branding-card__footer .active-status {
  font-size: 14px;
  padding-left: 12px;
  padding-right: 12px;
  cursor: pointer;
}
.branding-card__footer small {
  margin-top: 10px;
  margin-bottom: 10px;
}
.branding-card__footer .branding-card__reff {
  margin-left: auto;
  color: #0E86F4;
  background-color: #D8F4FF;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 20px;
  border: 1px solid #D8F4FF;
  border-radius: 12px;
}
.branding-card__footer .branding-card__inner .dz__area-content {
  min-height: 200px;
  justify-content: center;
}
.branding-card__footer .branding-card__inner .dz__area-pic {
  max-height: 200px;
}
.branding-card__footer .branding-card__inner .dz__area-pic .dz__area-pic-img {
  max-width: inherit;
  max-height: inherit;
}
.branding-card__footer .toggler {
  margin: 0;
}
.branding-card__footer .toggler ~ .branding-card__inner {
  display: none;
}
.branding-card__footer .toggler:checked ~ .active-status {
  color: #19191A;
}
.branding-card__footer .toggler:checked ~ .branding-card__inner {
  display: block;
}
.branding-card__inner {
  flex: 0 0 100%;
  margin-top: 20px;
}
.branding-card__inner .dz__area-pic-img {
  max-width: 200px;
}
.branding-card__inner .dz__input--custom__canvas_wrapper {
  position: relative;
  margin: auto;
  width: 414px;
  height: 296px;
  display: none;
}
.branding-card__inner .dz__input--custom__canvas {
  background-image: linear-gradient(45deg, #ccc 25%, transparent 25%), linear-gradient(135deg, #ccc 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #ccc 75%), linear-gradient(135deg, transparent 75%, #ccc 75%);
  background-size: 25px 25px;
  background-position: 0 0, 12.5px 0, 12.5px -12.5px, 0px 12.5px;
  transform: scale(0.5);
  display: block;
  position: absolute;
  top: -100%;
  bottom: -100%;
  left: -100%;
  right: -100%;
  margin: auto;
}
.branding-card__inner .dz--filled .dz__input--custom__canvas_wrapper {
  display: block;
}
.branding-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.branding-card__num {
  font-family: "Manrope-SemiBold", sans-serif;
  font-size: 18px;
  line-height: 28px;
  text-align: right;
  color: #0e86f4;
  margin-bottom: 8px;
}
.branding-card__pic-img {
  max-width: 100%;
  height: auto;
  width: 100%;
}
.branding-card__content {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  width: 50%;
  padding: 0 10px;
  font-family: "Manrope-Regular", sans-serif;
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
}
.branding-card__content .top-label {
  position: absolute;
  top: -8px;
  right: 2px;
  padding: 4px 12px;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  background-color: #1FB46C;
  color: #fff;
  border-radius: 4px;
}
.branding-card__content .top-label.top-label--blue {
  background-color: rgb(14, 134, 244);
}
.branding-card__title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  color: #19191a;
  font-family: "Manrope-SemiBold", sans-serif;
  margin-bottom: 4px;
}
.branding-card__subtitle {
  margin-bottom: 8px;
  color: #19191a;
}
.branding-card__text {
  color: #606266;
  margin: 8px 0 16px;
}
.branding-card__link {
  margin-top: auto;
  color: #0e86f4;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}
.branding-card__link:hover {
  color: #3f9ef6;
}
.branding-card__link:hover path {
  fill: #3f9ef6;
}
.branding-card__btn {
  margin-top: 16px;
}
.branding-card__line {
  margin-bottom: 22px;
  position: relative;
  padding-top: 22px;
}
.branding-card__line:last-child {
  margin-bottom: 0;
}
.branding-card__label {
  font-family: "Manrope-Regular", sans-serif;
  font-size: 12px;
  line-height: 14px;
  color: #919399;
  margin-bottom: 8px;
  transition: color 0.3s;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
}
.branding-card__textarea {
  height: 158px;
  resize: none;
  display: block;
  width: 100%;
  border-radius: 3px;
  border: 1px solid rgba(1, 24, 46, 0.12);
  transition: color 0.3s, border-color 0.3s;
  font-family: "Manrope-Regular", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #19191a;
  padding: 9px 13px;
}
.branding-card__textarea:active, .branding-card__textarea:focus, .branding-card__textarea:hover {
  border: 1px solid rgba(1, 24, 46, 0.32);
}
.branding-card__textarea:active + .branding-card__label, .branding-card__textarea:focus + .branding-card__label, .branding-card__textarea:hover + .branding-card__label {
  color: #19191a;
}
.branding-card__textarea:not(:-moz-placeholder-shown) + .branding-card__label {
  color: #19191a;
}
.branding-card__textarea:not(:-ms-input-placeholder) + .branding-card__label {
  color: #19191a;
}
.branding-card__textarea:not(:placeholder-shown) + .branding-card__label {
  color: #19191a;
}
.branding-card__input {
  background: #ffffff;
  border: 1px solid rgba(1, 24, 46, 0.12);
  border-radius: 3px;
  padding: 9px 13px;
  display: block;
  width: 100%;
  transition: color 0.3s, border-color 0.3s;
  font-family: "Manrope-Regular", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #19191a;
}
.branding-card__input:active, .branding-card__input:focus, .branding-card__input:hover {
  border: 1px solid rgba(1, 24, 46, 0.32);
}
.branding-card__input:active + .branding-card__label, .branding-card__input:focus + .branding-card__label, .branding-card__input:hover + .branding-card__label {
  color: #19191a;
}
.branding-card__input:disabled {
  background-color: rgba(1, 24, 46, 0.12);
}
.branding-card__input:not(:-moz-placeholder-shown) + .branding-card__label {
  color: #19191a;
}
.branding-card__input:not(:-ms-input-placeholder) + .branding-card__label {
  color: #19191a;
}
.branding-card__input:not(:placeholder-shown) + .branding-card__label {
  color: #19191a;
}
.branding-card__input.is-invalid {
  border-color: #ed0a34;
}
.branding-card__count {
  font-family: "Manrope-Regular", sans-serif;
  font-size: 12px;
  line-height: 14px;
  color: #aaadb3;
  margin-top: 8px;
}

.package-insert .branding-card__pic {
  text-align: right;
}
.package-insert .branding-card__pic .branding-card__pic-img {
  max-width: 100%;
  height: auto;
  width: 500px;
}
.package-insert .main-form__input:disabled {
  background-color: rgba(1, 24, 46, 0.12);
}
.package-insert ol li {
  counter-increment: list;
  list-style-type: none;
  position: relative;
  padding-bottom: 8px;
}
.package-insert ol li:before {
  color: #ffffff;
  content: counter(list);
  margin-right: 10px;
  background-color: #0E86F4;
  padding: 2px 8px;
  border-radius: 20px;
}
.package-insert .list-title {
  margin-top: 20px;
}
.package-insert .list-title p {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: black;
  margin-bottom: 10px;
}
.package-insert .input-icon {
  position: relative;
}
.package-insert .input-icon input {
  padding-right: 40px;
}
.package-insert .input-icon i {
  position: absolute;
  display: block;
  right: 18px;
  top: 35px;
  font-style: normal;
}
.package-insert .labels {
  margin-top: 10px;
}
.package-insert .labels span {
  display: inline-block;
  background: rgb(243, 244, 246);
  padding: 9px;
  border-radius: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.dz {
  position: relative;
}
.dz .error {
  border: 1px dashed #ff8282;
}
.dz__errors {
  margin-top: 15px;
  display: inline-block;
  color: #ED0A34;
}
.dz--filled .dz__info {
  opacity: 1;
}
.dz--filled .dz__area-content {
  display: none;
}
.dz--filled .dz__area-pic {
  display: flex;
  flex-direction: column;
}
.dz__area {
  position: relative;
  border: 1px dashed rgba(1, 24, 46, 0.12);
  border-radius: 3px;
  min-height: 160px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.dz__area:hover {
  background-color: rgb(250, 250, 250);
}
.dz__area-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px;
}
.dz__area-pic {
  padding: 16px;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
}
.dz__area-pic-img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}
.dz__area-links {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.dz__area-links a {
  font-weight: 600;
  line-height: 14px;
  color: #0E7DE2;
  padding: 10px;
}
.dz__input {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: 2;
  cursor: pointer;
}
.dz__input.is-invalid ~ .dz__area {
  border-color: rgb(237, 10, 52);
}
.dz__icon {
  width: 36px;
  height: 36px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("./../img/cloud-upload.svg");
  margin-bottom: 16px;
}
.dz__icon--personal {
  background-image: url("./../img/upload-personal.svg");
}
.dz__btn {
  font-family: "Manrope-SemiBold", sans-serif;
  font-size: 14px;
  line-height: 14px;
  color: #aaadb3;
  border: 1px solid rgba(1, 24, 46, 0.12);
  border-radius: 3px;
  margin-bottom: 16px;
  padding: 10px 44px;
}
.dz__note {
  font-family: "Manrope-Medium", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
  color: #aaadb3;
}
.dz__info {
  position: relative;
  display: none;
  align-items: center;
  padding-left: 22px;
  margin-top: 8px;
  opacity: 0;
  z-index: 9999;
  pointer-events: all;
}
.dz__info:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("./../img/icon-file.svg");
}
.dz__info-name {
  font-family: "Manrope-Regular", sans-serif;
  font-size: 12px;
  line-height: 14px;
  color: #797a80;
  margin-right: 8px;
  max-width: 80%;
  overflow-wrap: break-word;
}
.dz__info-remove {
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 14px;
  color: #ED0A34;
  cursor: pointer;
}
.dz__info-remove svg {
  width: 10px;
  height: 10px;
  margin-right: 4px;
}
.dz__info-link {
  font-family: "Manrope-Medium", sans-serif;
  font-size: 12px;
  line-height: 14px;
  color: #0e86f4;
  cursor: pointer;
  margin-left: auto;
  padding: 0 15px;
}

body.place-order {
  min-width: 1375px;
}
body.place-order .notifications {
  position: fixed;
  z-index: 10;
  top: 80px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 8px;
}
body.place-order .notifications .notify {
  padding: 10px 16px 10px 12px;
  border-radius: 4px;
  align-items: center;
  display: none;
}
body.place-order .notifications .notify .text {
  margin-left: 10px;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #161616;
}
body.place-order .notifications .notify.notify {
  background: #FAEECF;
  border: 1px solid #DBAF3E;
}
body.place-order .notifications .notify.success {
  background: #DAFACF;
  border: 1px solid #1FB46C;
}
body.place-order .notifications .notify.error {
  background: #FDE9E9;
  border: 1px solid #ED0A34;
}
body.place-order .notifications .notify.active {
  display: flex;
}

.place-order-products {
  background-color: #fff;
  border: 1px solid rgba(1, 24, 46, 0.12);
  border-radius: 4px;
  width: 100%;
}
.place-order-products__footer {
  padding: 20px 20px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(1, 24, 46, 0.12);
}
.place-order-products table {
  width: 100%;
}
.place-order-products tr {
  display: flex;
  justify-content: end;
  padding: 22px 22px 23px;
}
.place-order-products tr + tr {
  border-top: 1px solid rgba(1, 24, 46, 0.12);
}
.place-order-products thead tr {
  border-bottom: 1px solid rgba(1, 24, 46, 0.12);
}
.place-order-products thead th {
  font-family: "Manrope-Semibold", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #19191A;
  text-align: left;
  width: 80px;
}
.place-order-products thead th:first-child {
  margin-right: auto;
}
.place-order-products thead th:nth-of-type(2) {
  width: 115px;
}
.place-order-products thead th:nth-of-type(3) {
  width: 100px;
}
.place-order-products tbody td {
  width: 80px;
}
.place-order-products tbody td .price {
  font-family: "Manrope-Medium", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  padding-top: 10px;
  display: inline-flex;
}
.place-order-products tbody td:first-child {
  width: auto;
  margin-right: auto;
}
.place-order-products tbody td:nth-of-type(2) {
  width: 115px;
}
.place-order-products tbody td:nth-of-type(3) {
  width: 100px;
}

.product-card {
  display: flex;
  gap: 16px;
}
.product-card h3 {
  font-family: "Manrope-Medium", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 4px;
  color: #19191A;
}
.product-card p {
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: #606266;
  margin-bottom: 12px;
}
.product-card .product-card-desc {
  display: flex;
  flex-direction: column;
  padding-top: 10px;
}
.product-card .product-card-desc .control {
  display: flex;
}
.product-card .product-card-desc .control a {
  padding-right: 10px;
}
.product-card .product-card-desc .product-card-desc-footer {
  margin-top: auto;
  margin-bottom: 16px;
}
.product-card .product-card-desc .product-card-desc-footer span {
  font-family: "Manrope-Medium", sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 20px;
  color: #19191A;
  margin-right: 12px;
}

.btn-edit {
  display: flex;
  align-items: center;
  font-family: "Manrope-SemiBold", sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 20px;
  color: #0E86F4;
  background: transparent;
  border: none;
  text-align: left;
}
.btn-edit svg {
  margin-right: 8px;
  width: 16px;
  height: 16px;
}

.sidebar-overlay {
  position: absolute;
  width: 100%;
  inset: 0;
  bottom: 0;
  top: 69px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 167px 84px 0;
}
.sidebar-overlay svg {
  margin-bottom: 24px;
}
.sidebar-overlay h3 {
  font-family: "Manrope-SemiBold", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 12px;
  color: #19191A;
}
.sidebar-overlay p {
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #606266;
  margin-bottom: 24px;
}
.sidebar-overlay span {
  font-family: "Manrope-Medium", sans-serif;
  font-weight: 500;
}

.show-modal ~ .dashboard__product__popup-content__review__sideblock .dashboard__product__popup-content__content,
.show-modal ~ .dashboard__product__popup-content__review__sideblock .dashboard__product__popup-content__save-btns {
  filter: blur(8px);
}

.sample-address .dashboard .dashboard__wrapper__sidebar {
  height: 85vh;
}

.sample-address .dashboard__product__popup-content__review__sideblock {
  height: 100%;
  overflow: hidden;
}

.sample-address .dashboard__product__popup-content__content {
  overflow-y: auto;
}

.sample-address .form-title {
  margin: 32px 0 20px;
  font-family: "Manrope-SemiBold", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #19191A;
}

.modal-open {
  overflow: hidden;
}

.overlays {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  overflow: auto;
  background: rgba(1, 24, 46, 0.6);
  display: none;
}

.modal-open .overlays {
  display: block;
}

.modal {
  align-items: center;
  min-height: 100%;
  display: none;
}
.modal .footnote {
  margin-top: 40px;
  font-size: 13px;
}
.modal .store-btn {
  border-radius: 10px;
  padding: 15px;
  cursor: pointer;
  margin: 10px;
  background-color: #F5F5F6;
  border: 1px solid #F5F5F6;
  display: block;
  color: #606266;
}
.modal .store-btn:hover {
  background-color: #EDFBFF;
  border: 1px solid #b0d1ee;
}
.modal.active {
  display: flex;
}
.modal .modal-dialog {
  position: relative;
  background: #fff;
  border: 1px solid rgba(1, 24, 46, 0.12);
  border-radius: 4px;
  padding: 18px 24px 24px 24px;
  margin: 25px auto;
  max-width: 80%;
}
.modal .modal-dialog .head--border-bottom {
  border-bottom: 1px solid rgba(1, 24, 46, 0.12);
  padding-bottom: 18px;
  margin-bottom: 24px;
}
.modal .modal-dialog .head .title {
  font-weight: 600;
  font-size: 18px;
  color: #19191A;
}
.modal .modal-dialog .head .crs {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  transition: 0.3s;
  border: none;
  padding: 8px;
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
}
.modal .modal-dialog .head .crs:hover {
  background: #EEEFF4;
}
.modal .modal-dialog .warning__noty {
  background: #FDE9E9;
  border: 1px solid #ED0A34;
  border-radius: 4px;
  padding: 20px 100px;
}
.modal .modal-dialog .warning__noty .title {
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #161616;
}
.modal .modal-dialog .warning__noty .btns .btn-cancel {
  margin-left: 8px;
  color: #19191A;
  padding: 12px 13px;
}
.modal .popup-modal-dialog {
  text-align: center;
  padding: 48px;
  max-width: 425px;
}
.modal .popup-modal-dialog .icon {
  padding: 26px;
  border-radius: 50%;
  border: 1px solid #ded0d3;
}
.modal .popup-modal-dialog .title {
  font-size: 18px;
  line-height: 28px;
  font-family: "Manrope-Medium", sans-serif;
}
.modal .popup-modal-dialog .desc {
  font-size: 15px;
  line-height: 22px;
  color: #606266;
}
.modal .modal-table {
  margin-top: 12px;
}
.modal .modal-table table {
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 30px;
  font-size: 14px;
}
.modal .modal-table table td {
  padding: 4px 12px;
}
.modal .modal-table table thead tr {
  font-weight: 500;
  font-size: 13px;
  color: #919399;
  white-space: nowrap;
}
.modal .modal-table table tbody tr {
  font-size: 13px;
  color: #19191A;
  white-space: nowrap;
}
.modal .modal-table table.table-striping tr:nth-child(even) {
  background-color: #F3F4F6;
}
.modal .modal-table .variant-color {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #e0e3e6;
  margin-right: 8px;
  vertical-align: middle;
}
.modal .modal-table button.btn-copy-sku {
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  vertical-align: middle;
}
.modal .modal-table button.btn-copy-sku:hover img {
  opacity: 1;
}
.modal .modal-table button.btn-copy-sku::before {
  content: attr(data-notify);
  display: block;
  position: absolute;
  right: -200%;
  left: -200%;
  bottom: 125%;
  margin: auto;
  padding: 5px;
  border-radius: 4px;
  color: #606266;
  background-color: white;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(1, 24, 46, 0.12);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s linear;
}
.modal .modal-table button.btn-copy-sku img {
  opacity: 0.6;
  pointer-events: none;
}
.modal .modal-table button.btn-copy-sku.copy-notify::before {
  opacity: 1;
  visibility: visible;
}

.coaching .modal-dialog {
  max-width: 30%;
}
.coaching .modal-dialog .flex-c-b {
  justify-content: center;
}
.coaching .modal-dialog .stm {
  margin-top: 40px;
}
.coaching .modal-dialog .stm .title {
  text-align: center;
}
.coaching .modal-dialog .stm .btns {
  margin-top: 30px;
}

.dashboard-title {
  margin-bottom: 12px;
}
.dashboard .dashboard__wrapper {
  display: flex;
  flex-wrap: wrap;
}
.dashboard .dashboard__wrapper__content {
  flex: 1 0 0%;
}
.dashboard .dashboard__wrapper__content.center {
  text-align: center;
  justify-content: center;
}
.dashboard .dashboard__wrapper__sidebar {
  flex: 0 0 auto;
  width: 480px;
  min-width: 420px;
}
.dashboard .dashboard__wrapper__sidebar .dashboard__product__popup-content__review__sideblock {
  position: relative;
  width: auto;
  margin-top: 0;
  margin-left: 24px;
  margin-bottom: 24px;
}
.dashboard .dashboard__wrapper__sidebar .dashboard__product__popup-content__review__sideblock .tabs {
  justify-content: start;
  gap: 24px;
}
.dashboard .dashboard__wrapper__sidebar .dashboard__product__popup-content__review__sideblock h3.title {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: #19191A;
  margin-bottom: 8px;
}
.dashboard .dashboard__wrapper__sidebar .dashboard__product__popup-content__review__sideblock .price {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #313133;
}
.dashboard .dashboard__wrapper__sidebar .dashboard__product__popup-content__save-btns {
  padding: 20px 24px;
  gap: 12px;
}
.dashboard .dashboard__wrapper__sidebar .dashboard__product__popup-content__save-btns .btn {
  width: auto;
}
.dashboard .dashboard__wrapper__sidebar .dashboard__product__popup-content__save-btns .btn--full {
  flex: 1 0 auto;
}

.main-form__quantity {
  background: #ffffff;
  border: 1px solid rgba(1, 24, 46, 0.12);
  box-sizing: border-box;
  border-radius: 3px;
  font-family: "Manrope-Regular", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #19191a;
  padding: 9px 14px;
  width: 80%;
  transition: color 0.3s, border-color 0.3s;
}

.main-form__input-number {
  width: 80px;
}

.direct-orders-edit-address {
  margin-bottom: 10px;
}

.sidebar-product-block {
  margin-bottom: 14px;
}
.sidebar-product-block.d-flex {
  display: flex;
  width: 100%;
  gap: 16px 26px;
}
.sidebar-product-block.d-flex div {
  display: inline-block;
}
.sidebar-product-block h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #19191A;
  margin-bottom: 16px;
}
.sidebar-product-block p {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #797A80;
}
.sidebar-product-block .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.sidebar-product-block .item .item-title {
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #797A80;
}
.sidebar-product-block .item .item-price {
  font-weight: 600;
  font-size: 15px;
  line-height: 22px;
  color: #19191A;
}
.sidebar-product-block .footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 20px;
}
.sidebar-product-block .footer .item-title {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #797A80;
}
.sidebar-product-block .footer .item-title svg {
  margin-right: 8px;
}
.sidebar-product-block .footer .item-price {
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #606266;
  text-align: right;
}
.sidebar-product-block .footer .item-price strong {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #19191A;
}

.dashboard__products-head {
  display: flex;
  align-items: center;
}
.dashboard__products-head .dashboard__title {
  margin-bottom: 0;
}
.dashboard__products-head .dashboard__title + .dashboard__title {
  margin-left: 20px;
}
.dashboard__products-head .dashboard__title.dashboard__title--subtitle a {
  color: #919399;
}
.dashboard__products-head .dashboard__title.dashboard__title--subtitle a:hover {
  color: #19191a;
}
.dashboard__products-head .btn {
  margin-left: 20px;
}
.dashboard__products-subhead {
  margin-top: 16px;
}
.dashboard__products-subhead .dashboard__desc {
  color: #606266;
}

.dashboard__productsblock-wrapper {
  display: flex;
  align-items: start;
}

.dashboard__productsblock {
  width: 79%;
}

.dashboard__products__categoriesblock {
  margin-top: 30px;
  margin-left: 25px;
  width: 23%;
  position: -webkit-sticky;
  position: sticky;
  top: 132px;
  background-color: #f3f4f6;
}

.dashboard__products__sidebar {
  margin-left: 25px;
  width: 23%;
}

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

.dashboard__products__categories {
  margin-top: 20px;
  background: #fff;
  border: 1px solid rgba(1, 24, 46, 0.12);
  border-radius: 4px;
}
.dashboard__products__categories .dashboard__products__category {
  padding: 16px;
}
.dashboard__products__categories .dashboard__products__category:not(:first-child) {
  border-top: 1px solid rgba(1, 24, 46, 0.12);
}
.dashboard__products__categories .dashboard__products__category .dashboard__products__category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dashboard__products__categories .dashboard__products__category .dashboard__products__category-head .title {
  font-size: 14px;
  font-weight: 600;
  color: #919399;
}
.dashboard__products__categories .dashboard__products__category .dashboard__products__category-content .category__list {
  margin-top: 16px;
  margin-bottom: 5px;
}
.dashboard__products__categories .dashboard__products__category .dashboard__products__category-content .category__list .category__list-item {
  list-style-type: none;
}
.dashboard__products__categories .dashboard__products__category .dashboard__products__category-content .category__list .category__list-item:not(:first-child) {
  margin-top: 12px;
}
.dashboard__products__categories .dashboard__products__category .dashboard__products__category-content .category__list .category__list-item a {
  font-weight: 600;
  font-size: 14px;
  color: #919399;
}
.dashboard__products__categories .dashboard__products__category .dashboard__products__category-content .category__list .category__list-item .count {
  margin-left: 4px;
  font-weight: inherit;
  font-size: inherit;
  color: #919399;
}
.dashboard__products__categories .dashboard__products__category .dashboard__products__category-content .category__list .category__list-item.active a {
  color: #0E86F4;
}
.dashboard__products__categories .dashboard__products__category.active .dashboard__products__category-head .title {
  color: #19191A;
}

.dashboard__filters__block {
  padding: 30px 0 20px;
  position: -webkit-sticky;
  position: sticky;
  top: 105px;
  background-color: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}
.dashboard__filters__block .sort__btns {
  display: flex;
  align-items: center;
}
.dashboard__filters__block .sort__btns .smallbtn {
  margin-left: 12px;
}
.dashboard__filters__block .inputwpic {
  width: 39%;
}

.items__block-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.items__block-grid .item__block__desc__title {
  display: none;
}

.items__block-tile {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}
.items__block-tile .item__block {
  display: flex;
  align-items: center;
}
.items__block-tile .item__block .item__block__top {
  cursor: pointer;
  border-right: 1px solid rgba(1, 24, 46, 0.12);
}
.items__block-tile .item__block .item__block__charsblock {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  grid-auto-flow: column;
  gap: 12px 75px;
}
.items__block-tile .item__block .item__block__charsblock .item__block__charsblock-char:not(:first-child) {
  margin-top: 0;
}

.item__block {
  background: #fff;
  border: 1px solid rgba(1, 24, 46, 0.12);
  border-radius: 4px;
}
.item__block:hover {
  border: 1px solid rgba(1, 24, 46, 0.24);
}
.item__block .is-ready-publish {
  width: 25px;
  height: 25px;
  z-index: 1;
  cursor: pointer;
  position: absolute;
  left: 15px;
  top: 15px;
}
.item__block .item__block__top {
  cursor: pointer;
  padding: 0 20px;
  position: relative;
  border-bottom: 1px solid rgba(1, 24, 46, 0.12);
}
.item__block .item__block__top-sidebtns {
  position: absolute;
  top: 12px;
  right: 12px;
}
.item__block .item__block__top-actionbtns {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-bottom: 25px;
  display: grid;
  align-items: center;
  justify-content: center;
  grid-auto-flow: column;
  gap: 4px;
}
.item__block .item__block__top-actionbtns .action-btn {
  display: flex;
  align-items: center;
  white-space: nowrap;
  background-color: #fff;
  color: #19191A;
  border-radius: 4px;
}
.item__block .item__block__top-actionbtns .action-btn--icon {
  width: 32px;
  height: 32px;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(1, 24, 46, 0.1215686275);
  transition: border-color 0.3s ease;
}
.item__block .item__block__top-actionbtns .action-btn--icon img {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.item__block .item__block__top-actionbtns .action-btn--icon:hover {
  border: 1px solid rgba(1, 24, 46, 0.32);
}
.item__block .item__block__top-actionbtns .action-btn--icon:hover img {
  opacity: 1;
}
.item__block .item__block__top-actionbtns .dr__el-block {
  display: none;
  flex-direction: column;
  position: absolute;
  border: 1px solid rgba(1, 24, 46, 0.12);
  background: #fff;
  padding: 5px;
  margin: 4px 0;
  border-radius: 8px;
  font-size: 12px;
}
.item__block .item__block__top-actionbtns .dr__el-block.show {
  display: flex;
}
.item__block .item__block__top-actionbtns .dr__el-block .item {
  padding: 3px 5px;
  margin: 1px 0px;
}
.item__block .item__block__top-actionbtns .dr__el-block .item:hover {
  background-color: #0E86F4;
  color: #fff;
}
.item__block .item__block__top-actionbtns .dr__el-block .item:hover img {
  filter: brightness(0) invert(1);
}
.item__block .item__block__top-actionbtns .dr__el-block .item.action-btn--delete {
  color: #ED0A34;
}
.item__block .item__block__top-actionbtns .dr__el-block .item.action-btn--delete:hover {
  background-color: #ED0A34;
  color: #fff;
}
.item__block .item__block__top-actionbtns .dr__el-block .item span {
  margin-left: 8px;
}
.item__block .item__block__desc {
  padding: 16px 20px 20px 24px;
}
.item__block .item__block__desc__title {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #19191A;
}
.item__block .item__block__charsblock .item__block__charsblock-char {
  display: grid;
  grid-auto-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
}
.item__block .item__block__charsblock .item__block__charsblock-char:not(:first-child) {
  margin-top: 12px;
}
.item__block .item__block__charsblock .item__block__charsblock-char .name {
  font-weight: 400;
  font-size: 13px;
  color: #919399;
}
.item__block .item__block__charsblock .item__block__charsblock-char .value {
  font-weight: 500;
  font-size: 13px;
  color: #19191A;
}
.item__block .item__block__charsblock .item__block__charsblock-char.chartoggler {
  align-items: center;
}

.inputwpic {
  position: relative;
}
.inputwpic .branding-card__input {
  padding: 9px 30px 9px 13px;
}
.inputwpic svg {
  position: absolute;
  top: 14px;
  right: 14px;
}

hr {
  height: 1px;
  border: none;
  border-top: 1px solid rgba(1, 24, 46, 0.12);
  margin: 18px auto 24px;
}

.datepicker {
  cursor: pointer;
}

.qs-datepicker-container {
  font-family: Manrope-Regular, sans-serif;
  border: none;
  width: 274px;
  transform: translateY(4px);
  padding-bottom: 12px;
}
.qs-datepicker-container .qs-controls {
  background: #F2F3F7;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: #19191A;
  padding: 4.5px 6px;
}
.qs-datepicker-container .qs-squares {
  background: #fff;
  padding-bottom: 0;
  border-radius: 4px;
  gap: 4px 8px;
}
.qs-datepicker-container .qs-squares .qs-square {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #606266;
  border-radius: 2px;
  margin-bottom: 0;
  width: 30px;
  text-decoration: none;
}
.qs-datepicker-container .qs-squares .qs-day {
  line-height: 150%;
  color: #AAADB3;
}
.qs-datepicker-container .qs-squares .qs-square:not(.qs-empty):not(.qs-disabled):not(.qs-day):not(.qs-active):hover {
  background: #0E7DE2;
  color: #fff;
}
.qs-datepicker-container .qs-squares .qs-current {
  font-weight: 600;
  color: #19191A;
}
.qs-datepicker-container .qs-squares .qs-active {
  background: #E0E1E6;
  color: #19191A;
}
.qs-datepicker-container .qs-arrow {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  background: transparent;
  border-radius: 4px;
}
.qs-datepicker-container .qs-arrow:hover {
  background: #E0E1E6;
}
.qs-datepicker-container .qs-arrow:hover:after {
  background-image: url("./../img/icon-arrow-small-black.svg");
}
.qs-datepicker-container .qs-arrow:after {
  display: inline-block;
  position: absolute;
  inset: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  background: url("./../img/icon-arrow-small.svg") no-repeat center/cover;
  border-radius: 0;
  transform: none;
  border: none;
}
.qs-datepicker-container .qs-arrow.qs-left:after {
  transform: rotate(180deg);
}

.cselect {
  position: relative;
  width: 24%;
  margin-left: 12px;
  font-size: 14px;
  font-weight: normal;
  outline: none;
  background: #ffffff;
  border: 1px solid rgba(1, 24, 46, 0.12);
  border-radius: 3px;
  padding: 9px 13px;
  display: block;
  transition: color 0.3s, border-color 0.3s;
  font-family: "Manrope-Regular", sans-serif;
  line-height: 20px;
  color: #19191a;
}
.cselect.full {
  width: 100%;
  margin: 0;
}
.cselect .cselect__content {
  display: none;
}
.cselect .cselect__content.show {
  display: block;
  opacity: 1;
  z-index: 8;
}
.cselect.active .cselect__title::before {
  transform: translate(-3px, -50%) rotate(-45deg);
}
.cselect.active .cselect__title::after {
  transform: translate(3px, -50%) rotate(45deg);
}
.cselect[data-state=active] .cselect__title::before {
  transform: translate(-3px, -50%) rotate(-45deg);
}
.cselect[data-state=active] .cselect__title::after {
  transform: translate(3px, -50%) rotate(45deg);
}
.cselect[data-state=active] .cselect__content {
  opacity: 1;
  z-index: 8;
}
.cselect[data-state=active] .cselect__label + .cselect__input + .cselect__label {
  max-height: unset;
  padding-left: 0;
  padding-right: 0;
}

.cselect__title {
  border: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
  color: #8F9297;
  padding-right: 15px;
}
.cselect__title::before, .cselect__title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  display: block;
  width: 8px;
  height: 1px;
  transition: all 0.3s ease-out;
  background-color: #8F9297;
  transform: translate(-3px, -50%) rotate(45deg);
}
.cselect__title::after {
  transform: translate(3px, -50%) rotate(-45deg);
}
.cselect__title span {
  margin: 0 3px;
  color: #19191A;
  font-weight: 500;
}

.cselect__content {
  position: absolute;
  top: calc(100% + 4px);
  left: 0px;
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #fff;
  transition: all 0.3s ease-out;
  opacity: 0;
  z-index: 1;
  border: 0;
  padding: 8px;
  box-shadow: 0px 6px 8px rgba(35, 37, 40, 0.08);
  border-radius: 4px;
  border: 1px solid rgba(1, 24, 46, 0.12);
}

.cselect__input {
  display: none;
}
.cselect__input:disabled + label {
  opacity: 0.6;
  pointer-events: none;
}
.cselect__input:checked + label {
  color: #000;
}
.cselect__input:checked + label::before {
  display: none;
}
.cselect__input:checked + label::after {
  display: none;
}

.cselect__label {
  width: 100%;
  cursor: pointer;
  overflow: hidden;
  margin-bottom: 4px;
  padding: 6px;
  color: #313133;
  border-radius: 4px;
}
.cselect__label:hover {
  color: #fff;
  background: #0E86F4;
}
.cselect__label:hover span {
  color: #fff;
}
.cselect__label:last-child {
  margin-bottom: 0;
}
.cselect__label span {
  color: #19191A;
  margin-left: 3px;
  font-weight: 500;
}

.toggle__elem .toggle__elem__btn {
  cursor: pointer;
}
.toggle__elem .toggle__elem__content {
  max-height: 0;
  overflow: hidden;
}
.toggle__elem .toggle__elem--active {
  max-height: 100%;
}

.toggle__arrow .icon.active {
  transform: rotate(180deg);
}

.toggler-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.toggler-wrapper span {
  font-family: "Manrope-SemiBold", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #19191A;
}
.toggler-wrapper.font-regular span {
  font-family: "Manrope-Regular", sans-serif;
  font-weight: 400;
}
.toggler-wrapper .toggler {
  margin-left: 0;
}

.toggler {
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 40px;
  height: 20px;
  margin: auto;
  border: none;
  border-radius: 45px;
  background: #C4C6CC;
  cursor: pointer;
  outline: none;
  transition: background 0.2s ease-in-out;
  -webkit-transition: background 0.2s ease-in-out;
  -webkit-appearance: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.toggler:hover {
  background: #AAADB3;
}
.toggler:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 2px;
  width: 16px;
  height: 16px;
  margin: auto;
  border-radius: 50%;
  background: #fff;
  transition: left 0.2s ease-in-out;
  -webkit-transition: left 0.2s ease-in-out;
  pointer-events: none;
}
.toggler:checked {
  background: #0E86F4;
}
.toggler:checked:hover {
  background: #1A7EDB;
}
.toggler:checked:after {
  left: 22px;
}
.toggler:disabled {
  opacity: 0.5;
}

.salebtn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(1, 24, 46, 0.12);
  border-radius: 3px;
  background: #F3F4F6;
  transition: 0.2s;
}

.no__product {
  position: relative;
  z-index: 5;
  margin-top: 22px;
  width: 100%;
  padding: 60px;
  min-height: 200px;
  border: 1px solid rgba(1, 24, 46, 0.12);
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.no__product .no__product__info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.no__product .no__product__info .info__text {
  margin-top: 15px;
  font-weight: 600;
  font-size: 16px;
  color: #AAADB3;
}
.no__product .no__product__info .info__content {
  margin-top: 8px;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #AAADB3;
  max-width: 280px;
  text-align: center;
}
.no__product .no__product__info .info__content_full {
  margin-top: 8px;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #AAADB3;
  text-align: center;
}
.no__product .btn {
  margin-top: 24px;
}

.dashboardproduct__status__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: calc(100vh - 146px);
}

.dashboardproduct__status {
  text-align: center;
}
.dashboardproduct__status.progress {
  width: 455px;
}
.dashboardproduct__status.published {
  width: 331px;
}
.dashboardproduct__status.published .btn {
  margin-top: 25px;
}

.progress__bar {
  position: relative;
  margin-top: 40px;
  width: 100%;
  height: 6px;
  background: #E0E1E6;
  border-radius: 100px;
  overflow: hidden;
}
.progress__bar .progress__bar__line {
  position: absolute;
  top: 0;
  left: 0;
  width: 105px;
  height: 6px;
  background: #0E86F4;
  border-radius: 100px;
}

.dashboardproduct__status__title {
  margin-top: 32px;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: #19191A;
}

.dashboardproduct__status__desc {
  margin-top: 12px;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #606266;
}

.slide-right {
  -webkit-animation: slide-right 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite both;
  animation: slide-right 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite both;
}

@-webkit-keyframes slide-right {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(500%);
  }
}
@keyframes slide-right {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(500%);
  }
}
.orderspage__headblock {
  margin-top: 26px;
}
.orderspage__headblock .title {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
}
.orderspage__headblock .cselect {
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.orderspage__headblock .btn {
  margin-left: 12px;
  min-width: 180px;
}
.orderspage__headblock .btn .icon {
  margin-left: 8px;
}

.orderspage__headblock__filtersblock .cselect {
  width: 200px;
}

.orderspage__table {
  margin-top: 14px;
  background: #fff;
  display: block;
  padding: 0 24px 32px;
}
.orderspage__table hr {
  border-top: 1px solid rgba(1, 24, 46, 0.12);
  border-collapse: collapse;
}
.orderspage__table table {
  width: 100%;
  border-collapse: collapse;
}
.orderspage__table tr + tr {
  border-top: 1px solid rgba(1, 24, 46, 0.12);
  border-collapse: collapse;
}
.orderspage__table thead tr {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(1, 24, 46, 0.12);
  border-collapse: collapse;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 64px;
}
.orderspage__table thead tr * {
  font-style: normal;
  font-weight: 400;
  text-align: left;
  color: #919399;
  font-size: 12px;
  line-height: 145%;
}
.orderspage__table .orderspage__table__order {
  padding: 20px 24px;
  display: grid;
  gap: 64px;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
}
.orderspage__table .orderspage__table__order td {
  color: #19191A;
  font-weight: 500;
  font-size: 14px;
  line-height: 145%;
}
.orderspage__table .orderspage__table__order .order__details a {
  color: #0e86f4;
}

.label-default {
  color: #344258;
}
.label-primary {
  color: #0E86F4;
}
.label-info {
  color: #4c89c1;
}
.label-success {
  color: #1FB46C;
}
.label-warning {
  color: #DBAF3E;
}
.label-danger {
  color: #ED0A34;
}

.order-info-page.disabled {
  pointer-events: none;
  opacity: 0.75;
}
.order-info-page .proforma {
  background: #ffffff;
  padding: 24px 32px;
  margin-top: 14px;
}
.order-info-page .proforma .head {
  display: flex;
  justify-content: space-between;
}
.order-info-page .proforma .head .title {
  font-weight: 600;
  font-size: 18px;
}
.order-info-page .proforma .head .title img {
  vertical-align: middle;
}
.order-info-page .proforma .head .title .file-name {
  color: #919399;
  font-size: 13px;
}
.order-info-page .proforma .head .title .replace-file {
  color: #0E7DE2;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  margin-left: 10px;
}
.order-info-page .proforma .head .help-link {
  color: #0E7DE2;
  font-weight: 600;
}
.order-info-page .proforma .body {
  color: #aaadb3;
  margin-top: 15px;
  border: 1px dashed rgba(1, 24, 46, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 0;
}
.order-info-page .proforma .body .add-file {
  border: 1px solid rgba(1, 24, 46, 0.12);
  width: 300px;
  margin: 10px;
  padding: 10px;
  text-align: center;
  cursor: pointer;
}
.order-info-page .proforma .body .info {
  margin-bottom: 15px;
  margin-top: 10px;
}
.order-info-page .proforma .body .info-successfully {
  color: #56B172;
  font-weight: 600;
  font-size: 17px;
}

.order-info-page__table thead tr,
.order-info-page__table .order-info-page__order-item {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 2fr 6fr 3fr 3fr 3fr 3fr 3fr;
}
.order-info-page__table thead tr-expanded,
.order-info-page__table .order-info-page__order-item-expanded {
  gap: 36px;
  grid-template-columns: 2fr 3fr;
  display: none;
}
.order-info-page__table thead tr-expanded.active,
.order-info-page__table .order-info-page__order-item-expanded.active {
  display: grid;
}
.order-info-page__table thead tr .bordered-img,
.order-info-page__table .order-info-page__order-item .bordered-img {
  border: 1px solid rgba(1, 24, 46, 0.12);
  padding: 6px;
  border-radius: 4px;
}
.order-info-page__table thead tr .subtitle,
.order-info-page__table .order-info-page__order-item .subtitle {
  color: #606266;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}
.order-info-page__table thead tr .btn-expand,
.order-info-page__table .order-info-page__order-item .btn-expand {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #E0E1E6;
  vertical-align: middle;
  margin-left: 8px;
}
.order-info-page__table thead tr .btn-expand::before, .order-info-page__table thead tr .btn-expand::after,
.order-info-page__table .order-info-page__order-item .btn-expand::before,
.order-info-page__table .order-info-page__order-item .btn-expand::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 11px;
  display: block;
  width: 8px;
  height: 1px;
  transition: all 0.3s ease-out;
  background-color: #19191A;
  transform: translate(-3px, -50%) rotate(45deg);
}
.order-info-page__table thead tr .btn-expand::after,
.order-info-page__table .order-info-page__order-item .btn-expand::after {
  transform: translate(3px, -50%) rotate(-45deg);
}
.order-info-page__table thead tr .btn-expand.active::before,
.order-info-page__table .order-info-page__order-item .btn-expand.active::before {
  transform: translate(-3px, -50%) rotate(-45deg);
}
.order-info-page__table thead tr .btn-expand.active::after,
.order-info-page__table .order-info-page__order-item .btn-expand.active::after {
  transform: translate(3px, -50%) rotate(45deg);
}
.order-info-page__table thead tr .label-green,
.order-info-page__table thead tr .label-gray,
.order-info-page__table .order-info-page__order-item .label-green,
.order-info-page__table .order-info-page__order-item .label-gray {
  display: inline-block;
  vertical-align: middle;
  padding: 7px 12px;
  border-radius: 12px;
}
.order-info-page__table thead tr .label-green,
.order-info-page__table .order-info-page__order-item .label-green {
  background-color: #1FB46C;
  color: #fff;
}
.order-info-page__table thead tr .label-gray,
.order-info-page__table .order-info-page__order-item .label-gray {
  background-color: #E0E1E6;
  color: #606266;
}
.order-info-page__table .order-item-img-previews {
  display: flex;
  justify-content: center;
  align-items: center;
}
.order-info-page__table .order-item-img-previews .order-item-img-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
}
.order-info-page__table .order-item-img-previews .order-item-img-preview:has(img[src=""]) {
  display: none;
}
.order-info-page__table .order-item-expanded__stepper-wrapper .order-item-expanded__stepper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.order-info-page__table .order-item-expanded__stepper-wrapper .order-item-expanded__stepper .order-item-expanded__stepper__step {
  max-width: 180px;
}
.order-info-page__table .order-item-expanded__stepper-wrapper .order-item-expanded__stepper .order-item-expanded__stepper__step .step-number {
  color: #AAADB3;
  font-size: 14px;
  font-weight: 600;
}
.order-info-page__table .order-item-expanded__stepper-wrapper .order-item-expanded__stepper .order-item-expanded__stepper__step .step-title {
  margin: 12px 0;
  color: #19191A;
  font-size: 16px;
  font-weight: 600;
}
.order-info-page__table .order-item-expanded__stepper-wrapper .order-item-expanded__stepper .order-item-expanded__stepper__step p {
  color: #606266;
  font-size: 13px;
  font-weight: 400;
}
.order-info-page__table .order-item-expanded__stepper-wrapper .stepper-links {
  margin-top: 24px;
}
.order-info-page__table .order-item-expanded__stepper-wrapper .btn-activate {
  padding: 13px;
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
  color: #fff;
  border-radius: 12px;
  background-color: #1FB46C;
}
.order-info-page__table .order-item-expanded__stepper-wrapper .step-link {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 14px;
  color: #0E7DE2;
  margin-left: 20px;
}

.order-cards__status {
  display: grid;
  grid-column: span 1;
  grid-row: span 1;
}
.order-cards__status .head {
  border-bottom: 1px solid #e0e3e6;
  margin-bottom: 24px;
}
.order-cards__status .head .order-status {
  margin-bottom: 24px;
}
.order-cards__status .body {
  display: flex;
  align-items: center;
}
.order-cards__status .body a {
  margin: 0 6px;
}
.order-cards__questions {
  display: grid;
  grid-column: span 1;
  grid-row: span 1;
}
.order-cards__questions .btn {
  margin-right: 10px;
}
.order-cards__client-info {
  display: grid;
  grid-column: span 1;
  grid-row: span 2;
}
.order-cards__client-info .body .title {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.order-cards__client-info .body .title a {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  color: #0E86F4;
  margin-left: 12px;
}
.order-cards__client-info .body .title a svg {
  margin-right: 4px;
}
.order-cards__client-info .body .content {
  color: #797A80;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 40px;
}
.order-cards .order-card {
  background: #fff;
  border: 1px solid rgba(1, 24, 46, 0.12);
  border-radius: 4px;
  padding: 24px;
}
.order-cards .order-card .head .title {
  margin-bottom: 24px;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #19191A;
  line-height: 26px;
}

#edit-customer-address .head {
  border-bottom: 1px solid rgba(1, 24, 46, 0.12);
  padding-bottom: 24px;
}

.desc-icon {
  position: relative;
  display: inline-block;
}

.desc-icon:after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(./../img/icon-info.svg) no-repeat center;
  margin-left: 8px;
  transform: translateY(1px);
  cursor: pointer;
}

.desc-icon:hover:after {
  opacity: 0.6;
}

.desc-icon:hover .desc-info {
  display: block;
}

.desc-info {
  display: none;
  position: absolute;
  z-index: 99999;
  bottom: 145%;
  right: -28px;
  background: #FFFFFF;
  border-radius: 4px;
  border: 1px solid rgba(1, 24, 46, 0.12);
  padding: 20px;
  width: 90vw;
  max-width: 540px;
}
.desc-info h3 {
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  color: #19191A;
  margin-bottom: 10px;
}
.desc-info p {
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 22px;
  color: #606266;
}

.desc-info:before,
.desc-info:after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: 28px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #fff;
  z-index: 9;
}

.desc-info:after {
  bottom: -9px;
  border-top: 8px solid rgba(1, 24, 46, 0.12);
  z-index: 8;
}

.forminputs__wrapper {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.forminputs__wrapper.mailgrid {
  grid-template-columns: 1.5fr 1fr;
}

.billinginfo__wrapper {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(48, 1fr);
  gap: 24px;
}
@media (max-width: 1300px) {
  .billinginfo__wrapper {
    grid-template-columns: repeat(12, 1fr);
  }
}
.billinginfo__wrapper .billinginfo__block {
  background: #fff;
  border-radius: 4px;
  border: 1px solid rgba(1, 24, 46, 0.12);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  grid-column: span 8;
  grid-row: span 1;
}
@media (max-width: 1300px) {
  .billinginfo__wrapper .billinginfo__block {
    grid-column: span 4;
  }
}
.billinginfo__wrapper .billinginfo__block svg {
  margin-bottom: 36px;
}
.billinginfo__wrapper .billinginfo__block .billinginfo__block__value {
  margin-bottom: 4px;
  font-weight: 600;
  font-size: 20px;
  line-height: 36px;
  color: #19191A;
}
.billinginfo__wrapper .billinginfo__block .billinginfo__block__name {
  margin-top: 8px;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #919399;
  white-space: nowrap;
}
.billinginfo__wrapper .billinginfo__doubleblock {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 4px;
  border: 1px solid rgba(1, 24, 46, 0.12);
  grid-column: span 24;
  grid-row: span 1;
}
@media (max-width: 1300px) {
  .billinginfo__wrapper .billinginfo__doubleblock {
    grid-column: span 12;
  }
}
.billinginfo__wrapper .billinginfo__doubleblock .billinginfo__block {
  background: #fff;
  border-radius: 4px 0 0 4px;
  border: none;
  border-right: 1px solid rgba(1, 24, 46, 0.12);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  grid-column: unset;
  grid-row: span unset;
}
.billinginfo__wrapper .billinginfo__doubleblock .description__block {
  padding: 24px 30px;
}
.billinginfo__wrapper .billinginfo__doubleblock .description__block .description__block__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
}
.billinginfo__wrapper .billinginfo__doubleblock .description__block .description__block__desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 15px;
  line-height: 22px;
  color: #606266;
}
.billinginfo__wrapper .paymentsmethods__block {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 4px;
  border: 1px solid rgba(1, 24, 46, 0.12);
  padding: 24px;
  grid-column: span 24;
  grid-row: span 2;
}
@media (max-width: 1300px) {
  .billinginfo__wrapper .paymentsmethods__block {
    grid-column: span 12;
  }
}
.billinginfo__wrapper .paymentsmethods__block .radios {
  display: flex;
  margin-bottom: 20px;
  padding: 5px;
  background-color: #F5F5F6;
  border-radius: 15px;
}
.billinginfo__wrapper .paymentsmethods__block .radios .radio-item {
  display: inline-flex;
  align-items: center;
  padding: 10px 15px;
  cursor: pointer;
  margin-right: 10px;
}
.billinginfo__wrapper .paymentsmethods__block .radios .radio-item svg {
  margin-right: 12px;
}
.billinginfo__wrapper .paymentsmethods__block .radios .radio-item .label-title {
  font-weight: 600;
  font-size: 14px;
  line-height: 145%;
  color: #2B2B2B;
  margin: 0;
}
.billinginfo__wrapper .paymentsmethods__block .radios .radio-item .label-title span {
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #919399;
}
.billinginfo__wrapper .paymentsmethods__block .radios .radio-item.active {
  background-color: #ffffff;
  border-radius: 15px;
}
.billinginfo__wrapper .paymentsmethods__block .radios .radio-item.active .label-title {
  color: #000000;
}
.billinginfo__wrapper .paymentsmethods__block .radios .radio-item input {
  margin: 0 0 0 auto;
}
.billinginfo__wrapper .paymentsmethods__block .prices {
  margin-bottom: 12px;
}
.billinginfo__wrapper .paymentsmethods__block .prices .price-label {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin-right: 5px;
  margin-bottom: 8px;
  cursor: pointer;
}
.billinginfo__wrapper .paymentsmethods__block .prices .price-label .price-input {
  position: relative;
  display: block;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #9097A6;
  border: 1px solid rgba(1, 24, 46, 0.12);
  border-radius: 4px;
  padding: 9px 16px;
}
.billinginfo__wrapper .paymentsmethods__block .prices .price-label .desc-icon:after {
  transform: translateY(3px);
}
.billinginfo__wrapper .paymentsmethods__block .prices .price-label input[type=radio] {
  display: none;
}
.billinginfo__wrapper .paymentsmethods__block .prices .price-label input[type=radio]:checked + span {
  color: #19191A;
  border: 1px solid rgba(1, 24, 46, 0.32);
}
.billinginfo__wrapper .paymentsmethods__block .prices .custom-price {
  display: none;
}
.billinginfo__wrapper .paymentsmethods__block .prices .custom-price .price-input {
  color: #19191A;
  border: 1px solid rgba(1, 24, 46, 0.32);
}
.billinginfo__wrapper .paymentsmethods__block .prices .custom-price .price-input::-moz-placeholder {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #C4C6CC;
}
.billinginfo__wrapper .paymentsmethods__block .prices .custom-price .price-input:-ms-input-placeholder {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #C4C6CC;
}
.billinginfo__wrapper .paymentsmethods__block .prices .custom-price .price-input::placeholder {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #C4C6CC;
}
.billinginfo__wrapper .paymentsmethods__block .prices .custom-price:after {
  content: "€";
  font-weight: 500;
  font-size: 14px;
  line-height: 38px;
  color: #797A80;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 14px;
  margin: auto;
}
.billinginfo__wrapper .paymentsmethods__block .main-form__footer {
  margin-bottom: 16px;
}
.billinginfo__wrapper .paymentsmethods__block .main-form__footer p {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #606266;
  margin-bottom: 0;
}
.billinginfo__wrapper .paymentsmethods__block .main-form__footer p span {
  display: inline-block;
  font-weight: 600;
  color: #0E7DE2;
  margin-left: 4px;
}
.billinginfo__wrapper .paymentsmethods__block .title {
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #19191A;
  line-height: 26px;
}
.billinginfo__wrapper .paymentsmethods__block .desc, .billinginfo__wrapper .paymentsmethods__block p {
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #606266;
  margin-bottom: 20px;
}
.billinginfo__wrapper .paymentsmethods__block p {
  margin-bottom: 4px;
}
.billinginfo__wrapper .paymentsmethods__block p strong {
  color: #19191A;
}
.billinginfo__wrapper .paymentsmethods__block .carddata {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.billinginfo__wrapper .paymentsmethods__block .carddata .carddata__wrapper {
  display: grid;
  gap: 16px;
  grid-auto-flow: column;
  grid-auto-columns: 252px 120px 100px;
}
@media (max-width: 1439px) {
  .billinginfo__wrapper .paymentsmethods__block .carddata .carddata__wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0 10px;
  }
}
.billinginfo__wrapper .paymentsmethods__block .carddata .carddata__footer {
  padding: 24px 24px 0;
  border-top: 1px solid rgba(1, 24, 46, 0.12);
  width: calc(100% + 48px);
  margin-left: -24px;
  margin-top: auto;
}
.billinginfo__wrapper .paymentsmethods__block .carddata .carddata__footer p {
  margin: 0;
}
.billinginfo__wrapper .paymentsmethods__block .carddata .main-form__input {
  padding: 8px 12px;
}
.billinginfo__wrapper .paymentsmethods__block .carddata .main-form__btn {
  margin: 0;
}
.billinginfo__wrapper .paymentsmethods__block .carddata .main-form__btn p {
  max-width: 240px;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #606266;
  margin-left: 16px;
  margin-bottom: 0;
}
.billinginfo__wrapper .paymentsmethods__block .carddata .main-form__btn p a {
  color: #0E86F4;
}
.billinginfo__wrapper .paymentsmethods__block .carddata .btn {
  font-weight: 600;
  padding: 13px 20px;
  min-width: 132px;
}

@media (max-width: 1439px) {
  .carddata__wrapper .main-form__line {
    width: 48%;
  }

  .carddata__wrapper .main-form__line:nth-of-type(1) {
    width: 100%;
  }
}
.paymentspage__table {
  margin-top: 14px;
  background: #fff;
  position: relative;
  z-index: 2;
  display: block;
  padding: 0 24px 32px;
}
.paymentspage__table table {
  width: 100%;
  border-collapse: collapse;
}
.paymentspage__table tr + tr {
  border-top: 1px solid rgba(1, 24, 46, 0.12);
  border-collapse: collapse;
}
.paymentspage__table thead tr,
.paymentspage__table .paymentspage__table__head {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(1, 24, 46, 0.12);
}
.paymentspage__table thead tr *,
.paymentspage__table .paymentspage__table__head * {
  font-style: normal;
  font-weight: 400;
  text-align: left;
  color: #919399;
  font-size: 12px;
  line-height: 145%;
  padding: 20px;
}
.paymentspage__table .paymentspage__table__order {
  padding: 20px 24px;
}
@media (max-width: 1200px) {
  .paymentspage__table .paymentspage__table__order {
    padding: 15px;
  }
}
.paymentspage__table .paymentspage__table__order * {
  color: #19191A;
  font-weight: 500;
  font-size: 14px;
  line-height: 145%;
  padding: 20px;
}
.paymentspage__table .paymentspage__table__order .order__status .done {
  color: #1FB46C;
  padding: 0;
}
.paymentspage__table .paymentspage__table__order .order__status .error {
  color: #ED0A34;
  padding: 0;
}
.paymentspage__table .paymentspage__table__order .order__status .pending {
  color: #DBAF3E;
  padding: 0;
}
.paymentspage__table .paymentspage__table__order .order__pdf {
  color: #0E86F4;
  transition: 0.3;
  padding: 0;
}
.paymentspage__table .paymentspage__table__order .order__pdf:hover {
  color: #86C3FB;
}

.paymentspage__headblock {
  margin-top: 30px;
}
.paymentspage__headblock .cselect {
  width: 200px;
}

.settingspage__tabs {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.settingspage__tabs .settingspage__tabs__tab {
  padding: 10px 16px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #919399;
  border: 1px solid rgba(1, 24, 46, 0.12);
  transition: 0.3s;
  background: transparent;
  cursor: pointer;
}
.settingspage__tabs .settingspage__tabs__tab:hover {
  border: 1px solid rgba(1, 24, 46, 0.24);
}
.settingspage__tabs .settingspage__tabs__tab.active {
  color: #19191A;
  border: 1px solid rgba(1, 24, 46, 0.32);
}

.settingspage__content__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.settingspage__content__wrapper .settingspage__addressblock {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
}
.settingspage__content__wrapper .settingspage__addressblock .settingspage__addressblock__titleblock {
  margin-bottom: 20px;
}
.settingspage__content__wrapper .settingspage__addressblock .settingspage__addressblock__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
}
.settingspage__content__wrapper .settingspage__addressblock .address__toggle {
  display: flex;
  align-items: center;
}
.settingspage__content__wrapper .settingspage__addressblock .address__toggle .text {
  font-size: 14px;
  line-height: 20px;
}
.settingspage__content__wrapper .settingspage__addressblock .address__toggle .toggler {
  margin-left: 12px;
}

.settingspage__addressblock__adressblock {
  background: #fff;
  padding: 24px;
}
.settingspage__addressblock__adressblock .main-form__input {
  border: 1px solid rgba(1, 24, 46, 0.32);
}
.settingspage__addressblock__adressblock .main-form__input.noactive {
  border: 1px solid rgba(1, 24, 46, 0.12);
}
.settingspage__addressblock__adressblock .main-form__input.noactive:focus {
  border: 1px solid rgba(1, 24, 46, 0.24);
}
.settingspage__addressblock__adressblock .main-form__lable {
  color: #19191A;
}
.settingspage__addressblock__adressblock .main-form__lable.noactive {
  color: #919399;
}
.settingspage__addressblock__adressblock .main-form__lable.noactive:focus {
  color: #19191A;
}
.settingspage__addressblock__adressblock .main-form__line {
  margin-bottom: 22px;
}
.settingspage__addressblock__adressblock .main-form__btn {
  margin-top: 8px;
}
.settingspage__addressblock__adressblock .formbtns__wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.settingspage__addressblock__adressblock .formbtns__wrapper .confirm {
  padding: 13px 20px;
  min-width: 180px;
}
.settingspage__addressblock__adressblock .formbtns__wrapper .cancel {
  background: transparent;
  min-width: unset;
  color: #000000;
}
.settingspage__addressblock__adressblock.hidden .main-form__input {
  background: #F3F4F6;
  color: #606266;
  pointer-events: none;
  border: 1px solid rgba(1, 24, 46, 0.12);
}
.settingspage__addressblock__adressblock.hidden .main-form__lable {
  color: #919399;
}

.settingspage__addressblock__infoblock {
  background-color: #fff;
  border: 1px solid rgba(1, 24, 46, 0.12);
  border-radius: 4px;
  margin-bottom: 16px;
  padding: 16px 24px;
}
.settingspage__addressblock__infoblock h3 {
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  line-height: 145%;
  color: #19191A;
  margin-bottom: 4px;
}
.settingspage__addressblock__infoblock p {
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  line-height: 20px;
  color: #919399;
  max-width: 270px;
}
.settingspage__addressblock__infoblock.infoblock-half {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  padding-right: 90px;
}
.settingspage__addressblock__infoblock.infoblock-half .toggler {
  position: absolute;
  top: 16px;
  right: 24px;
  left: auto;
  bottom: auto;
}

.settingspage__addressblock__infoblocks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 16px;
}
@media (max-width: 1300px) {
  .settingspage__addressblock__infoblocks-grid {
    grid-template-columns: 1fr;
  }
}

.shipping__content__wrapper__title {
  margin-top: 30px;
}

.shipping__blocks {
  gap: 24px;
}
@media (max-width: 1330px) {
  .shipping__blocks {
    flex-wrap: wrap;
  }
}
.shipping__blocks .shippingrules {
  position: relative;
  margin-top: 20px;
  width: 58.33%;
}
@media (max-width: 1330px) {
  .shipping__blocks .shippingrules {
    width: 100%;
  }
}
.shipping__blocks .shippingrules .desc {
  max-width: 400px;
  padding: 24px;
}
.shipping__blocks .shippingrules .desc p {
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #606266;
}
.shipping__blocks .shippingrules .desc p:not(:first-child) {
  margin-top: 18px;
}
.shipping__blocks .shippingrules .desc p a {
  color: #0E86F4;
}
.shipping__blocks .shippingrules::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 222px;
  height: 205px;
  background-repeat: no-repeat;
  background-image: url(./../img/shippingimg1.svg);
  pointer-events: none;
}
.shipping__blocks .shippingdelivery {
  position: relative;
  margin-top: 20px;
  width: 41.66%;
}
@media (max-width: 1330px) {
  .shipping__blocks .shippingdelivery {
    display: flex;
    flex: 1 0 0;
  }
}
.shipping__blocks .shippingdelivery__block {
  display: flex;
  justify-content: flex-end;
}
.shipping__blocks .shippingdelivery .desc {
  max-width: 240px;
  padding: 31px 24px;
}
@media (max-width: 1330px) {
  .shipping__blocks .shippingdelivery .desc {
    max-width: 100%;
  }
}
.shipping__blocks .shippingdelivery .desc .title {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #19191A;
  margin-bottom: 12px;
}
.shipping__blocks .shippingdelivery .desc p {
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #606266;
}
.shipping__blocks .shippingdelivery .desc p:not(:first-child) {
  margin-top: 15px;
}
.shipping__blocks .shippingdelivery .desc p a {
  color: #0E86F4;
}
.shipping__blocks .shippingdelivery::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 222px;
  height: 205px;
  background-repeat: no-repeat;
  background-image: url(./../img/shippingimg2.png);
  pointer-events: none;
}
@media (max-width: 1330px) {
  .shipping__blocks .shippingdelivery::after {
    background-size: contain;
    display: none;
  }
}

.shippingprices {
  margin-top: 30px;
}

.shippingprices__table {
  margin-top: 20px;
  width: 100%;
  border-collapse: collapse;
  border: none;
}
.shippingprices__table tr + tr {
  border-top: 1px solid rgba(1, 24, 46, 0.12);
  border-collapse: collapse;
}
.shippingprices__table thead tr,
.shippingprices__table .shippingprices__head {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(1, 24, 46, 0.12);
  display: grid;
  grid-template-columns: repeat(10, 1fr);
}
.shippingprices__table thead tr *,
.shippingprices__table .shippingprices__head * {
  font-style: normal;
  font-weight: 400;
  text-align: left;
  color: #919399;
  font-size: 12px;
  line-height: 145%;
}
.shippingprices__table thead tr .shipping__product,
.shippingprices__table .shippingprices__head .shipping__product {
  grid-column: span 4;
}
.shippingprices__table thead tr .shipping__region,
.shippingprices__table thead tr .shipping__additionalproduct,
.shippingprices__table .shippingprices__head .shipping__region,
.shippingprices__table .shippingprices__head .shipping__additionalproduct {
  grid-column: span 2;
}
.shippingprices__table thead tr .hidden,
.shippingprices__table .shippingprices__head .hidden {
  font-size: 0;
}
.shippingprices__table .shippingtable__item {
  padding: 20px 24px;
  display: grid;
  align-items: flex-start;
  overflow: hidden;
  grid-template-columns: repeat(10, 1fr);
}
.shippingprices__table .shippingtable__item * {
  color: #19191A;
  font-weight: 500;
  font-size: 14px;
  line-height: 145%;
  background: transparent;
  border: none;
}
.shippingprices__table .shippingtable__item .shipping__product {
  display: flex;
  align-items: center;
  grid-column: span 4;
}
.shippingprices__table .shippingtable__item .shipping__product img {
  flex: none;
}
.shippingprices__table .shippingtable__item .shipping__product .title {
  margin-left: 12px;
}
.shippingprices__table .shippingtable__item .shipping__additionalproduct {
  grid-column: span 1;
}
.shippingprices__table .shippingtable__item .shipping__region {
  grid-column: span 2;
}
.shippingprices__table .shippingtable__item .shipping__shipping,
.shippingprices__table .shippingtable__item .shipping__region,
.shippingprices__table .shippingtable__item .shipping__singleproduct,
.shippingprices__table .shippingtable__item .shipping__additionalproduct {
  display: grid;
  grid-auto-flow: row;
  gap: 20px;
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: height 0.3s;
}
.shippingprices__table .shippingtable__item .shipping__show {
  display: flex;
  align-items: center;
  height: 100%;
  cursor: pointer;
}
.shippingprices__table .shippingtable__item .shipping__show .status {
  color: #0E86F4;
  margin-right: 6px;
}
.shippingprices__table .shippingtable__item .shipping__show .status-hide {
  display: none;
}
.shippingprices__table .shippingtable__item .dr__el {
  border: none;
  width: auto;
}
.shippingprices__table .shippingtable__item-active .shipping__shipping,
.shippingprices__table .shippingtable__item-active .shipping__region,
.shippingprices__table .shippingtable__item-active .shipping__singleproduct,
.shippingprices__table .shippingtable__item-active .shipping__additionalproduct {
  opacity: 1;
  visibility: visible;
  height: auto;
}
.shippingprices__table .shippingtable__item-active .shipping__show {
  height: auto;
}
.shippingprices__table .shippingtable__item-active .shipping__show .status {
  display: none;
}
.shippingprices__table .shippingtable__item-active .shipping__show .status-hide {
  display: block;
}
.shippingprices__table .shippingtable__item-active .shipping__show svg {
  transform: rotate(180deg);
}

.d-header__controls-item {
  position: relative;
}

.d-header__dropdown {
  width: 213px;
  left: -40px;
  top: calc(100% + 5px);
  position: absolute;
  box-shadow: 0 6px 8px rgba(35, 37, 40, 0.08);
  border: 1px solid rgba(1, 24, 46, 0.12);
  display: none;
}
.d-header__dropdown:before, .d-header__dropdown:after {
  content: "";
  position: absolute;
  top: -4px;
  left: 49px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 4px solid #fff;
  z-index: 9;
}
.d-header__dropdown:after {
  top: -5px;
  border-bottom: 4px solid rgba(1, 24, 46, 0.12);
  z-index: 8;
}
.d-header__dropdown.show {
  display: block;
}
.d-header__dropdown .user-settings {
  padding: 13px 8px 4px 8px;
}
.d-header__dropdown .shop-settings {
  padding: 8px;
  border: 1px solid rgba(1, 24, 46, 0.12);
}
.d-header__dropdown .logout {
  padding: 4px 8px 8px 8px;
}
.d-header__dropdown .dropdown-settings .item {
  display: flex;
  align-items: center;
  padding: 6px;
  border-radius: 4px;
  cursor: pointer;
}
.d-header__dropdown .dropdown-settings .item .title {
  color: #000;
}
.d-header__dropdown .dropdown-settings .item:hover {
  background: #0E86F4;
}
.d-header__dropdown .dropdown-settings .item:hover .icon path {
  fill: #fff;
}
.d-header__dropdown .dropdown-settings .item:hover .title {
  color: #fff;
}
.d-header__dropdown .dropdown-settings .item .icon {
  margin-right: 8px;
}
.d-header__dropdown .dropdown-settings .item:not(:first-child) {
  margin-top: 4px;
}
.d-header__dropdown .shop-settings .item {
  display: flex;
  align-items: center;
  padding: 6px;
  border-radius: 4px;
  cursor: pointer;
}
.d-header__dropdown .shop-settings .item .icon {
  margin-right: 8px;
  width: 20px;
}
.d-header__dropdown .shop-settings .item .title {
  color: #AAADB3;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 156px;
  padding: 2px 0;
}
.d-header__dropdown .shop-settings .item:not(:first-child) {
  margin-top: 4px;
}
.d-header__dropdown .shop-settings .item.active {
  background: #F3F4F6;
}
.d-header__dropdown .shop-settings .item.active .icon {
  filter: grayscale(0);
}
.d-header__dropdown .shop-settings .item.active .title {
  color: #19191A;
  font-size: 14px;
}

.d-header__alarm {
  position: relative;
}
.d-header__alarm .newnot {
  position: absolute;
  top: 0px;
  right: 0;
  width: 10px;
  height: 10px;
  background: #DBAF3E;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
}

.notificationblock {
  position: absolute;
  width: 350px;
  right: -60px;
  top: calc(100% + 15px);
  padding-bottom: 15px;
  box-shadow: 0px 6px 8px rgba(35, 37, 40, 0.08);
  display: none;
}
.notificationblock:before, .notificationblock:after {
  content: "";
  position: absolute;
  top: -4px;
  right: 60px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 4px solid #fff;
  z-index: 9;
}
.notificationblock:after {
  top: -5px;
  border-bottom: 4px solid rgba(1, 24, 46, 0.12);
  z-index: 8;
}
.notificationblock.show {
  display: block;
}
.notificationblock .notificationblock__head {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  padding: 16px 16px 12px 16px;
  border-bottom: 1px solid rgba(1, 24, 46, 0.12);
}
.notificationblock .notificationblock__list {
  padding: 8px;
  display: grid;
  grid-auto-flow: row;
  gap: 4px;
}
.notificationblock .notificationblock__list .item {
  padding: 8px;
  border-radius: 4px;
  background: #F3F4F6;
}
.notificationblock .notificationblock__list .item.active {
  background: #FAF1DD;
}
.notificationblock .notificationblock__list .item .title {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #313133;
}
.notificationblock .notificationblock__list .item .date {
  margin-top: 2px;
  font-weight: 400;
  font-size: 13px;
  color: #919399;
}
.notificationblock .notificationblock__showall {
  padding: 12px 16px;
  color: #0E86F4;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
}
.notificationblock .notificationblock__showall:hover {
  color: #86C3FB;
}

.notificationblock-empty {
  width: 280px;
}
.notificationblock-empty .notificationblock__head {
  padding: 20px 16px;
  display: flex;
  align-items: center;
}
.notificationblock-empty .notificationblock__head img {
  margin-right: 16px;
}
.notificationblock-empty .notificationblock__head span {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #919399;
}

.formbtns__wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.formbtns__wrapper .confirm {
  padding: 13px 20px;
  min-width: 180px;
}
.formbtns__wrapper .cancel {
  background: transparent;
  min-width: unset;
}

.dz__area-content.userprofile {
  padding: 19px;
}

.usertable {
  margin-top: 30px;
  width: 100%;
  border-collapse: collapse;
  border: none;
}
.usertable tr + tr {
  border-top: 1px solid rgba(1, 24, 46, 0.12);
  border-collapse: collapse;
}
.usertable thead tr,
.usertable .mystorestable__header {
  display: grid;
  grid-template-columns: 140px 100px 1fr;
  gap: 28px;
  border-bottom: 1px solid rgba(1, 24, 46, 0.12);
  padding: 20px 24px;
  align-items: center;
}
.usertable thead tr *,
.usertable .mystorestable__header * {
  font-style: normal;
  font-weight: 400;
  text-align: left;
  font-size: 12px;
  line-height: 145%;
  color: #919399;
}
.usertable thead tr .actions,
.usertable .mystorestable__header .actions {
  margin-right: 25px;
  justify-self: flex-end;
}
.usertable .mystorestable__item {
  display: grid;
  grid-template-columns: 140px 100px 1fr;
  gap: 28px;
  padding: 20px 24px;
  align-items: center;
}
.usertable .mystorestable__item .store,
.usertable .mystorestable__item .status {
  font-weight: 500;
  font-size: 14px;
  color: #19191A;
}
.usertable .mystorestable__item .store a,
.usertable .mystorestable__item .status a {
  color: #19191A;
}
.usertable .mystorestable__item .status.done {
  color: #1FB46C;
}
.usertable .mystorestable__item .actions {
  margin-right: 25px;
  justify-self: flex-end;
}
.usertable .mystorestable__item .actions .btn--reverse {
  height: 32px;
  min-width: unset;
}
.usertable .mystorestable__item .actions .btn--blue {
  margin-left: 10px;
  height: 32px;
  min-width: unset;
}
.usertable.messagestable {
  display: block;
  padding: 0 24px 32px;
}
.usertable.messagestable table {
  width: 100%;
  border-collapse: collapse;
}
.usertable.messagestable table tr + tr {
  border-top: 1px solid rgba(1, 24, 46, 0.12);
  border-collapse: collapse;
}
.usertable.messagestable table thead tr,
.usertable.messagestable table .messagestable__header {
  display: grid;
  grid-template-columns: 140px 190px 450px 160px;
  border-bottom: 1px solid rgba(1, 24, 46, 0.12);
  padding: 20px 24px;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .usertable.messagestable table thead tr,
.usertable.messagestable table .messagestable__header {
    grid-template-columns: 100px 190px 200px 160px;
  }
}
.usertable.messagestable table thead tr *,
.usertable.messagestable table .messagestable__header * {
  font-style: normal;
  font-weight: 400;
  text-align: left;
  font-size: 12px;
  line-height: 145%;
  color: #919399;
}
.usertable.messagestable table thead tr .posted,
.usertable.messagestable table .messagestable__header .posted {
  margin-right: 25px;
  justify-self: flex-end;
}
.usertable.messagestable table .messagestable__item {
  display: grid;
  grid-template-columns: 140px 190px 450px 160px;
  padding: 20px 24px;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .usertable.messagestable table .messagestable__item {
    grid-template-columns: 100px 190px 200px 160px;
  }
}
.usertable.messagestable table .messagestable__item * {
  font-weight: 500;
  font-size: 14px;
  color: #19191A;
}
.usertable.messagestable table .messagestable__item .posted {
  margin-right: 25px;
  justify-self: flex-end;
}
.usertable.messagestable table .messagestable__item:last-child {
  border-bottom: none;
}

.usertable.empty {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 200px;
  border-radius: 4px;
  background: transparent;
}
.usertable.empty svg {
  margin-bottom: 20px;
  width: 32px;
  height: 32px;
}
.usertable.empty h2 {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #C4C6CC;
}

.usertablelinkto {
  cursor: pointer;
  color: #0E86F4;
}

.item__design-popup .smallbtn {
  display: none;
}

.dashboard__product__popup-contentwrapper.designpage .dashboard__product__popup-content__design__grid {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dashboard__product__popup-contentwrapper.designpage .dashboard__product__popup-content__design__grid .item__design-popup {
  min-height: 170px;
}
.dashboard__product__popup-contentwrapper.designpage .dashboard__product__popup-content__design__grid .item__design-popup .smallbtn.design {
  display: flex;
  position: absolute;
  z-index: 3;
  top: 12px;
  left: 12px;
  width: 36px;
  height: 36px;
  background: #F3F4F6;
  border: 1px solid rgba(1, 24, 46, 0.12);
}
.dashboard__product__popup-contentwrapper.designpage .dashboard__product__popup-content__design__grid .item__design-popup .smallbtn.design:hover {
  background: #0E86F4;
}
.dashboard__product__popup-contentwrapper.designpage .dashboard__product__popup-content__design__grid .item__design-popup .smallbtn.design:hover .icon path {
  stroke: #fff;
}
.dashboard__product__popup-contentwrapper.designpage .dashboard__product__popup-content__design__sidemenu {
  min-height: calc(100vh - 180px);
  height: auto;
}
.dashboard__product__popup-contentwrapper.designpage .dashboard__product__popup-content__design__sidemenu .dz__area {
  min-height: 424px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.inputwpic.designpage {
  margin-left: 24px;
  width: 320px;
}

.editdesign__popup {
  display: flex;
  align-items: stretch;
}
.editdesign__popup .editdesign__popup__desc {
  width: 335px;
  margin-left: 24px;
}
.editdesign__popup .editdesign__popup__desc .remove-desing {
  margin-top: 20px;
}
.editdesign__popup .editdesign__popup__desc .btns {
  margin-top: 70px;
}
.editdesign__popup .editdesign__popup__form {
  width: 455px;
}
.editdesign__popup .editdesign__popup__form .remove-desing {
  margin-top: 20px;
}

.remove-desing {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  transition: 0.3s;
}
.remove-desing .text {
  margin-left: 8px;
  color: #ED0A34;
  font-weight: 500;
  font-size: 14px;
}
.remove-desing:hover .icon path {
  stroke: #F44C6B;
}
.remove-desing:hover .text {
  color: #F44C6B;
}

.dashboardemty__start {
  margin-top: 32px;
  position: relative;
  display: flex;
  padding: 0;
}
.dashboardemty__start .image {
  position: relative;
  display: flex;
  width: 410px;
  margin-right: 15px;
  justify-content: center;
}
.dashboardemty__start .image img.bg {
  align-self: end;
  height: auto;
}
.dashboardemty__start .image img.logo,
.dashboardemty__start .image .size {
  position: absolute;
  inset: 0;
  top: auto;
  margin: auto;
  transform: translate3d(-10px, -74px, 0);
}
.dashboardemty__start .image .size {
  display: block;
  width: 89px;
  height: 89px;
  transform: translate3d(-10px, -55px, 0);
  border: 1px solid #0E86F4;
}
.dashboardemty__start .image .size:before, .dashboardemty__start .image .size:after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: 4px;
  height: 5px;
  background: #fff;
  border: 1px solid #0E86F4;
}
.dashboardemty__start .image .size:after {
  left: auto;
  right: -3px;
}
.dashboardemty__start .image .size span:before,
.dashboardemty__start .image .size span:after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: -3px;
  width: 4px;
  height: 5px;
  background: #fff;
  border: 1px solid #0E86F4;
}
.dashboardemty__start .image .size span:after {
  left: auto;
  right: -3px;
}
.dashboardemty__start .popupclose {
  position: absolute;
  top: 4px;
  right: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: 0 0;
  cursor: pointer;
  transition: 0.3s;
}
.dashboardemty__start .popupclose:hover {
  background: #EEEFF4;
}

.dashboardemty__start__desc {
  padding: 32px 0;
  width: 561px;
}
.dashboardemty__start__desc .text {
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #606266;
}
.dashboardemty__start__desc .btn {
  margin-top: 16px;
  padding: 12px 29px;
  margin-right: 8px;
}

.dashboard__statistic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media screen and (max-width: 1100px) {
  .dashboard__statistic {
    grid-template-columns: repeat(2, 1fr);
  }
}
.dashboard__statistic .dashboard__statistic__item {
  padding: 24px;
  align-items: flex-start;
}
.dashboard__statistic .desc {
  margin-left: 24px;
}
.dashboard__statistic .desc .item {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: #19191A;
}
.dashboard__statistic .desc .text {
  margin-top: 4px;
  color: #919399;
}

.dashboard__orders {
  margin-top: 26px;
}
.dashboard__orders .settingspage__tabs {
  margin-top: 0;
}
.dashboard__orders .settingspage__tabs .settingspage__tabs__tab {
  padding: 8px 18px;
}
.dashboard__orders .settingspage__tabs .icon {
  margin-left: 8px;
}
.dashboard__orders .dashboard__products-head {
  justify-content: space-between;
}

.graphwrapper {
  border-top: rgba(1, 24, 46, 0.12);
}
.graphwrapper .graph {
  padding: 24px;
}
.graphwrapper .graph__legend {
  border-top: 1px solid rgba(1, 24, 46, 0.12);
  padding: 16px 24px;
}
.graphwrapper .legendpoints {
  display: flex;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}
.graphwrapper .legendpoints .item {
  display: flex;
  align-items: center;
}
.graphwrapper .legendpoints .item .mark {
  margin-right: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.graphwrapper .legendpoints .item:nth-child(1) .mark {
  background: #E0E1E6;
}
.graphwrapper .legendpoints .item:nth-child(2) .mark {
  background: #DBAF3E;
}
.graphwrapper .legendpoints .item:nth-child(3) .mark {
  background: #ED0A34;
}
.graphwrapper .legendpoints .item:nth-child(4) .mark {
  background: #6BBFBE;
}
.graphwrapper .legendpoints .item:nth-child(5) .mark {
  background: #1FB46C;
}
.graphwrapper .legendpoints .item:nth-child(6) .mark {
  background: #BDDFF7;
}
.graphwrapper .legendpoints .item:nth-child(7) .mark {
  background: #0E86F4;
}

.graphwrapper.active {
  display: block;
}

.dashboardstabs {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.dashboardstabs .dashboards__revenue {
  grid-column: span 5;
}
.dashboardstabs .dashboards__revenue .settingspage__tabs {
  margin-top: 0;
}
.dashboardstabs .dashboards__revenue .settingspage__tabs .settingspage__tabs__tab {
  padding: 10px 12px;
}
.dashboardstabs .dashboards__revenue .dashboard__products-head {
  padding: 18px 24px 0;
  justify-content: space-between;
}
.dashboardstabs .dashboards__group {
  grid-column: span 7;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.categories__table {
  margin-top: 20px;
}
.categories__table .head {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.categories__table .head * {
  font-size: 12px;
  color: #919399;
}
.categories__table .items {
  height: auto;
  max-height: 225px;
  overflow-y: auto;
  display: none;
  padding-bottom: 2px;
}
.categories__table .items.active {
  display: block;
}
.categories__table .item {
  border-radius: 3px;
  background: #0E7DE2;
  padding: 12px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
  color: #fff;
}
.categories__table .item * {
  font-size: 14px;
}
.categories__table .item:nth-child(1) {
  background: rgb(14, 125, 226);
}
.categories__table .item:nth-child(3) {
  background: rgba(14, 125, 226, 0.8);
}
.categories__table .item:nth-child(4) {
  background: rgba(14, 125, 226, 0.6);
}
.categories__table .item:nth-child(5) {
  background: rgba(14, 125, 226, 0.4);
}
.categories__table .item:nth-child(6) {
  background: rgba(14, 125, 226, 0.2);
}

.dashboards__topproducts .topproducts__table .head {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: 16px;
}
.dashboards__topproducts .topproducts__table .head .units {
  text-align: center;
}
.dashboards__topproducts .topproducts__table .head .value {
  text-align: right;
}
.dashboards__topproducts .topproducts__table .item {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 14px 0;
  border-top: 1px solid rgba(1, 24, 46, 0.12);
}
.dashboards__topproducts .topproducts__table .item * {
  font-weight: 500;
  font-size: 14px;
  color: #19191A;
}
.dashboards__topproducts .topproducts__table .item .units {
  text-align: center;
}
.dashboards__topproducts .topproducts__table .item .value {
  text-align: right;
}

.dashboards__categories .dashboard__products-head {
  flex-direction: column;
  align-items: flex-start;
}

.topproducts__table {
  margin-top: 20px;
}
.topproducts__table .top {
  display: none;
}
.topproducts__table .active {
  display: block;
}
.topproducts__table .head {
  margin-top: 16px;
}
.topproducts__table .head * {
  font-weight: 400;
  font-size: 12px;
  color: #919399;
}

.language-drop__list-wrapper {
  position: absolute;
  z-index: 9;
  display: none;
  padding: 7px;
  width: 150px;
  left: -20px;
  top: calc(100% + 5px);
  box-shadow: 0 6px 8px rgba(35, 37, 40, 0.08);
}
.language-drop__list-wrapper.show {
  display: block;
}

.language-drop__list {
  display: block;
}
.language-drop__list .item {
  display: flex;
  align-items: center;
  border-radius: 4px;
  cursor: pointer;
}
.language-drop__list .item a {
  display: flex;
  flex: 1;
  padding: 8px;
}
.language-drop__list .item .title {
  font-weight: 400;
  font-size: 13px;
  color: #313133;
}
.language-drop__list .item.active {
  background: #F3F4F6;
}
.language-drop__list .item:hover {
  background: #0E86F4;
}
.language-drop__list .item:hover .icon path {
  fill: #fff;
}
.language-drop__list .item:hover .title {
  color: #fff;
}
.language-drop__list .item .icon {
  margin-right: 8px;
}
.language-drop__list .item:not(:first-child) {
  margin-top: 4px;
}

.return-receive-forward {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
}
.return-receive-forward__item {
  padding: 8px 12px;
  font-family: "Manrope-Medium", sans-serif;
  font-size: 15px;
  line-height: 22px;
  border-radius: 8px;
}
.return-receive-forward__item--receive {
  padding-right: 16px;
  background: rgba(25, 160, 250, 0.16);
}
.return-receive-forward__item--forward {
  padding-left: 16px;
  background: rgba(192, 25, 250, 0.12);
}
.return-receive-forward__plus {
  position: relative;
  display: inline-block;
  text-align: center;
  margin: 0 -8px;
  width: 20px;
  height: 20px;
  background-color: #000;
  color: #fff;
  border-radius: 50%;
}

.tooltip {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  height: 16px;
  margin-left: 8px;
}
.tooltip__icon {
  opacity: 0.5;
  transition: opacity 0.3s linear;
}
.tooltip__content {
  display: block;
  text-align: center;
  position: absolute;
  width: 270px;
  padding: 20px;
  background-color: #fff;
  color: #606266;
  bottom: 30px;
  left: 50%;
  margin-left: -135px;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  border: 1px solid rgba(1, 24, 46, 0.12);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s linear;
}
.tooltip__content:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 100%;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top-color: rgba(1, 24, 46, 0.12);
}
.tooltip__content:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 100%;
  width: 0;
  height: 0;
  border: 9px solid transparent;
  border-top-color: white;
}
.tooltip:hover .tooltip__icon {
  opacity: 1;
}
.tooltip:hover .tooltip__content {
  visibility: visible;
  opacity: 1;
}

.returnspage__headblock {
  margin-top: 26px;
}
.returnspage__headblock .title {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
}
.returnspage__headblock .sub-title {
  font-size: 18px;
  line-height: 28px;
  margin-left: 12px;
  color: #606266;
}
.returnspage__headblock .cselect {
  width: auto;
  min-width: 200px;
}
.returnspage__headblock .btn {
  margin-left: 12px;
  width: 180px;
}
.returnspage__headblock .btn .icon {
  margin-left: 8px;
}

.orderspage__headblock__filtersblock .cselect {
  width: 200px;
}

.returnspage__table {
  margin-top: 14px;
  background: #fff;
  display: block;
  padding: 0 24px 32px;
}
.returnspage__table table {
  width: 100%;
  border-collapse: collapse;
}
.returnspage__table tr + tr {
  border-top: 1px solid rgba(1, 24, 46, 0.12);
  border-collapse: collapse;
}
.returnspage__table thead tr,
.returnspage__table .returnspage__table__head {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(1, 24, 46, 0.12);
  border-collapse: collapse;
  display: grid;
  grid-template-columns: 50px 4fr 2fr 1fr 1fr 2fr;
  gap: 40px;
}
.returnspage__table thead tr *,
.returnspage__table .returnspage__table__head * {
  font-style: normal;
  font-weight: 400;
  text-align: left;
  color: #919399;
  font-size: 12px;
  line-height: 145%;
}
.returnspage__table .returnspage__table__return {
  padding: 20px 24px;
  display: grid;
  gap: 40px;
  grid-template-columns: 50px 4fr 2fr 1fr 1fr 2fr;
}
.returnspage__table .returnspage__table__return .return__img {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(1, 24, 46, 0.12);
  border-radius: 3px;
  padding: 3px;
}
.returnspage__table .returnspage__table__return .return__img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.returnspage__table .returnspage__table__return * {
  color: #19191A;
  font-weight: 500;
  font-size: 14px;
  line-height: 145%;
  display: flex;
  align-self: center;
}

.news-notification {
  position: fixed;
  padding: 10px;
  z-index: 12;
  width: 100%;
  background: #0E86F4;
  text-align: center;
  color: #FFF;
  font-size: 14px;
  line-height: 20px;
  height: 40px;
  top: -40px;
  transition: top 0.5s ease;
}
.news-notification.active {
  top: 0px;
}

.news-notification__btn {
  color: #19191A;
  background-color: #fff;
  padding: 4px 10px;
  margin: 0 16px;
  border-radius: 24px;
}

.popupmain {
  position: relative;
  width: 100%;
  height: 100%;
  background: #F3F4F6;
}
.popupmain.popupmain--white {
  background: #FFF;
}
.popupmain .notifications {
  position: fixed;
  z-index: 10;
  top: 120px;
  right: 20px;
  display: grid;
  gap: 8px;
}
.popupmain .notifications .notify {
  padding: 10px 16px 10px 12px;
  border-radius: 4px;
  align-items: center;
  display: none;
}
.popupmain .notifications .notify.active {
  display: flex;
}
.popupmain .notifications .notify .text {
  margin-left: 10px;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #161616;
}
.popupmain .notifications .notify.notify {
  background: #FAEECF;
  border: 1px solid #DBAF3E;
}
.popupmain .notifications .notify.error {
  background: #FDE9E9;
  border: 1px solid #ED0A34;
}

.notify__new {
  background: #FFFFFF;
  padding: 20px;
  border-top: 2px solid #DBAF3E;
  box-shadow: 0 6px 8px rgba(35, 37, 40, 0.08);
  border-radius: 4px;
  display: none;
  gap: 0 12px;
}
.notify__new.active {
  display: flex;
}
.notify__new .info {
  max-width: 300px;
}
.notify__new .title {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 2px;
  color: #19191A;
}
.notify__new span {
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  color: #797A80;
}
.notify__new .btn {
  padding: 13px 20px;
  font-weight: 600;
  min-width: 70px;
}

.editor-container {
  cursor: pointer;
}

.dashboard__product__popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dashboard__product__popup-header--sticky-top {
  position: -webkit-sticky;
  position: sticky;
  padding: 15px 0;
  margin: -32px 0 -20px;
  top: 106px;
  background-color: #f3f4f6;
  z-index: 10;
  min-height: 70px;
}
.dashboard__product__popup-header .dashboard__product__popup-header__steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dashboard__product__popup-header .dashboard__product__popup-header__steps .dashboard__product__popup-header__step {
  display: flex;
  align-items: center;
}
.dashboard__product__popup-header .dashboard__product__popup-header__steps .dashboard__product__popup-header__step .stepcount {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 8px;
  width: 20px;
  height: 20px;
  background: #0E86F4;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  border-radius: 50%;
  display: none;
}
.dashboard__product__popup-header .dashboard__product__popup-header__steps .dashboard__product__popup-header__step .check {
  display: none;
  margin-right: 8px;
}
.dashboard__product__popup-header .dashboard__product__popup-header__steps .dashboard__product__popup-header__step span {
  font-weight: 600;
  font-size: 16px;
  color: #C4C6CC;
}
.dashboard__product__popup-header .dashboard__product__popup-header__steps .dashboard__product__popup-header__step:not(:first-child)::before {
  display: block;
  content: "";
  background: #C4C6CC;
  width: 36px;
  height: 1px;
  margin: 0 20px;
}
.dashboard__product__popup-header .dashboard__product__popup-header__steps .dashboard__product__popup-header__step.active .stepcount {
  display: flex;
}
.dashboard__product__popup-header .dashboard__product__popup-header__steps .dashboard__product__popup-header__step.active span {
  color: #19191A;
}
.dashboard__product__popup-header .dashboard__product__popup-header__steps .dashboard__product__popup-header__step.done .stepcount {
  display: none;
}
.dashboard__product__popup-header .dashboard__product__popup-header__steps .dashboard__product__popup-header__step.done .check {
  display: block;
}
.dashboard__product__popup-header .dashboard__product__popup-header__navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dashboard__product__popup-header .dashboard__product__popup-header__navigation .popupclose {
  cursor: pointer;
  margin-left: 30px;
}

.dashboard__product__popup-content {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 24px;
  align-items: start;
}
.dashboard__product__popup-content.review {
  grid-template-columns: 3fr 2fr;
}
.dashboard__product__popup-content.modal-content-style {
  grid-template-columns: 5fr 7fr;
  row-gap: 0;
}
.dashboard__product__popup-content.modal-content-style .modal-content-title {
  color: #19191A;
  line-height: 36px;
  margin-bottom: 15px;
}
.dashboard__product__popup-content.modal-content-style .dashboard__product__popup-content__design__grid {
  max-height: 550px;
  overflow-y: scroll;
  scrollbar-width: thin;
  margin-top: 10px;
}
.dashboard__product__popup-content.modal-content-style .dashboard__product__popup-content__design__grid .item__design-popup {
  padding: 0;
  min-height: 180px;
}
.dashboard__product__popup-content.modal-content-style .dashboard__product__popup-content__design__grid .item__design-popup .main__preview-pic-img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.dashboard__product__popup-content.modal-content-style .dashboard__product__popup-content__design__sidemenu {
  grid-column: 1;
  grid-row: 2;
  margin-top: 10px;
}
.dashboard__product__popup-content.modal-content-style .dashboard__product__popup-content__review__sideblock {
  margin-top: 15px;
}
.dashboard__product__popup-content.modal-content-style .dashboard__product__popup-content__reviewblock,
.dashboard__product__popup-content.modal-content-style .dashboard__product__popup-content__design__grid {
  grid-column: 2;
  grid-row: 1/3;
}
.dashboard__product__popup-content .content {
  flex: 1 0 auto;
  width: auto;
  margin-top: 20px;
  gap: 20px;
}

.dashboard__product__popup-content__caregories__filter {
  margin-top: 20px;
  background: #fff;
  border: 1px solid rgba(1, 24, 46, 0.12);
  border-radius: 4px;
  position: -webkit-sticky;
  position: sticky;
  top: 176px;
}
.dashboard__product__popup-content__caregories__filter .dashboard__product__popup-content__caregory__filter {
  padding: 16px;
}
.dashboard__product__popup-content__caregories__filter .dashboard__product__popup-content__caregory__filter:not(:first-child) {
  border-top: 1px solid rgba(1, 24, 46, 0.12);
}
.dashboard__product__popup-content__caregories__filter .dashboard__product__popup-content__caregory__filter .dashboard__product__popup-content__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dashboard__product__popup-content__caregories__filter .dashboard__product__popup-content__caregory__filter .dashboard__product__popup-content__head .title {
  font-weight: 600;
  font-size: 14px;
  color: #919399;
}
.dashboard__product__popup-content__caregories__filter .dashboard__product__popup-content__caregory__filter .dashboard__product__popup-content__head .count {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(14, 134, 244, 0.12);
  padding: 2px 13px;
  color: #0E86F4;
  font-weight: 600;
  font-size: 14px;
  border-radius: 4px;
}
.dashboard__product__popup-content__caregories__filter .dashboard__product__popup-content__caregory__filter .tabs.no-border .tab.active::after {
  display: none;
}
.dashboard__product__popup-content__caregories__filter .dashboard__product__popup-content__caregory__filter .dashboard__product__popup-content__content .category__list {
  margin-top: 16px;
  margin-bottom: 5px;
}
.dashboard__product__popup-content__caregories__filter .dashboard__product__popup-content__caregory__filter .dashboard__product__popup-content__content .category__list .category__list-item {
  list-style-type: none;
}
.dashboard__product__popup-content__caregories__filter .dashboard__product__popup-content__caregory__filter .dashboard__product__popup-content__content .category__list .category__list-item:not(:first-child) {
  margin-top: 12px;
}
.dashboard__product__popup-content__caregories__filter .dashboard__product__popup-content__caregory__filter .dashboard__product__popup-content__content .category__list .category__list-item a {
  font-weight: 600;
  font-size: 14px;
  color: #919399;
  cursor: pointer;
}
.dashboard__product__popup-content__caregories__filter .dashboard__product__popup-content__caregory__filter .dashboard__product__popup-content__content .category__list .category__list-item:hover a {
  color: #0E86F4;
}
.dashboard__product__popup-content__caregories__filter .dashboard__product__popup-content__caregory__filter .dashboard__product__popup-content__content .category__list .category__list-item .count {
  margin-left: 4px;
  font-weight: inherit;
  font-size: inherit;
  color: #919399;
}
.dashboard__product__popup-content__caregories__filter .dashboard__product__popup-content__caregory__filter .dashboard__product__popup-content__content .category__list .category__list-item.active a {
  color: #0E86F4;
}
.dashboard__product__popup-content__caregories__filter .dashboard__product__popup-content__caregory__filter.active .dashboard__product__popup-content__head .title {
  color: #19191A;
}

.dashboard__products__categories {
  margin-top: 20px;
  background: #fff;
  border: 1px solid rgba(1, 24, 46, 0.12);
  border-radius: 4px;
}
.dashboard__products__categories .dashboard__products__category {
  padding: 16px;
}
.dashboard__products__categories .dashboard__products__category:not(:first-child) {
  border-top: 1px solid rgba(1, 24, 46, 0.12);
}
.dashboard__products__categories .dashboard__products__category .dashboard__products__category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dashboard__products__categories .dashboard__products__category .dashboard__products__category-head .title {
  font-size: 14px;
  font-weight: 600;
  color: #919399;
}
.dashboard__products__categories .dashboard__products__category .dashboard__products__category-head:hover .title {
  color: #19191A;
}
.dashboard__products__categories .dashboard__products__category .dashboard__products__category-content .category__list {
  margin-top: 16px;
  margin-bottom: 5px;
}
.dashboard__products__categories .dashboard__products__category .dashboard__products__category-content .category__list .category__list-item {
  list-style-type: none;
}
.dashboard__products__categories .dashboard__products__category .dashboard__products__category-content .category__list .category__list-item:not(:first-child) {
  margin-top: 12px;
}
.dashboard__products__categories .dashboard__products__category .dashboard__products__category-content .category__list .category__list-item a {
  font-weight: 600;
  font-size: 14px;
  color: #919399;
}
.dashboard__products__categories .dashboard__products__category .dashboard__products__category-content .category__list .category__list-item:hover a {
  color: #0E86F4;
}
.dashboard__products__categories .dashboard__products__category .dashboard__products__category-content .category__list .category__list-item .count {
  margin-left: 4px;
  font-weight: inherit;
  font-size: inherit;
  color: #919399;
}
.dashboard__products__categories .dashboard__products__category .dashboard__products__category-content .category__list .category__list-item.active a {
  color: #0E86F4;
}
.dashboard__products__categories .dashboard__products__category.active .dashboard__products__category-head .title {
  color: #19191A;
}

.dashboard__products__tagcategories--wrapper {
  margin-top: 20px;
}

.dashboard__products__tagcategories {
  border-radius: 12px;
  padding: 20px 16px;
  border: 1px solid rgba(1, 24, 46, 0.12);
  background-color: #fff;
}

.dashboard__products__tagcategories--cselecttagcategory {
  padding: 10px 16px;
  margin-bottom: 10px;
}

.dashboard__products__tagcategories--filtercategory .dashboard__products__tagcategories__category__title {
  margin-bottom: 0;
}

.dashboard__products__tagcategories__category:not(:last-child) {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(1, 24, 46, 0.12);
}

.dashboard__products__tagcategories__category__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  cursor: pointer;
}

.dashboard__products__tagcategories__category__title .cselect {
  width: 100%;
}

.dashboard__products__tagcategories__category__title small {
  font-size: 14px;
  font-weight: 600;
  color: #919399;
  white-space: nowrap;
  pointer-events: none;
}

.dashboard__products__tagcategories__category__title .counter {
  padding: 5px;
  margin: 0 5px;
  background-color: #e2f0fd;
  color: #0e86f4;
  border-radius: 50%;
  min-width: 20px;
  height: 20px;
  display: inline-block;
  text-align: center;
  line-height: 10px;
}

.dashboard__products__tagcategories__category__title .arrow {
  position: relative;
  padding-right: 15px;
  pointer-events: none;
}

.dashboard__products__tagcategories__category__title .arrow:before, .dashboard__products__tagcategories__category__title .arrow:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  display: block;
  width: 8px;
  height: 1px;
  transition: all 0.3s ease-out;
  background-color: #19191a;
}

.dashboard__products__tagcategories__category__title .arrow:before {
  transform: translate(-3px, -50%) rotate(45deg);
}

.dashboard__products__tagcategories__category__title .arrow:after {
  transform: translate(3px, -50%) rotate(-45deg);
}

.is-active .arrow:before {
  transform: translate(-3px, -50%) rotate(-45deg);
}

.is-active .arrow:after {
  transform: translate(3px, -50%) rotate(45deg);
}

.dashboard__products__tagcategories__category__links {
  margin: -4px;
  height: 0;
  overflow: hidden;
}

.is-active .dashboard__products__tagcategories__category__links {
  height: auto;
}

.dashboard__products__tagcategories__category a {
  display: inline-block;
  border-radius: 16px;
  padding: 6px 12px;
  background-color: #f3f4f6;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #19191a;
  margin: 4px;
}

.dashboard__products__tagcategories__category a.active {
  color: #fff;
  background-color: #0e86f4;
}

.dashboard__products__tagcategories__category a.disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
}

.dashboard__product__popup-content__products__grid,
.dashboard__products__grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dashboard__product__popup-content__products__grid .no__product {
  grid-column: span 3;
}

.dashboard__products__grid {
  width: 100%;
}

.item__block-popup {
  background: #fff;
  border: 1px solid rgba(1, 24, 46, 0.12);
  border-radius: 4px;
}
.item__block-popup:hover {
  border: 1px solid rgba(1, 24, 46, 0.24);
}
.item__block-popup .item__block-popup__top {
  cursor: pointer;
  position: relative;
  min-height: 210px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.item__block-popup .item__block-popup__top-sample {
  max-width: 204px;
  margin: 0 auto;
}
.item__block-popup .item__block-popup__top__sidebtns {
  position: absolute;
  top: 16px;
  left: 16px;
}
.item__block-popup .item__block-popup__top-actionbtns {
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  display: grid;
  align-items: center;
  justify-content: center;
  grid-auto-flow: column;
  gap: 8px;
}
.item__block-popup .item__block-popup__information {
  padding: 16px 24px 24px 24px;
}
.item__block-popup .item__block-popup__information__title {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #19191A;
}
.item__block-popup .item__block-popup__information__color__choise {
  margin-top: 12px;
  display: grid;
  gap: 10px 0;
  grid-template-columns: repeat(auto-fill, 15px);
}
.item__block-popup .item__block-popup__information__color__choise .colorpic {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #dadada;
  background: #C4C6CC;
  cursor: pointer;
}
.item__block-popup .item__block-popup__information__sizes {
  margin-top: 12px;
  font-weight: 400;
  font-size: 13px;
  color: #606266;
}
.item__block-popup .item__block-popup__information__sizes span {
  margin-left: 3px;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
}
.item__block-popup .item__block-popup__information__cost {
  margin-top: 16px;
  font-weight: 600;
  font-size: 16px;
  color: #19191A;
}
.item__block-popup .item__block-popup__information__cost span {
  margin-left: 3px;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
}

.dashboard__product__popup-content__design__grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.item__design-popup {
  position: relative;
  background: #fff;
  min-height: 240px;
  border: 1px solid rgba(1, 24, 46, 0.12);
  border-radius: 4px;
  padding: 16px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.item__design-popup.trasnparent-pattern {
  background: url(./../img/trasnparent-pattern.png) repeat 50%;
}
.item__design-popup .icon {
  pointer-events: none;
}
.item__design-popup .item__design-popup__mask {
  opacity: 0;
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(1, 24, 46, 0.72), rgba(1, 24, 46, 0.72));
  transition: 0.3s;
}
.item__design-popup .checkpic {
  display: none;
  position: absolute;
  z-index: 5;
  top: 12px;
  right: 12px;
  background: #0E7DE2;
  cursor: pointer;
}
.item__design-popup .item__design-popup__description {
  opacity: 0;
  position: absolute;
  z-index: 3;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 16px;
  overflow-wrap: anywhere;
  max-height: 50%;
  overflow: hidden;
  transition: 0.3s;
}
.item__design-popup:hover .item__design-popup__mask {
  opacity: 1;
}
.item__design-popup:hover .item__design-popup__description {
  opacity: 1;
}
.item__design-popup:hover .remove-desing .design {
  display: none;
}
.item__design-popup.active .checkpic {
  display: flex;
}

.dashboard__product__popup-content__design__sidemenu {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #fff;
  border: 1px solid rgba(1, 24, 46, 0.12);
  border-radius: 4px;
  padding: 24px;
}
.dashboard__product__popup-content__design__sidemenu .dz__area-content {
  padding: 40px 25px 25px;
}
.dashboard__product__popup-content__design__sidemenu .dz--filled .dz__area {
  border: none;
  background: url("./../../img/trasnparent-pattern.png") repeat 50%;
}
.dashboard__product__popup-content__design__sidemenu .dz__area {
  position: relative;
}
.dashboard__product__popup-content__design__sidemenu .dz__input {
  bottom: 0;
}
.dashboard__product__popup-content__design__sidemenu .main-form__line {
  margin-top: 24px;
}
.dashboard__product__popup-content__design__sidemenu .main-form__line .error {
  border-color: #ff8282;
}
.dashboard__product__popup-content__design__sidemenu .dz__note.recommended {
  width: 230px;
  max-width: 100%;
  margin-top: 40px;
  line-height: 20px;
}
.dashboard__product__popup-content__design__sidemenu .btn {
  width: 100%;
  justify-self: self-end;
}

.dashboard__product__popup-content__reviewblock .dashboard__product__popup-content__main {
  position: relative;
}
.dashboard__product__popup-content__reviewblock .dashboard__product__popup-content__main .titleblock {
  position: absolute;
  top: 10px;
}
.dashboard__product__popup-content__reviewblock .dashboard__product__popup-content__main .titleblock .title {
  font-weight: 600;
  font-size: 24px;
  color: #19191A;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 240px;
}
.dashboard__product__popup-content__reviewblock .dashboard__product__popup-content__main .titleblock .cost {
  margin-top: 8px;
  font-weight: 600;
  font-size: 18px;
  color: #313133;
}
.dashboard__product__popup-content__reviewblock .dashboard__product__popup-content__main .mainimg-block {
  position: relative;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dashboard__product__popup-content__reviewblock .dashboard__product__popup-content__main .mainimg-block__side__btns {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.dashboard__product__popup-content__reviewblock .dashboard__product__popup-content__main .mainimg-block__side__btns .side-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100px;
  height: 76px;
  background: #fff;
  border-radius: 3px;
  border: 1px solid rgba(1, 24, 46, 0.12);
  cursor: pointer;
  transition: 0.2s;
}
.dashboard__product__popup-content__reviewblock .dashboard__product__popup-content__main .mainimg-block__side__btns .side-btn:not(:first-child) {
  margin-top: 8px;
}
.dashboard__product__popup-content__reviewblock .dashboard__product__popup-content__main .mainimg-block__side__btns .side-btn .name {
  margin-top: 5px;
  font-weight: 600;
  font-size: 14px;
  color: #AAADB3;
}
.dashboard__product__popup-content__reviewblock .dashboard__product__popup-content__main .mainimg-block__side__btns .side-btn:hover {
  border: 1px solid rgba(1, 24, 46, 0.24);
}
.dashboard__product__popup-content__reviewblock .dashboard__product__popup-content__main .mainimg-block__side__btns .side-btn:hover .name {
  color: #0E86F4;
}
.dashboard__product__popup-content__reviewblock .dashboard__product__popup-content__main .mainimg-block__side__btns .side-btn:hover .icon path {
  fill: #0E86F4;
}
.dashboard__product__popup-content__reviewblock .dashboard__product__popup-content__main .dashboard__product__popup-content___thumbs__block {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1399px) {
  .dashboard__product__popup-content__reviewblock .dashboard__product__popup-content__main .dashboard__product__popup-content___thumbs__block {
    grid-template-columns: repeat(auto-fill, 205px);
  }
}
.dashboard__product__popup-content__reviewblock .dashboard__product__popup-content__main .dashboard__product__popup-content___thumbs__block.mockups {
  margin-top: 90px;
}
.dashboard__product__popup-content__reviewblock .dashboard__product__popup-content__main .dashboard__product__popup-content___thumbs__block .thumb__elem {
  background: #fff;
  border-radius: 4px;
  opacity: 0.72;
  min-height: 326px;
  cursor: pointer;
  border: 1px solid transparent;
}
.dashboard__product__popup-content__reviewblock .dashboard__product__popup-content__main .dashboard__product__popup-content___thumbs__block .thumb__elem:hover {
  opacity: 1;
  border: 1px solid rgba(1, 24, 46, 0.24);
}
.dashboard__product__popup-content__reviewblock .dashboard__product__popup-content__main .dashboard__product__popup-content___thumbs__block .thumb__elem .thumb__elem__desc {
  padding: 16px;
}
.dashboard__product__popup-content__reviewblock .dashboard__product__popup-content__main .dashboard__product__popup-content___thumbs__block .thumb__elem .thumb__elem__top {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.dashboard__product__popup-content__reviewblock .dashboard__product__popup-content__main .dashboard__product__popup-content___thumbs__block .thumb__elem .title {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}
.dashboard__product__popup-content__reviewblock .dashboard__product__popup-content__main .dashboard__product__popup-content___thumbs__block .thumb__elem.active {
  opacity: 1;
  border: 2px solid #0E86F4;
}
.dashboard__product__popup-content__reviewblock .dashboard__product__popup-content__main .dashboard__product__popup-content___thumbs__block .thumb__elem.error {
  opacity: 1;
  border: 2px solid #f44336;
}
.dashboard__product__popup-content__reviewblock .dashboard__product__popup-content__main .dashboard__product__popup-content___thumbs__block .thumb__elem .thumb__elem__color__choise {
  margin-top: 12px;
  display: grid;
  gap: 10px 0;
  grid-template-columns: repeat(auto-fill, 15px);
}
.dashboard__product__popup-content__reviewblock .dashboard__product__popup-content__main .dashboard__product__popup-content___thumbs__block .thumb__elem .thumb__elem__color__choise .colorpic {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #dadada;
  background: #C4C6CC;
  cursor: pointer;
}

.dashboard__product__popup-content__review__sideblock {
  margin-top: 20px;
  background: #fff;
  border: 1px solid rgba(1, 24, 46, 0.12);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.dashboard__product__popup-content__review__sideblock.pricepage .tabs {
  background: #fff;
}
.dashboard__product__popup-content__review__sideblock .tabs {
  padding: 24px 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(1, 24, 46, 0.12);
}
.dashboard__product__popup-content__review__sideblock .tabs .tab {
  cursor: pointer;
  position: relative;
  padding: 0 10px 24px;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #919399;
  transition: 0.3s;
}
.dashboard__product__popup-content__review__sideblock .tabs .tab:hover {
  color: #19191A;
}
.dashboard__product__popup-content__review__sideblock .tabs .tab.active {
  color: #19191A;
}
.dashboard__product__popup-content__review__sideblock .tabs .tab.active::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  display: block;
  content: "";
  height: 1px;
  background: #0E86F4;
}
.dashboard__product__popup-content__review__sideblock .dashboard__product__popup-content__content {
  padding: 24px;
}
.dashboard__product__popup-content__review__sideblock .dashboard__product__popup-content__content .design-btn {
  display: flex;
  align-items: center;
  cursor: pointer;
  background: transparent;
  border: none;
  font-weight: 500;
  font-size: 14px;
  justify-content: flex-start;
  transition: 0.3s;
}
.dashboard__product__popup-content__review__sideblock .dashboard__product__popup-content__content .design-btn .text {
  margin-left: 8px;
}
.dashboard__product__popup-content__review__sideblock .dashboard__product__popup-content__content .add-desing {
  color: #0E86F4;
}
.dashboard__product__popup-content__review__sideblock .dashboard__product__popup-content__content .add-desing:hover .icon path {
  stroke: #86C3FB;
}
.dashboard__product__popup-content__review__sideblock .dashboard__product__popup-content__content .add-desing:hover .text {
  color: #86C3FB;
}
.dashboard__product__popup-content__review__sideblock .dashboard__product__popup-content__content .remove-desing {
  color: #ED0A34;
}
.dashboard__product__popup-content__review__sideblock .dashboard__product__popup-content__content .remove-desing:hover .icon path {
  stroke: #F44C6B;
}
.dashboard__product__popup-content__review__sideblock .dashboard__product__popup-content__content .remove-desing:hover .text {
  color: #F44C6B;
}
.dashboard__product__popup-content__review__sideblock .mockups {
  display: flex;
  flex-wrap: wrap;
}
.dashboard__product__popup-content__review__sideblock .mockups .preview {
  display: inline;
  margin: 5px 5px 0;
  opacity: 0.3;
}
.dashboard__product__popup-content__review__sideblock .mockups .preview:hover {
  opacity: 1;
}
.dashboard__product__popup-content__review__sideblock .mockups .preview img {
  width: 111px;
  border-radius: 10px;
  cursor: pointer;
}
.dashboard__product__popup-content__review__sideblock .mockups .active {
  opacity: 1;
}

.image-options__options__wrapper {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 8px;
}
.image-options__options__wrapper .image-options__sides {
  display: grid;
  align-items: center;
  gap: 8px;
  grid-auto-flow: column;
}
.image-options__options__wrapper .image-options__sides .btn {
  min-width: unset;
}
.image-options__options__wrapper .image-options__sides .btn.active {
  border: 1px solid transparent;
  background: rgba(14, 134, 244, 0.12);
  color: #0E86F4;
}
.image-options__options__wrapper .image-options__edit {
  display: grid;
  align-items: center;
  gap: 8px;
  grid-auto-flow: column;
}

.print-area-sizes div:first-child {
  margin-bottom: 5px;
}

#slider-round {
  height: 10px;
}

#slider-round .noUi-connect {
  background: #c0392b;
}

#slider-round .noUi-handle {
  height: 18px;
  width: 18px;
  top: -5px;
  right: -9px;
  /* half the width */
  border-radius: 9px;
}

.dashboard__product__popup-content__save-btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 35px 25px 25px;
  justify-self: flex-end;
  margin-top: auto;
}
.dashboard__product__popup-content__save-btns .btn {
  width: 100%;
}
.dashboard__product__popup-content__save-btns .btn-cancel {
  color: #000;
  margin-left: 35px;
}
.dashboard__product__popup-content__save-btns.btop {
  border-top: 1px solid rgba(1, 24, 46, 0.12);
  padding-top: 16px;
}

.image-options__availablemodels__wrapper {
  display: grid;
  gap: 12px;
}
.image-options__availablemodels__wrapper .image-options__aviablemodel {
  display: flex;
  align-items: center;
}
.image-options__availablemodels__wrapper .image-options__aviablemodel .toggler {
  margin: unset;
  flex: none;
}
.image-options__availablemodels__wrapper .image-options__aviablemodel .text {
  cursor: pointer;
  margin-left: 12px;
}
.image-options__availablemodels__wrapper .image-options__aviablemodel .text.active {
  color: #19191A;
}

.image-options__titledescription__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.image-options__cushion__wrapper .p13-400 {
  line-height: 154%;
}

.image-options__settingitems {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.image-options__settingitems .image-options__item {
  padding: 8px 12px;
  border-radius: 3px;
  border: 1px solid rgba(1, 24, 46, 0.12);
  cursor: pointer;
}
.image-options__settingitems .image-options__item .value {
  display: flex;
  align-items: center;
}
.image-options__settingitems .image-options__item .value .color {
  width: 25px;
  height: 25px;
  border-radius: 2px;
  background: #2F2F2F;
  border: 1px solid #d0d0d0;
}
.image-options__settingitems .image-options__item .value .checkbox {
  border-radius: 3px;
  border: 1px solid #d0d0d0;
  width: 20px;
  height: 20px;
  margin-left: 8px;
}
.image-options__settingitems .image-options__item .value .checkbox.active {
  content: url("./../img/check-blue.svg");
  display: inline-table;
  padding: 3px;
}
.image-options__settingitems .image-options__item:hover {
  border: 1px solid rgba(1, 24, 46, 0.32);
  color: #606266;
}
.image-options__settingitems .image-options__item.active {
  border: 1px solid rgba(1, 24, 46, 0.32);
}
.image-options__settingitems .image-options__item.active .value {
  color: #19191A;
}
.image-options__settingitems .image-options__item.active .value::after {
  content: url("./../img/check-blue.svg");
  display: inline-table;
  margin-left: 8px;
  width: 10px;
  height: 6px;
}
.image-options__settingitems .image-options__item_form {
  cursor: pointer;
}
.image-options__settingitems .image-options__item_form input {
  display: none;
}
.image-options__settingitems .image-options__item_form input:checked ~ .value {
  border: 1px solid rgba(1, 24, 46, 0.32);
  color: #19191A;
}
.image-options__settingitems .image-options__item_form input:checked ~ .value::after {
  content: url("./../img/check-blue.svg");
  display: inline-table;
  margin-left: 8px;
  width: 10px;
  height: 6px;
}
.image-options__settingitems .image-options__item_form .value {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 3px;
  border: 1px solid rgba(1, 24, 46, 0.12);
  border: 1px solid #d0d0d0;
}
.image-options__settingitems .image-options__item_form .value:hover {
  border: 1px solid rgba(1, 24, 46, 0.32);
  color: #606266;
}
.image-options__settingitems .image-options__item_form .value .color {
  width: 20px;
  height: 20px;
  border-radius: 2px;
  background: #2F2F2F;
  border: 1px solid rgba(1, 24, 46, 0.32);
}

.dashboard__product__popup-content__shipping-pricing__table__wrapper {
  padding: 24px;
}
.dashboard__product__popup-content__shipping-pricing__table__wrapper .dashboard__product__popup-content__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dashboard__product__popup-content__shipping-pricing__table__wrapper.back-grey {
  border-top: 1px solid rgba(1, 24, 46, 0.12);
}

.blue-editor-link {
  transition: 0.3s;
  display: flex;
  align-items: center;
  cursor: pointer;
  background: transparent;
  border: none;
}
.blue-editor-link .text {
  color: #0E86F4;
  margin-left: 8px;
}
.blue-editor-link:hover .icon path {
  stroke: #86C3FB;
}
.blue-editor-link:hover .text {
  color: #86C3FB;
}

.dashboard__product__popup-content__shipping-pricing__table {
  margin-top: 20px;
  display: grid;
  gap: 20px;
}
.dashboard__product__popup-content__shipping-pricing__table .table__item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}
.dashboard__product__popup-content__shipping-pricing__table .table__item .name {
  color: #19191A;
  font-weight: 400;
  font-size: 14px;
}
.dashboard__product__popup-content__shipping-pricing__table .table__item .name-long {
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
}
.dashboard__product__popup-content__shipping-pricing__table .table__item .name span {
  font-size: 12px;
  color: #797A80;
}
.dashboard__product__popup-content__shipping-pricing__table .table__item .value {
  font-weight: 500;
  font-size: 14px;
  color: #19191A;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.dashboard__product__popup-content__shipping-pricing__table .table__item--shipping-item {
  grid-template-columns: minmax(100px, 1fr) repeat(auto-fit, minmax(50px, 1fr));
  gap: 1%;
}
.dashboard__product__popup-content__shipping-pricing__table .table__item--shipping-item:not(:last-child):not(:first-child) {
  border-bottom: 1px solid #e6e8ea;
}
.dashboard__product__popup-content__shipping-pricing__table .table__item--shipping-item .name {
  padding: 5px 0;
}
.dashboard__product__popup-content__shipping-pricing__table .table__item--shipping-item .value {
  text-align: center;
  padding: 10px 0;
  background-color: #f3f4f6;
}
.dashboard__product__popup-content__shipping-pricing__table .table__item--shipping-item .value-white {
  background-color: #fff;
}
.dashboard__product__popup-content__shipping-pricing__table .table__item--shipping-item .value-top {
  border-radius: 10px 10px 0 0;
}
.dashboard__product__popup-content__shipping-pricing__table .table__item--shipping-item .value-bottom {
  border-radius: 0 0 10px 10px;
}
.dashboard__product__popup-content__shipping-pricing__table .table__item .cselect {
  width: unset;
  margin-left: -10px;
}
.dashboard__product__popup-content__shipping-pricing__table--shipping-table {
  margin-top: 0px;
  gap: 0px;
}

.back-grey {
  background: #F3F4F6;
}

.back-white {
  background: #fff;
}

.markup.cselect[data-state=active] .cselect__title::after {
  transform: translate(1px, -50%) rotate(45deg);
}
.markup .cselect__title {
  justify-content: space-between;
}
.markup .cselect__title::before, .markup .cselect__title::after {
  width: 6px;
}
.markup .cselect__title::after {
  transform: translate(1px, -50%) rotate(-45deg);
}
.markup .cselect__title span {
  margin-right: 16px;
}

.noUi-tooltip {
  display: none;
  background: #606266;
  border-radius: 4px;
  color: #fff;
  font-weight: 400;
  font-size: 13px;
}

.noUi-active .noUi-tooltip {
  display: block;
}

.size__slider__wrapper {
  position: relative;
}
.size__slider__wrapper .size__slider__wrapper__btn {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(1, 24, 46, 0.12);
  background: #fff;
  z-index: 2;
  cursor: pointer;
}
.size__slider__wrapper .size__slider__wrapper__btn.minus {
  top: -18px;
  left: 0;
}
.size__slider__wrapper .size__slider__wrapper__btn.plus {
  top: -18px;
  right: 0;
}

.noUi-horizontal {
  width: calc(100% - 72px);
  padding: 0 20px;
  margin: 32px auto;
  height: 2px;
  border: none;
  box-shadow: none;
  background: #F3F4F6;
  cursor: pointer;
}
.noUi-horizontal .noUi-touch-area {
  cursor: pointer;
}
.noUi-horizontal .noUi-connect {
  background: #0E86F4;
}
.noUi-horizontal .noUi-connects {
  transform: translateX(-20px);
}
.noUi-horizontal .noUi-handle {
  right: -20px;
  top: -20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid rgba(1, 24, 46, 0.12);
  box-shadow: 0 4px 6px rgba(33, 72, 107, 0.12);
}
.noUi-horizontal .noUi-handle::before, .noUi-horizontal .noUi-handle::after {
  display: none;
}
.noUi-horizontal .noUi-handle:hover, .noUi-horizontal .noUi-handle:active {
  border: 1px solid rgba(1, 24, 46, 0.24);
  box-shadow: 0px 4px 6px rgba(33, 72, 107, 0.16);
}

.redwicon {
  transition: 0.3s;
}
.redwicon:hover .icon path {
  stroke: #F44C6B;
}
.redwicon:hover .text {
  color: #F44C6B;
}

.settingblock__tags {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.settingblock__tags .tag {
  padding: 8px 12px;
  border-radius: 3px;
  border: 1px solid rgba(1, 24, 46, 0.12);
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: #19191A;
}
.settingblock__tags .tag::after {
  content: url(./../img/tagx.svg);
  display: inline-table;
  margin-left: 8px;
  width: 10px;
  height: 6px;
}
.settingblock__tags .tag:hover {
  color: #ED0A34;
  border: 1px solid #ED0A34;
}
.settingblock__tags .tag:hover::after {
  content: url(./../img/tagxh.svg);
  display: inline-table;
  margin-left: 8px;
  width: 10px;
  height: 6px;
}

.tag__add-wrapper {
  position: relative;
}
.tag__add-wrapper .tag__value {
  width: 100%;
  padding: 10px 35px 10px 14px;
  color: #19191A;
  font-weight: 500;
  font-size: 14px;
  border: 1px solid rgba(1, 24, 46, 0.12);
  border-radius: 3px;
}
.tag__add-wrapper .tag__value::-moz-placeholder {
  color: #C4C6CC;
  font-weight: 500;
  font-size: 14px;
}
.tag__add-wrapper .tag__value:-ms-input-placeholder {
  color: #C4C6CC;
  font-weight: 500;
  font-size: 14px;
}
.tag__add-wrapper .tag__value::placeholder {
  color: #C4C6CC;
  font-weight: 500;
  font-size: 14px;
}
.tag__add-wrapper .tag__value:hover, .tag__add-wrapper .tag__value:active {
  border: 1px solid rgba(1, 24, 46, 0.24);
}
.tag__add-wrapper .tag__add {
  position: absolute;
  right: 13px;
  top: 13px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.tag__add-wrapper .tag__add:hover, .tag__add-wrapper .tag__add:active, .tag__add-wrapper .tag__add:focus {
  outline: none;
}

.currency__input-wrapper {
  position: relative;
}
.currency__input-wrapper .currency__input {
  width: 100%;
  padding: 10px 45px 10px 14px;
  color: #19191A;
  font-weight: 500;
  font-size: 14px;
  border: 1px solid rgba(1, 24, 46, 0.12);
  border-radius: 3px;
}
.currency__input-wrapper .currency__input::-moz-placeholder {
  color: #C4C6CC;
  font-weight: 500;
  font-size: 14px;
}
.currency__input-wrapper .currency__input:-ms-input-placeholder {
  color: #C4C6CC;
  font-weight: 500;
  font-size: 14px;
}
.currency__input-wrapper .currency__input::placeholder {
  color: #C4C6CC;
  font-weight: 500;
  font-size: 14px;
}
.currency__input-wrapper .currency__input:hover, .currency__input-wrapper .currency__input:active {
  border: 1px solid rgba(1, 24, 46, 0.24);
}
.currency__input-wrapper .cselect {
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
.currency__input-wrapper .cselect:hover, .currency__input-wrapper .cselect:active, .currency__input-wrapper .cselect:focus {
  outline: none;
}

@media (max-width: 1200px) {
  .dashboard__product__popup-content__design__sidemenu {
    padding: 16px;
  }

  .dashboard__product__popup-content__design__sidemenu .dz__area-content {
    padding: 40px 16px 16px;
  }

  .dashboard__product__popup-content__design__sidemenu .dz__btn {
    padding: 10px;
    width: 100%;
    text-align: center;
  }

  .table__item.table__item--shipping-item {
    grid-template-columns: minmax(80px, 2fr) repeat(auto-fit, minmax(40px, 1fr));
  }
}
.smallbtn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(1, 24, 46, 0.12);
  border-radius: 3px;
  background: #fff;
  transition: 0.2s;
  cursor: pointer;
}
.smallbtn:hover {
  border: 1px solid rgba(1, 24, 46, 0.32);
}
.smallbtn.active {
  background: linear-gradient(0deg, rgba(14, 134, 244, 0.12), rgba(14, 134, 244, 0.12));
}

.problems-orders {
  padding: 5px 10px;
  border-radius: 24px;
  color: #fff;
  display: block;
  background-color: #DBAF3E;
  font-size: 14px;
}
.problems-orders .count {
  background-color: white;
  color: #000;
  border-radius: 24px;
  min-width: 24px;
  height: 24px;
  display: inline-block;
  text-align: center;
  line-height: 24px;
  margin: 0 5px;
  padding: 0 6px;
}
.problems-orders .link-btn {
  background-color: white;
  color: #000;
  border-radius: 24px;
  min-width: 35px;
  height: 24px;
  display: inline-block;
  text-align: center;
  line-height: 24px;
  margin-left: 5px;
  padding: 0 6px;
}

.pagination {
  display: flex;
  list-style: none;
  margin-top: 24px;
  color: #797A80;
}
.pagination li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 36px;
  border-radius: 12px;
  border: none;
}
.pagination li.active {
  background: #0E86F4;
  color: #fff;
}
.pagination li:hover:not(.active) {
  background: #F8F7F7;
}
.pagination li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #797A80;
}

.dashboard-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.dashboard-cards__item {
  display: flex;
  background: #fff;
  position: relative;
  border: 1px solid rgba(1, 24, 46, 0.12);
  border-radius: 4px;
  grid-column: span 1;
}
@media (max-width: 1060px) {
  .dashboard-cards__item {
    grid-column: span 2;
  }
}
.dashboard-cards__item:first-child {
  grid-column: span 2;
}
.dashboard-cards__content {
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.dashboard-cards__title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 156%;
}
.dashboard-cards__desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 147%;
  margin-bottom: 20px;
  color: #606266;
}
.dashboard-cards__button-group {
  display: flex;
  gap: 12px;
}

.dashboard-cards-top__image {
  width: 410px;
  flex: none;
}
@media (max-width: 1060px) {
  .dashboard-cards-top__image {
    flex: 1;
    width: auto;
  }
}
.dashboard-cards-top__image-src {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.dashboard-cards-top__content {
  max-width: 480px;
}

.dashboard-cards-bottom__background {
  position: absolute;
  width: 240px;
  right: 0;
  top: 0;
  height: 100%;
  z-index: 1;
}
.dashboard-cards-bottom__background-src {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.dashboard-cards-bottom__content {
  max-width: 430px;
  position: relative;
  z-index: 2;
}

.dashboard-cards-returns {
  background: url("./../img/dashboard-cards/4.png") no-repeat right bottom;
  background-size: contain;
  background-color: #fff;
}
.dashboard-cards-returns__content {
  max-width: 550px;
}
.dashboard-cards-returns__image {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.dashboard-cards-returns-list {
  padding: 24px 0;
  text-align: center;
}
.dashboard-cards-returns-list__content {
  padding: 0 24px;
}
.dashboard-cards-returns-list__title {
  padding: 0;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 24px;
  font-family: "Manrope-SemiBold", sans-serif;
}
.dashboard-cards-returns-list__row {
  display: flex;
}
.dashboard-cards-returns-list__row .col-arrow {
  position: relative;
  border-right: 1px solid rgba(1, 24, 46, 0.12);
}
.dashboard-cards-returns-list__row .col-arrow:after {
  content: ">";
  line-height: 2;
  display: block;
  position: absolute;
  font-size: 19px;
  color: rgb(96, 98, 102);
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid rgba(1, 24, 46, 0.12);
  right: -20px;
  top: 20px;
}
.dashboard-cards-returns-list__col {
  flex: 1;
  padding: 0px 40px;
}
.dashboard-cards-returns-list__col .dashboard-cards__title {
  font-size: 16px;
  line-height: 24px;
  font-family: "Manrope-SemiBold", sans-serif;
}
.dashboard-cards-returns-list__icon {
  margin: 24px;
}
