@font-face {
  font-family: "GothamPro";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/GothamPro-Light.woff") format("woff"), url("../fonts/GothamPro-Light.woff2") format("woff2");
}
@font-face {
  font-family: "GothamPro";
  font-style: italic;
  font-weight: 300;
  src: url("../fonts/GothamPro-LightItalic.woff") format("woff"), url("../fonts/GothamPro-LightItalic.woff2") format("woff2");
}
@font-face {
  font-family: "GothamPro";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/GothamPro.woff") format("woff"), url("../fonts/GothamPro.woff2") format("woff2");
}
@font-face {
  font-family: "GothamPro";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/GothamPro-Italic.woff") format("woff"), url("../fonts/GothamPro-Italic.woff2") format("woff2");
}
@font-face {
  font-family: "GothamPro";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/GothamPro-Medium.woff") format("woff"), url("../fonts/GothamPro-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "GothamPro";
  font-style: italic;
  font-weight: 500;
  src: url("../fonts/GothamPro-MediumItalic.woff") format("woff"), url("../fonts/GothamPro-MediumItalic.woff2") format("woff2");
}
@font-face {
  font-family: "GothamPro";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/GothamPro-Bold.woff") format("woff"), url("../fonts/GothamPro-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "GothamPro";
  font-style: italic;
  font-weight: 700;
  src: url("../fonts/GothamPro-BoldItalic.woff") format("woff"), url("../fonts/GothamPro-BoldItalic.woff2") format("woff2");
}
@font-face {
  font-family: "GothamPro";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/GothamPro-Black.woff") format("woff"), url("../fonts/GothamPro-Black.woff2") format("woff2");
}
@font-face {
  font-family: "GothamPro";
  font-style: italic;
  font-weight: 900;
  src: url("../fonts/GothamPro-BlackItalic.woff") format("woff"), url("../fonts/GothamPro-BlackItalic.woff2") format("woff2");
}
/* == BASE RULES AND VARIABLES== */
*:focus {
  outline: none;
}

*:invalid {
  -webkit-box-shadow: none;
          box-shadow: none;
}

html {
  --bg: #F2F3F7;
  --night-bg: #21294F;
  --accent: #2B3359;
  --night-accent: #353D63;
  --text-secondary: #7E8299;
  --text-disabled: #B5B5C3;
  --night-text: #ffffff;
  --night-text-secondary: rgba(255,255,255,0.7);
  --night-text-disabled: rgba(255,255,255,0.5);
  --input-bg: #F7F8FC;
  --input-text: #5E6278;
  --border: #E8E9ED;
  --night-border: rgba(255, 255, 255, 0.1);
  scroll-behavior: smooth;
  scroll-padding-top: var(--h-height);
}

body {
  margin: 0 auto;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 320px;
  max-width: 1920px;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  font: normal normal 14px/1.5 GothamPro, sans-serif, sans-serif;
  background-color: var(--bg);
  color: var(--accent);
}

.theme-night body {
  color: var(--night-text);
  background-color: var(--night-bg);
}

/* == text elements == */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.5em;
  font-weight: 500;
  line-height: 1;
}

h1 {
  font-size: 24px;
  font-weight: 700;
}

h2 {
  font-size: 20px;
  font-weight: 700;
}

h3 {
  font-size: 16px;
}

h4 {
  font-size: 14px;
  letter-spacing: 0.25px;
}

h5 {
  font-size: 12px;
  font-weight: 400;
}

h6 {
  font-size: 10px;
  letter-spacing: 0.15px;
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
  margin-top: 0;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

ul, ol {
  margin: 0 0 22px;
}

ul {
  padding: 0;
  color: var(--text-secondary);
  list-style-position: inside;
  list-style-type: disc;
}

ol {
  padding: 0;
  color: var(--text-secondary);
  list-style-position: inside;
}

.theme-night ol {
  color: var(--night-text-secondary);
}

ol li:not(:last-child) {
  margin-bottom: 8px;
}

p {
  margin: 0 0 0.75em;
  line-height: 1.7;
  color: var(--text-secondary);
}

.theme-night p {
  color: var(--night-text-secondary);
}

p:last-child {
  margin-bottom: 0;
}

small {
  font-weight: 400;
}

strong {
  font-weight: 500;
}

a {
  color: #3699FF;
  -webkit-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  text-decoration: underline;
  color: #3699FF;
}

blockquote {
  padding: 20px;
  background-color: var(--input-bg);
  border-radius: 8px;
}

.theme-night blockquote {
  background-color: var(--night-bg);
}

blockquote h3 {
  margin-bottom: 12px;
}

blockquote p {
  font-style: italic;
}

blockquote p:not(:last-child) {
  margin-bottom: 11px;
}

/* == media elements == */
img, svg {
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
  vertical-align: middle;
  border-style: none;
}

img,
iframe,
video {
  max-width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

a img {
  border: none;
}

/* == decorative elements == */
.status {
  display: inline-block;
  vertical-align: middle;
  line-height: 26px;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: -0.02em;
  background: 0 !important;
  white-space: nowrap;
}

.status i {
  font-size: 14px;
  margin: 0 5px 0 0;
  vertical-align: -1px;
}

.color-gray {
  background-color: #F5F8FA;
  color: #A1A5B7;
  fill: #A1A5B7;
}

.color-darkgray {
  color: #707692;
  fill: #707692;
}

.color-violet {
  color: #D44EF6;
  fill: #D44EF6;
}

.color-lightblue {
  background-color: #EEF6FF;
  color: #3699FF;
  fill: #3699FF;
}

.color-blue {
  background-color: #E1E9FE;
  color: #366CF9;
  fill: #366CF9;
}

.color-purple {
  background-color: #EEE5FF;
  color: #8950FC;
  fill: #8950FC;
}

.color-green {
  background-color: #D7F9EF;
  color: #0BB783;
  fill: #0BB783;
}

.color-lime {
  background-color: #C9F7F5;
  color: #1BC5BD;
  fill: #1BC5BD;
}

.color-red {
  background-color: #FFE2E5;
  color: #F64E60;
  fill: #F64E60;
}

.color-orange {
  background-color: #FFF4DE;
  color: #FFA800;
  fill: #FFA800;
}

.color-yellow {
  background-color: #FFF8DF;
  color: #FFC700;
  fill: #FFC700;
}

.color-no-bg {
  background: 0;
}

.theme-night .color-gray {
  background-color: rgba(161, 165, 183, 0.2);
}

.theme-night .color-lightblue {
  background-color: rgba(54, 153, 255, 0.2);
}

.theme-night .color-blue {
  background-color: rgba(54, 108, 249, 0.2);
}

.theme-night .color-purple {
  background-color: rgba(137, 80, 252, 0.2);
}

.theme-night .color-green {
  background-color: rgba(11, 183, 131, 0.2);
}

.theme-night .color-lime {
  background-color: rgba(27, 197, 189, 0.2);
}

.theme-night .color-red {
  background-color: rgba(246, 78, 96, 0.2);
}

.theme-night .color-orange {
  background-color: rgba(255, 168, 0, 0.2);
}

.theme-night .color-yellow {
  background-color: rgba(255, 199, 0, 0.2);
}

.theme-night .color-no-bg {
  background: 0;
}

.online-status {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
}

.online-status-on {
  background-color: #50CD89;
}

.online-status-off {
  background-color: #E73762;
}

.profile-online-status {
  position: absolute;
  right: 5px;
  bottom: 5px;
}

.controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 0 -4px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.controls-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.controls-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.control {
  margin: 4px;
  width: 32px;
  height: 32px;
  text-align: center;
  background-color: #F3F6F9;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.control-auto {
  height: 42px;
  width: auto;
  margin: 0;
  padding: 0 15px;
}

.control-text {
  font-weight: 500;
  margin: 0 5px 0 0;
}

.control-auto .control-icon {
  width: 18px;
  height: 16px;
}

.theme-night .control {
  background-color: var(--night-accent);
}

.control:hover {
  background-color: #ecf1f6;
}

.theme-night .control:hover {
  background-color: #323A60;
}

.control-icon {
  width: 16px;
  height: 14px;
  fill: #3699FF;
}

.tooltip {
  width: 16px;
  height: 16px;
  margin: 0 0 0 10px;
  line-height: 16px;
  border-radius: 50%;
  background-color: rgba(0, 163, 255, 0.3);
  color: #00A3FF;
  font-size: 13px;
  text-align: center;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.tooltip-text {
  position: absolute;
  background-color: var(--night-text);
  border-radius: 8px;
  -webkit-filter: drop-shadow(0px 57px 77px rgba(26, 26, 38, 0.0209047)) drop-shadow(0px 17.1838px 23.2132px rgba(26, 26, 38, 0.03)) drop-shadow(0px 7.13728px 9.64159px rgba(26, 26, 38, 0.0390953)) drop-shadow(0px 2.58142px 3.48718px rgba(26, 26, 38, 0.06));
          filter: drop-shadow(0px 57px 77px rgba(26, 26, 38, 0.0209047)) drop-shadow(0px 17.1838px 23.2132px rgba(26, 26, 38, 0.03)) drop-shadow(0px 7.13728px 9.64159px rgba(26, 26, 38, 0.0390953)) drop-shadow(0px 2.58142px 3.48718px rgba(26, 26, 38, 0.06));
  width: 230px;
  padding: 15px;
  bottom: calc(100% + 10px);
  left: calc(100% - 129px);
  font-size: 12px;
  font-weight: 400;
  -webkit-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  display: block;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  color: var(--text-secondary);
  line-height: 1.42;
  text-align: left;
}

.tooltip-text-small {
  width: 120px;
  padding: 3px 5px;
  border-radius: 4px;
  -webkit-box-shadow: 2px 2px 2px rgba(21, 20, 31, 0.15);
          box-shadow: 2px 2px 2px rgba(21, 20, 31, 0.15);
  font-size: 11px;
  text-align: center;
  line-height: 1;
}

.tooltip-text-center {
  right: 50%;
  -webkit-transform: translateX(50%);
      -ms-transform: translateX(50%);
          transform: translateX(50%);
}

.theme-night .tooltip-text {
  background-color: var(--accent);
  -webkit-box-shadow: 0px 0px 8px rgba(3, 11, 49, 0.16), 0px 0px 64px rgba(3, 11, 49, 0.5);
          box-shadow: 0px 0px 8px rgba(3, 11, 49, 0.16), 0px 0px 64px rgba(3, 11, 49, 0.5);
}

.tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: calc(100% - 115px);
  border-width: 5px;
  border-style: solid;
  border-color: var(--night-text) transparent transparent transparent;
}

.tooltip-text-center::after {
  left: auto;
  right: 50%;
  -webkit-transform: translateX(50%);
      -ms-transform: translateX(50%);
          transform: translateX(50%);
}

.theme-night .tooltip-text::after {
  border-color: var(--accent) transparent transparent transparent;
}

.tooltip-modal {
  max-width: 280px;
  width: 100%;
  font-size: 12px;
  border-radius: 8px;
  padding: 15px 40px 15px 20px;
}

.theme-night .tooltip-modal {
  background-color: var(--accent);
}

.tooltip-wrapper {
  position: relative;
}

.notify {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 20px;
  border-radius: 6px;
  border: 1px dashed;
}

.notify-icon {
  width: 26px;
  height: 26px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0 10px 0 0;
}

.notify-text h3 {
  color: var(--accent);
}

.theme-night .notify-text h3 {
  color: var(--night-text);
}

.notify-text {
  margin: 0 0 4px;
  padding: 4px 0 0;
}

.notify-text p {
  line-height: 1.42;
}

.notify-link {
  font-weight: 500;
}

.notify-btn {
  margin: 10px 0 0;
}

.text-nowrap {
  white-space: nowrap;
}

/* == form elements == */
input, textarea, button, select {
  font: inherit;
  color: inherit;
}

input, textarea {
  outline: none;
}

input[type=search] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}
input[type=search]::-webkit-search-decoration, input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-results-button, input[type=search]::-webkit-search-results-decoration {
  display: none;
}

input[disabled] {
  opacity: 0.5;
  pointer-events: none;
}

input:-moz-placeholder {
  opacity: 1;
}

input::-moz-placeholder {
  opacity: 1;
}

input:focus:-moz-placeholder {
  opacity: 1;
}

input:focus::-moz-placeholder {
  opacity: 1;
}

input::-webkit-input-placeholder {
  color: var(--text-secondary);
  opacity: 1;
}

.theme-night input::-webkit-input-placeholder {
  color: var(--night-text-secondary);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

[type=text],
[type=email],
[type=tel],
[type=url],
[type=number],
[type=password],
[type=search] {
  padding: 0 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 42px;
  background-color: var(--input-bg);
  border: 1px solid var(--text-disabled);
  border-radius: 6px;
  color: var(--input-text);
  -webkit-transition: border-color 0.25s ease-out;
  -o-transition: border-color 0.25s ease-out;
  transition: border-color 0.25s ease-out;
}

.theme-night [type=text],
.theme-night [type=email],
.theme-night [type=tel],
.theme-night [type=url],
.theme-night [type=number],
.theme-night [type=password],
.theme-night [type=search] {
  background-color: var(--night-bg);
  border-color: transparent;
  color: var(--night-text-secondary);
}

[type=text]:focus,
[type=email]:focus,
[type=tel]:focus,
[type=url]:focus,
[type=number]:focus,
[type=password]:focus,
[type=search]:focus,
[type=search]:focus {
  border-color: var(--accent);
}

.theme-night [type=text]:focus,
.theme-night [type=email]:focus,
.theme-night [type=tel]:focus,
.theme-night [type=url]:focus,
.theme-night [type=number]:focus,
.theme-night [type=password]:focus,
.theme-night [type=search]:focus,
.theme-night [type=search]:focus {
  border-color: var(--night-text);
}

.field-icon {
  width: 20px;
  height: 20px;
  position: absolute;
  left: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  fill: var(--text-disabled);
}

.field-icon-right {
  left: auto;
  right: 16px;
}

[type=file] {
  display: none;
  opacity: 0;
  position: absolute;
}

.file-field {
  margin: 0 20px 0 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.file-field-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 40px;
  padding: 0 19px;
  text-align: center;
  background-color: #F1FAFF;
  border: 1px dashed #3699FF;
  -webkit-box-shadow: 0px 0px 20px rgba(76, 87, 125, 0.02);
          box-shadow: 0px 0px 20px rgba(76, 87, 125, 0.02);
  border-radius: 6px;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.file-field-text:hover {
  background-color: #d8f1ff;
}

.theme-night .file-field-text {
  background-color: var(--night-bg);
}

.theme-night .file-field-text:hover {
  background-color: var(--night-bg);
}

.file-field-icon {
  width: 22px;
  height: 18px;
  margin: 0 5px 0 0;
  fill: #3699FF;
}

.loaded-file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.loaded-file.is-loaded .btn-remove-file {
  opacity: 1;
  display: inline-block;
}

.loaded-file-name {
  margin: 0 10px 0 0;
  max-width: 250px;
  width: auto;
  line-height: 1.3;
  word-wrap: break-word;
}

.btn-remove-file {
  font-size: 16px;
  color: #F64E60;
  display: none;
}

.load-btn {
  margin: 0 10px;
}

.clipboard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.clipboard-auto {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.clipboard-input {
  height: auto;
  padding: 0;
  background: 0;
  border: 0;
  margin: 0 5px 0 0;
  font-size: 15px;
  pointer-events: none;
  outline: none;
}

.clipboard-address-name {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 4px;
}

.clipboard-address-value {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.clipboard-address-item p {
  margin: 0;
}

.clipboard-address-item {
  margin: 0 0 15px;
}

.clipboard-address-item:last-child {
  margin-bottom: 0;
}

.clipboard-address-btn {
  font-size: 17px;
  margin: 0 0 0 8px;
  vertical-align: 2px;
}

.checkbox {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.checkbox:not(:last-child) {
  margin-bottom: 20px;
}

.checkbox input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-block;
  margin: 0;
  padding: 0;
  border: none;
  width: 20px;
  height: 20px;
  position: relative;
  margin: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.checkbox input[type=checkbox]:not(:last-child) {
  margin: 0 8px 0 0;
}

.checkbox input[type=checkbox]::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--input-bg);
}

.theme-night .checkbox input[type=checkbox]::before {
  border-color: var(--night-border);
  background-color: var(--night-bg);
}

.checkbox input[type=checkbox]::after {
  content: "\e90f";
  font-family: icomoon;
  font-size: 9px;
  position: absolute;
  height: 100%;
  width: 100%;
  text-align: center;
  line-height: 20px;
  left: 0;
  top: 0;
  -webkit-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  color: #fff;
}

.checkbox input[type=checkbox]:checked::after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.checkbox input[type=checkbox]:checked:before {
  border-color: transparent;
  background-color: var(--accent);
}

.theme-night .checkbox input[type=checkbox]:checked:before {
  background-color: var(--night-accent);
}

.checkbox-content {
  padding: 0 0 0 8px;
}

.checkbox-title {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 6px;
}

.theme-night .checkbox-title {
  color: var(--night-text);
}

.checkbox-text {
  color: var(--text-disabled);
}

.checkbox-option {
  background: 0;
  position: relative;
  padding: 0 0 0 30px;
  font-size: 12px;
}

.theme-night .checkbox-option {
  background: 0;
}

.checkbox-option:nth-child(2) {
  display: none;
}

.checkbox-options.is-active .checkbox-option:nth-child(2) {
  display: block;
}

.checkbox-options.is-active .checkbox-option:nth-child(1) {
  display: none;
}

.checkbox-option-icon {
  width: 20px;
  height: 20px;
  margin: 0 13px 0 0;
  position: absolute;
  left: 0;
  top: 2px;
}

.radiobox {
  cursor: pointer;
  position: relative;
}

.radiobox-title {
  font-size: 14px;
  font-weight: 500;
  display: block;
  margin: 0 0 8px;
}

.radiobox-text p {
  line-height: 1.42;
}

.radiobox-text a {
  position: relative;
  z-index: 1;
}

.radiobox input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-block;
  margin: 0;
  padding: 0;
  border: none;
  width: 16px;
  height: 16px;
  position: relative;
  margin: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  position: absolute;
  left: 20px;
  top: 20px;
}

.radiobox input[type=radio]::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--border);
}

.theme-night .radiobox input[type=radio]::before {
  border-color: var(--night-border);
}

.radiobox input[type=radio]::after {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  right: 50%;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
      -ms-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  background-color: var(--accent);
  -webkit-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.theme-night .radiobox input[type=radio]::after {
  background-color: var(--night-text);
}

.radiobox input[type=radio]:checked::after {
  -webkit-transform: translate(50%, -50%) scale(1);
      -ms-transform: translate(50%, -50%) scale(1);
          transform: translate(50%, -50%) scale(1);
}

.radiobox input[type=radio]:checked::before {
  border-color: var(--accent);
}

.theme-night .radiobox input[type=radio]:checked::before {
  border-color: var(--night-text);
}

.radiobutton {
  margin: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 2px solid transparent;
  position: relative;
  cursor: pointer;
  font-size: 16px;
}

.radiobutton-text {
  font-weight: 500;
  color: var(--text-disabled);
  position: relative;
  padding: 0 0 3px;
}

.radiobutton input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-block;
  margin: 0;
  padding: 0;
  border: none;
  position: relative;
  margin: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  opacity: 0;
  position: absolute;
}

.radiobutton .radiobutton-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #3699FF;
  opacity: 0;
}

.radiobutton input[type=radio]:checked ~ .radiobutton-text {
  color: #3699FF;
}

.radiobutton input[type=radio]:checked ~ .radiobutton-text:after {
  opacity: 1;
}

.cardbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  margin: 0;
  margin: 0 20px 40px;
  padding: 24px 30px 24px 50px;
  border-radius: 6px;
  width: calc(50% - 40px);
  font-weight: 500;
  position: relative;
}

.cardbox input[type=radio] {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.cardbox-content::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: 1px dashed var(--border);
  border-radius: 6px;
  -webkit-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.theme-night .cardbox-content::after {
  border-color: var(--night-border);
}

.cardbox input[type=radio]:checked ~ .cardbox-content::after {
  border-color: var(--accent);
  border-style: solid;
}

.theme-night .cardbox input[type=radio]:checked ~ .cardbox-content::after {
  border-color: var(--night-text);
}

.cardbox-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 15px;
  min-height: 26px;
}

.cardbox-status {
  opacity: 0;
}

.cardbox input[type=radio]:checked ~ .cardbox-content .cardbox-status {
  opacity: 1;
}

.cardbox-holder {
  font-size: 18px;
  margin: 0 10px 0 0;
}

.cardbox-content {
  display: block;
  width: 100%;
}

.cardbox-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.cardbox-image {
  width: 80px;
  height: 48px;
  padding: 10px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--input-bg);
  border-radius: 6px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0 15px 0 0;
}

.theme-night .cardbox-image {
  background-color: var(--night-bg);
}

.cardbox-image img {
  width: auto;
  height: auto;
  max-height: 100%;
}

.cardbox-text p {
  font-weight: 400;
}

.cardbox-name {
  font-size: 16px;
  display: block;
  margin: 0 0 6px;
}

.cardbox-text {
  width: 320px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.cardbox-text p {
  line-height: 1.42;
}

.cardbox-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -5px 0 auto;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.cardbox-btn {
  margin: 5px;
  position: relative;
  z-index: 1;
}

.addressbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  margin: 0 0 10px;
  padding: 20px;
  border-radius: 6px;
  width: 100%;
  position: relative;
}

.addressbox:last-child {
  margin-bottom: 20px;
}

.addressbox input[type=radio] {
  display: none;
  opacity: 0;
  position: absolute;
}

.addressbox-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
}

.addressbox-title {
  font-size: 16px;
  font-weight: 500;
}

.addressbox-text {
  display: block;
  max-width: 485px;
  width: 100%;
}

.addressbox-text p {
  color: var(--accent);
  line-height: 1.42;
}

.theme-night .addressbox-text p {
  color: var(--night-text);
}

.addressbox-title {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 6px;
}

.addressbox-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -5px 0 auto;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.addressbox-btn {
  margin: 5px;
}

.addressbox-content::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: 2px solid var(--border);
  border-radius: 6px;
  -webkit-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.addressbox input[type=radio]:checked ~ .addressbox-content::after {
  border-color: #3699FF;
}

.theme-night .addressbox-content::after {
  border-color: var(--night-border);
}

.addressbox-btn {
  position: relative;
  z-index: 1;
}

.radiobox-text {
  display: block;
  padding: 17px 20px 20px 50px;
}

.radiobox-text::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  -webkit-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.radiobox input[type=radio]:checked ~ .radiobox-text::after {
  border-color: var(--accent);
}

.theme-night .radiobox-text::after {
  border-color: var(--night-border);
}

.theme-night .radiobox input[type=radio]:checked ~ .radiobox-text::after {
  border-color: var(--night-text);
}

.field-name {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.field-name em {
  color: #FF4B55;
}

.field-name-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.field-name-flex a {
  color: var(--accent);
  font-weight: 400;
}

.field-wrapper {
  position: relative;
}

.field-wrapper input {
  padding-right: 50px;
}

.field-errors {
  font-size: 12px;
  font-weight: normal;
  margin: 5px 0 0;
  line-height: 1;
  color: #F64E60;
}

.field-info {
  font-size: 12px;
  font-weight: normal;
  margin: 5px 0 0;
  line-height: 1;
  color: var(--text-secondary);
}

.theme-night .field-info {
  color: var(--night-text-secondary);
}

.field-description {
  color: var(--text-disabled);
  font-size: 12px;
  font-weight: normal;
  margin: 5px 0 0;
}

textarea {
  resize: none;
  overflow: auto;
  width: 100%;
  height: 100px;
  padding: 11px 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: var(--input-bg);
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--input-text);
  -webkit-transition: border-color 0.25s ease-out;
  -o-transition: border-color 0.25s ease-out;
  transition: border-color 0.25s ease-out;
}

.theme-night textarea {
  background-color: var(--night-bg);
  color: var(--night-text-secondary);
}

textarea:focus {
  border-color: var(--accent);
}

.theme-night textarea:focus {
  border-color: var(--night-text);
}

textarea::-moz-placeholder {
  color: var(--text-secondary);
  opacity: 1;
}

textarea:-ms-input-placeholder {
  color: var(--text-secondary);
  opacity: 1;
}

.theme-night textarea::-webkit-input-placeholder {
  color: var(--night-text-secondary);
}

.theme-night textarea::-moz-placeholder {
  color: var(--night-text-secondary);
}

.theme-night textarea:-ms-input-placeholder {
  color: var(--night-text-secondary);
}

.theme-night textarea::-ms-input-placeholder {
  color: var(--night-text-secondary);
}

.theme-night textarea::placeholder {
  color: var(--night-text-secondary);
}

.theme-night textarea::-webkit-input-placeholder {
  color: var(--night-text-secondary);
}

.theme-night textarea::-moz-placeholder {
  color: var(--night-text-secondary);
}

.theme-night textarea:-ms-input-placeholder {
  color: var(--night-text-secondary);
}

.theme-night textarea::-ms-input-placeholder {
  color: var(--night-text-secondary);
}

.theme-night textarea::placeholder {
  color: var(--night-text-secondary);
}

.theme-night textarea::-webkit-input-placeholder {
  color: var(--night-text-secondary);
}

select::-ms-expand {
  display: none;
}

.select {
  position: relative;
  width: 100%;
  min-width: 90px;
  text-align: left;
}

.currency-select {
  width: 90px;
  font-weight: 500;
}

.phone-select {
  width: 180px;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.select-field {
  position: absolute;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  border: 0;
  width: 100%;
  height: 100%;
}

.select-field option {
  background-color: #fff;
}

.theme-night .select-field {
  color: var(--accent);
}

.select-output {
  height: 42px;
  line-height: 42px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 42px;
  background-color: var(--input-bg);
  border: 1px solid var(--text-disabled);
  border-radius: 6px;
  color: var(--input-text);
  -webkit-transition: border-color 0.25s ease-out;
  -o-transition: border-color 0.25s ease-out;
  transition: border-color 0.25s ease-out;
  padding: 0 35px 0 16px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

.select-output::after {
  content: "\e904";
  font-family: icomoon;
  font-size: 11px;
  position: absolute;
  right: 16px;
  top: 17px;
  line-height: 1;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.select-open .select-output::after {
  -webkit-transform: scale(-1);
      -ms-transform: scale(-1);
          transform: scale(-1);
}

.select-open .select-output {
  border-color: var(--accent);
}

.theme-night .select-open .select-output {
  border-color: var(--night-text);
}

.form-group .select:last-child .select-output {
  text-align: right;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.form-group .select:first-child .select-output {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.currency-select .select-output {
  color: var(--accent);
}

.theme-night .select-output {
  background-color: var(--night-bg);
  color: var(--night-text-secondary);
  border-color: transparent;
}

.theme-night .currency-select .select-output {
  color: var(--night-text);
}

.select-no-border .select-output {
  border: 0;
  height: 30px;
  line-height: 30px;
  padding: 0 30px 0 10px;
  background-color: transparent;
}

.select-no-border .select-output::after {
  top: 12px;
  font-size: 8px;
}

.select-no-border .select-list {
  top: 100%;
}

.select-list {
  position: absolute;
  padding: 8px 0;
  top: calc(100% + 6px);
  background-color: var(--night-text);
  -webkit-box-shadow: 0px 57px 77px rgba(26, 26, 38, 0.0209047), 0px 17.1838px 23.2132px rgba(26, 26, 38, 0.03), 0px 7.13728px 9.64159px rgba(26, 26, 38, 0.0390953), 0px 2.58142px 3.48718px rgba(26, 26, 38, 0.06);
          box-shadow: 0px 57px 77px rgba(26, 26, 38, 0.0209047), 0px 17.1838px 23.2132px rgba(26, 26, 38, 0.03), 0px 7.13728px 9.64159px rgba(26, 26, 38, 0.0390953), 0px 2.58142px 3.48718px rgba(26, 26, 38, 0.06);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 400;
  width: 100%;
  padding: 0;
  color: var(--accent);
  line-height: 1;
  max-height: 200px;
  min-height: 55px;
  overflow-y: auto;
  scrollbar-color: var(--accent) transparent;
  scrollbar-width: thin;
  display: none;
  z-index: 70;
  margin: 0;
  list-style-type: none;
}

.select-list-flags li img {
  width: 26px;
  height: auto;
  margin: 0 10px 0 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  vertical-align: -5px;
}

.select-output-flags > img {
  width: 26px;
  height: auto;
  margin: 0 10px 0 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  vertical-align: -5px;
}

.theme-night .select-list {
  background-color: var(--accent);
  scrollbar-color: var(--night-accent) transparent;
  -webkit-box-shadow: 0px 0px 8px rgba(3, 11, 49, 0.16), 0px 0px 64px rgba(3, 11, 49, 0.5);
          box-shadow: 0px 0px 8px rgba(3, 11, 49, 0.16), 0px 0px 64px rgba(3, 11, 49, 0.5);
  color: var(--night-text-disabled);
}

.currency-select .select-list {
  font-size: 14px;
  text-align: right;
}

.select-open .select-list {
  display: block;
}

.select-top .select-list {
  top: auto;
  bottom: calc(100% + 5px);
}

.select-auto {
  width: auto;
  min-width: 1px;
}

.select-auto .select-list {
  width: auto;
}

.select-list::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background: transparent no-repeat center/auto 4px;
}

.select-list::-webkit-scrollbar-thumb {
  background-color: var(--accent);
}

.theme-night .select-list::-webkit-scrollbar-thumb {
  background-color: var(--night-accent);
}

.select-list li {
  padding: 10px 16px;
  cursor: pointer;
  -webkit-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.select-list li:not(.selected):hover {
  background-color: var(--input-bg);
}

.select-list li.selected {
  background-color: var(--accent);
  color: var(--night-text);
  font-weight: 500;
}

.theme-night .select-list li:not(.selected):hover {
  background-color: var(--night-accent);
}

.theme-night .select-list li.selected {
  background-color: var(--night-bg);
  color: var(--night-text);
}

label {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.form-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 -10px;
}

.form-column {
  width: calc(50% - 20px);
  margin: 0 10px;
}

.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -10px;
}

.form-row-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.form-row-nowrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: calc(50% + 10px);
}

.filter-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 -10px;
}

.filter-toggler {
  font-size: 18px;
  font-weight: 700;
  position: relative;
  margin: 0 0 20px;
  padding: 0 35px 0 0;
  cursor: pointer;
  display: none;
}

.filter-toggler::after {
  content: "\e904";
  font-family: icomoon;
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  right: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.filter-toggler.is-active::after {
  -webkit-transform: translateY(-50%) scale(-1);
      -ms-transform: translateY(-50%) scale(-1);
          transform: translateY(-50%) scale(-1);
}

.form-item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 24px;
}

.form-item-wrap > .form-item {
  margin: 0 10px;
}

.form-item-wrap > .field-info,
.form-item-wrap > .field-error {
  margin: 5px 10px 0;
}

.form-item > p {
  line-height: 1.4;
}

.form-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin: 0 10px 24px;
  position: relative;
  width: 223px;
}

.form-item-basis {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}

.form-item-half {
  width: calc(50% - 20px);
}

.form-item-third {
  width: calc(33.3333333333% - 20px);
}

.form-item-quarter {
  width: calc(25% - 20px);
}

.form-item-five {
  width: calc(20% - 20px);
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  min-width: 119px;
}

.form-item-auto {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.form-item-disabled {
  pointer-events: none;
  opacity: 0.7;
}

.form-item-error .field {
  border-color: #FF4B55;
}

.theme-night .form-item-error .field:focus {
  border-color: #FF4B55;
}

.form-item-small {
  width: 100px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}

.form-item-image {
  background-repeat: no-repeat;
  background-position: right top;
  background-size: clamp(30px, 130px, 33%);
}

.form-item-load {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-item-load:not(:last-child) {
  margin-bottom: 20px;
}

.form-item-icon input {
  padding-left: 50px;
}

.form-item-controls {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 22px;
  line-height: 1;
}

.form-item-action > input {
  padding-right: calc(20px + var(--controls-count, 0) * 27px);
}

.form-item-control {
  margin: 0 5px;
}

.form-item-control.icon-view.is-active::before {
  content: "\e92a";
}

.form-block {
  border-bottom: 1px solid var(--border);
  margin: 0 0 24px;
}

.form-block ~ .form-drop-list {
  margin-top: -24px;
}

.form-block > h3 {
  font-size: 18px;
  margin: 0 0 18px;
}

.form-block-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 16px;
}

.form-block-head > h3 {
  font-size: 18px;
  margin: 0 auto 0 0;
}

.form-hidden-content {
  display: none;
}

.form-text {
  padding-bottom: 24px;
}

.form-text > h3 {
  font-size: 18px;
}

.form-drop-list {
  color: var(--accent);
  margin: 0 0 24px;
  padding: 0;
  list-style-type: none;
}

.theme-night .form-drop-list {
  color: var(--night-text);
}

.form-drop {
  border-bottom: 1px solid var(--border);
}

.theme-night .form-drop {
  border-color: var(--night-border);
}

.form-drop-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 24px 60px 24px 0;
  cursor: pointer;
  position: relative;
}

.form-drop-head::after {
  content: "\e904";
  font-family: icomoon;
  font-size: 20px;
  position: absolute;
  right: 0;
  top: 50%;
  line-height: 1;
  color: #3699FF;
  -webkit-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.form-drop-head.is-active::after {
  -webkit-transform: translateY(-50%) scale(-1);
      -ms-transform: translateY(-50%) scale(-1);
          transform: translateY(-50%) scale(-1);
}

.form-drop-content {
  padding-bottom: 24px;
  display: none;
}

.form-drop-content > h2 {
  margin: 0 0 24px;
}

.form-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.form-controls-centered {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.form-navigation {
  font-size: 16px;
  font-weight: 500;
  margin: 0 auto 0 0;
}

.form-buttons:not(:empty) {
  margin-bottom: -20px;
}

.theme-night .form-block {
  border-color: var(--night-border);
}

.filter-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin: 0 10px 20px;
  position: relative;
}

.statistics-filter {
  margin: 0 0 0 auto;
  width: 240px;
}

.statistics-filter .filter-item {
  margin: 0 10px;
}

.filter-item-third {
  width: calc(33.3333333333% - 20px);
}

.filter-item-quarter {
  width: calc(25% - 20px);
}

.filter-item-icon input {
  padding-left: 50px;
}

.form-btn {
  margin: 0 10px 24px;
}

.form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 0 15px;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-group input:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.form-group input:not(:focus):first-child {
  border-right: 1px solid var(--border);
}

.form-group input:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.form-group input:not(:focus):last-child {
  border-left: 1px solid var(--border);
}

.theme-night .form-group input:not(:focus):first-child {
  border-right: 1px solid var(--night-border);
}

.theme-night .form-group input:not(:focus):last-child {
  border-left: 1px solid var(--night-border);
}

button {
  cursor: pointer;
  background: 0;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
  -webkit-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

.btn {
  padding: 0 18px;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  max-width: 100%;
  min-width: 105px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
  font-weight: 500;
  line-height: 40px;
  border: 1px solid transparent;
  border-radius: 6px;
  white-space: nowrap;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.btn-half {
  width: calc(50% - 20px);
  margin: 0 10px;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-medium {
  line-height: 32px;
  font-size: 12px;
}

.btn-square {
  min-width: 42px;
  padding: 0 5px;
}

.btn-pic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btn-icon {
  width: 16px;
  max-height: 16px;
  fill: var(--night-text);
}

.btn-icon-accent {
  fill: var(--accent);
}

.theme-night .btn-icon-accent {
  fill: var(--night-text);
}

.btn-pic .btn-icon:first-child {
  margin: 0 8px 0 0;
}

.btn-pic .btn-icon:last-child {
  margin: 0 0 0 8px;
}

.btn:hover {
  text-decoration: none;
}

.btn[disabled] {
  opacity: 0.7;
  pointer-events: none;
}

.btn-accent {
  background-color: #2B3359;
  color: #ffffff;
}

.btn-accent:hover {
  background-color: #21294F;
  color: #ffffff;
}

.btn-gray {
  background-color: #F2F3F7;
  border-color: var(--border);
  color: #A1A5B7;
}

.btn-gray:hover {
  background-color: #ecedf3;
  color: #A1A5B7;
}

.btn-green {
  background-color: #1DC894;
  color: #ffffff;
}

.btn-green:hover {
  background-color: #0BB783;
  color: #ffffff;
}

.btn-pink {
  background-color: #F1416C;
  color: #ffffff;
}

.btn-pink:hover {
  background-color: #E73762;
  color: #ffffff;
}

.btn-pinklight {
  background-color: #FFF5F8;
  color: #F1416C;
}

.btn-pinklight:hover {
  background-color: rgba(241, 65, 108, 0.15);
  color: #F1416C;
}

.theme-night .btn-accent {
  background-color: var(--night-accent);
}

.theme-night .btn-accent:hover {
  background-color: #323A60;
}

.theme-night .btn-gray {
  background-color: #283056;
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--night-text-disabled);
}

.theme-night .btn-gray:hover {
  background-color: #283056;
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--night-text-secondary);
}

.theme-night .btn-pinklight {
  background-color: rgba(241, 65, 108, 0.2);
}

.theme-night .btn-pinklight:hover {
  background-color: rgba(241, 65, 108, 0.4);
}

.socials-block > h4 {
  margin: 0 0 15px;
}

.social-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -5px;
}

.social-buttons:not(:empty) {
  margin-bottom: -10px;
}

.social-btn {
  color: var(--night-text);
  margin: 0 5px 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: calc(33.3333333333% - 10px);
}

.social-btn:hover {
  color: var(--night-text);
}

.social-btn-whatsapp {
  background: #00D95F;
}

.social-btn-telegram {
  background: #34AADF;
}

.social-btn-facebook {
  background: #337FFF;
}

.social-btn .btn-icon {
  margin: 0 5px 0 0;
}

.social-btn-whatsapp .btn-icon {
  width: 23px;
  max-height: 20px;
}

.social-btn-telegram .btn-icon {
  width: 19px;
  max-height: 19px;
}

.social-btn-facebook .btn-icon {
  width: 22px;
  max-height: 22px;
  vertical-align: -4px;
  margin: 0 2px 0 0;
}

.tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -20px 0 0;
  overflow-x: auto;
  scrollbar-color: var(--accent) #F2F3F7;
  scrollbar-width: thin;
  line-height: 1;
  font-size: 16px;
  font-weight: 500;
}

.tabs::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background: -webkit-gradient(linear, left top, left bottom, from(#F2F3F7), to(#F2F3F7)) no-repeat center/auto 4px;
  background: linear-gradient(#F2F3F7, #F2F3F7) no-repeat center/auto 4px;
  border-radius: 4px;
}

.tabs::-webkit-scrollbar-thumb {
  background-color: var(--accent);
  border-radius: 4px;
}

.tab {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  margin: 0 20px 0 0;
  padding: 0 0 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  border-bottom: 2px solid transparent;
  -webkit-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  white-space: nowrap;
  color: var(--text-disabled);
}

.theme-night .tab {
  color: var(--night-text-disabled);
}

.tab.is-active {
  border-color: #3699FF;
  color: #3699FF;
}

.theme-night .tab.is-active {
  border-color: var(--night-text);
  color: var(--night-text);
}

.tab-content {
  display: none;
}

.is-overflow-off {
  overflow: hidden;
}

.navigation {
  font-size: 11px;
  line-height: 1.2;
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 20px;
  overflow-x: auto;
  scrollbar-color: transparent transparent;
}

.navigation::-webkit-scrollbar {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)) no-repeat center/auto 2px;
  background: linear-gradient(transparent, transparent) no-repeat center/auto 2px;
}

.navigation::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 0;
}

.navigation a {
  color: var(--text-disabled);
  text-decoration: none;
}

.navigation li {
  display: inline-block;
  padding-left: 0;
  margin-bottom: 0;
  color: var(--accent);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.theme-night .navigation li {
  color: var(--night-text);
}

.navigation li::before {
  width: auto;
  height: auto;
  background: 0;
  margin: 0;
  position: static;
  display: none;
}

.navigation li:not(:last-child) {
  margin-bottom: 0;
}

.navigation li:last-child {
  padding-right: 15px;
}

.navigation li + li::before {
  display: inline-block;
  padding: 0 0.5rem;
  content: "/";
  vertical-align: -1px;
}

.drop-block {
  margin: 0 0 35px;
}

.drop-block:last-child {
  margin-bottom: 0;
}

.drop-block h3 {
  font-size: 18px;
  margin: 0 0 24px;
}

.drop-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.drop-head {
  padding: 16px 38px;
  cursor: pointer;
  position: relative;
  border-top: 1px dashed #E4E6EF;
  border-bottom: 1px dashed #E4E6EF;
}

.theme-night .drop-head {
  border-color: var(--night-border);
}

.drop:last-child .drop-head {
  border-bottom-color: transparent;
}

.drop-head::before {
  content: "\e912";
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 6px;
  background-color: rgba(181, 181, 195, 0.25);
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: icomoon;
  font-size: 10px;
  text-align: center;
  -webkit-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  color: var(--text-disabled);
}

.drop-head.is-active::before {
  content: "\e918";
  background-color: rgba(54, 153, 255, 0.25);
  color: #3699FF;
}

.drop-head.is-active {
  border-bottom-color: transparent;
}

.drop-head h4 {
  font-size: 16px;
  line-height: 1.3;
  color: var(--accent);
}

.theme-night .drop-head h4 {
  color: var(--night-text);
}

.drop-content {
  padding: 0 38px 16px;
  display: none;
}

/* == table elements == */
table {
  width: 100%;
}

table p {
  line-height: 1.45;
  color: var(--accent);
  margin: 0 0 5px;
}

.theme-night table p {
  color: var(--night-text);
}

th {
  height: 60px;
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  padding: 5px 16px 5px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
  color: var(--text-disabled);
  font-weight: 500;
}

th:last-child {
  text-align: right;
  padding-right: 4px;
}

td {
  height: 64px;
  border-bottom: 1px solid var(--border);
  padding: 5px 16px 5px 0;
}

td:last-child {
  text-align: right;
  padding-right: 0;
}

.theme-night th {
  border-color: var(--night-border);
  color: var(--night-text-disabled);
}

.theme-night td {
  border-color: var(--night-border);
}

.table-small td:last-child {
  padding-right: 0;
}

.table-wrapper:last-child tr:last-child td {
  border-bottom: 0 solid #000;
  padding-bottom: 0;
}

.table-wrapper {
  overflow-x: auto;
  scrollbar-color: var(--accent) #F2F3F7;
  scrollbar-width: thin;
  position: relative;
  z-index: 1;
}

.table-wrapper::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background: -webkit-gradient(linear, left top, left bottom, from(#F2F3F7), to(#F2F3F7)) no-repeat center/auto 4px;
  background: linear-gradient(#F2F3F7, #F2F3F7) no-repeat center/auto 4px;
  border-radius: 4px;
}

.table-wrapper::-webkit-scrollbar-thumb {
  background-color: var(--accent);
  border-radius: 4px;
}

.theme-night .table-wrapper {
  scrollbar-color: #6B708B rgba(255, 255, 255, 0.08);
}

.theme-night .table-wrapper::-webkit-scrollbar {
  background: rgba(255, 255, 255, 0.08);
}

.theme-night .table-wrapper::-webkit-scrollbar-thumb {
  background-color: #6B708B;
}

.cell-sort {
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.cell-sort::after {
  content: "\e904";
  font-family: icomoon;
  font-size: 9px;
  margin: 0 0 0 10px;
}

.cell-sort.is-active::after {
  content: "\e900";
}

.cell-sort.is-active {
  color: #3699FF;
}

.table-small {
  font-size: 12px;
}

.table-small td {
  padding: 10px 15px 10px 0;
}

.unstyled-table table {
  border: none;
  font-weight: 400;
}

.unstyled-table td {
  padding: 0 20px 0 0;
  border: 0;
  height: auto;
}

.unstyled-table th {
  padding: 0 20px 0 0;
  bottom: 0;
  height: auto;
}

tr.expandable {
  cursor: pointer;
}

tr.expandable td {
  -webkit-transition: background-color 0.25s ease-out;
  -o-transition: background-color 0.25s ease-out;
  transition: background-color 0.25s ease-out;
}

tr.expandable:not(.is-open):hover td {
  background-color: var(--input-bg);
}

.theme-night tr.expandable:not(.is-open):hover td {
  background-color: var(--night-bg);
}

tr.expandable.is-open td {
  padding-top: 15px;
  padding-bottom: 15px;
  vertical-align: top;
}

tr.expandable:not(.is-open) td > p {
  margin-bottom: 0;
}

.expand-group:not(:last-child) {
  margin-bottom: 30px;
}

.expand-group p {
  margin-bottom: 5px;
}

.expand {
  display: none;
}

tr.expandable.is-open .expand {
  display: block;
}

tr.expandable.is-open .not-expand {
  display: none;
}

.date span {
  display: block;
  font-weight: 400;
  color: var(--text-disabled);
}

.theme-night .date span {
  color: var(--night-text-disabled);
}

/*~ skeleton ~*/
.container {
  max-width: 100%;
  padding: 0 40px;
  margin: 0 auto;
  width: 100%;
}

.box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -20px;
}

.box-small {
  margin: 0 -10px;
}

.box-extra-small {
  margin: 0 -5px;
}

.box-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-left: auto;
}

/*~ header ~*/
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--accent);
  -webkit-box-shadow: 0px 57px 77px rgba(26, 26, 38, 0.0209047), 0px 17.1838px 23.2132px rgba(26, 26, 38, 0.03), 0px 7.13728px 9.64159px rgba(26, 26, 38, 0.0390953), 0px 2.58142px 3.48718px rgba(26, 26, 38, 0.06);
          box-shadow: 0px 57px 77px rgba(26, 26, 38, 0.0209047), 0px 17.1838px 23.2132px rgba(26, 26, 38, 0.03), 0px 7.13728px 9.64159px rgba(26, 26, 38, 0.0390953), 0px 2.58142px 3.48718px rgba(26, 26, 38, 0.06);
  padding: 20px 0;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  color: var(--night-text);
  z-index: 5;
  min-height: 88px;
}

.header-container {
  padding: 0 40px 0 134px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.mobile-menu-btn {
  margin: 0 auto 0 0;
  cursor: pointer;
  font-size: 22px;
  vertical-align: middle;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.mobile-menu-btn.is-active {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin: 0 0 0 15px;
}

.mobile-menu-btn::before {
  display: inline-block;
}

.mobile-menu-btn.is-active::before {
  content: "\e912";
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  font-size: 24px;
}

.external-links {
  margin: 0 auto 0 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-weight: 500;
}

.external-links {
  display: none;
}

.external-link {
  margin: 5px 30px 5px 0;
  color: var(--night-text-disabled);
}

.external-link-green {
  color: #0BB783;
}

.external-link:hover {
  color: var(--night-text);
  text-decoration: none;
}

.external-link-green:hover {
  color: #0BB783;
}

.balance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 32px;
  margin: 0 14px 0 0;
}

.balance-value {
  margin: 0 5px 0 0;
}

.balance-currency {
  font-size: 20px;
  color: var(--text-disabled);
}

.tools {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  font-weight: 500;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0 14px 0 0;
}

.tools-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 8px;
  position: relative;
  padding: 0 4px;
  margin: 0 2px;
  cursor: pointer;
}

.tools-item-counter {
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 18px;
  line-height: 18px;
  font-size: 10px;
  font-weight: 500;
  text-align: center;
  background-color: var(--night-text);
  border-radius: 50%;
  color: var(--accent);
  position: absolute;
  right: -4px;
  top: -4px;
}

.tools-link {
  display: inline-block;
  vertical-align: middle;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.tools-item-icon {
  height: 21px;
  width: 21px;
  fill: var(--night-text);
}

.js-theme-switcher {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.theme-icon {
  display: none;
}

.theme-icon.is-active {
  display: inline-block;
}

.tools-drop {
  position: absolute;
  padding: 8px;
  top: calc(100% + 12px);
  min-width: 94px;
  max-width: 210px;
  max-height: 310px;
  border-radius: 4px;
  background-color: var(--accent);
  -webkit-box-shadow: 0px 0px 8px rgba(3, 11, 49, 0.16), 0px 0px 64px rgba(3, 11, 49, 0.5);
          box-shadow: 0px 0px 8px rgba(3, 11, 49, 0.16), 0px 0px 64px rgba(3, 11, 49, 0.5);
  line-height: 1.1;
  text-align: left;
  white-space: nowrap;
  display: none;
  right: 0;
}

.tools-drop-large {
  max-width: 320px;
  width: 320px;
}

.tools-drop-bottom {
  top: auto;
  bottom: calc(100% + 12px);
}

.notifications {
  padding: 0 5px 5px;
}

.notification {
  padding: 10px 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid var(--night-border);
}

.notifications-btn {
  margin-top: 12px;
}

.notification-icon {
  width: 17px;
  height: 17px;
  fill: var(--night-text);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0 12px 0 0;
}

.notification-status {
  margin-left: auto;
}

.tools-text {
  padding: 5px 6px;
  min-width: 200px;
  white-space: normal;
}

.language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.language-icon {
  width: 24px;
  height: 18px;
  line-height: 18px;
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0 10px 0 0;
  border-radius: 3px;
  overflow: hidden;
  text-align: center;
}

.language-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.notification-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.currency {
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.currency i {
  font-size: 12px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0 7px 0 0;
}

.tools-drop-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  color: var(--night-text-disabled);
  -webkit-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.tools-drop-item:hover {
  color: var(--night-text-secondary);
}

.tools-drop-item.is-selected {
  background-color: var(--night-accent);
  color: var(--night-text);
}

.tools-drop-item:not(:last-child) {
  margin-bottom: 4px;
}

.language-selected {
  font-size: 14px;
  text-transform: inherit;
  font-weight: 500;
}

.currency-selected {
  font-size: 14px;
  text-transform: inherit;
  font-weight: 500;
  padding: 0 8px;
}

.currency-selected-unit {
  margin: 0 3px 0 0;
  vertical-align: middle;
  line-height: 1;
}

.account {
  font-size: 12px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  cursor: pointer;
  position: relative;
}

.account-info {
  text-align: right;
  margin: 0 15px 0 0;
}

.account-name {
  color: var(--night-text-disabled);
}

.account-image {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.08);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.account-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: relative;
  z-index: 1;
}

.account-image::after {
  content: "?";
  font-size: 20px;
  position: absolute;
  right: 50%;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
      -ms-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}

.account-drop {
  position: absolute;
  padding: 8px 0;
  right: 0;
  top: calc(100% + 12px);
  min-width: 200px;
  border-radius: 4px;
  background-color: var(--accent);
  -webkit-box-shadow: 0px 0px 8px rgba(3, 11, 49, 0.16), 0px 0px 64px rgba(3, 11, 49, 0.5);
          box-shadow: 0px 0px 8px rgba(3, 11, 49, 0.16), 0px 0px 64px rgba(3, 11, 49, 0.5);
  line-height: 1.1;
  text-align: left;
  cursor: auto;
  display: none;
}

.account-drop-item {
  position: relative;
}

.account-drop-item:not(:last-child) {
  margin-bottom: 4px;
}

.account-drop-item:nth-child(even)::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  display: block;
  position: absolute;
  left: 0;
  bottom: -8px;
}

.account-drop-item:nth-child(even) {
  margin-bottom: 8px;
}

.account-drop-link {
  color: var(--night-text);
  display: block;
  padding: 8px 32px;
}

.account-drop-link:hover {
  text-decoration: none;
  color: var(--night-text-secondary);
}

.account-drop-item:last-child .account-drop-link:hover {
  color: #F1416C;
}

/*main*/
.main,
main {
  padding: 88px 0 0 94px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  height: 100vh;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.scrollable-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  height: 100%;
  overflow: auto;
  scrollbar-color: var(--accent) transparent;
  scrollbar-width: thin;
}

.scrollable-wrapper::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background: transparent;
}

.scrollable-wrapper::-webkit-scrollbar-thumb {
  background-color: var(--accent);
}

.theme-night .scrollable-wrapper {
  scrollbar-color: var(--night-accent) transparent;
}

.theme-night .scrollable-wrapper::-webkit-scrollbar-thumb {
  background-color: var(--night-accent);
}

/*~ sidebar ~*/
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  background-color: var(--accent);
  -webkit-box-shadow: 0px 57px 77px rgba(26, 26, 38, 0.0209047), 0px 17.1838px 23.2132px rgba(26, 26, 38, 0.03), 0px 7.13728px 9.64159px rgba(26, 26, 38, 0.0390953), 0px 2.58142px 3.48718px rgba(26, 26, 38, 0.06);
          box-shadow: 0px 57px 77px rgba(26, 26, 38, 0.0209047), 0px 17.1838px 23.2132px rgba(26, 26, 38, 0.03), 0px 7.13728px 9.64159px rgba(26, 26, 38, 0.0390953), 0px 2.58142px 3.48718px rgba(26, 26, 38, 0.06);
  color: var(--night-text);
  min-height: 100vh;
  width: 94px;
  overflow: hidden;
  -webkit-transition-duration: 0.3s;
       -o-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-in;
       -o-transition-timing-function: ease-in;
          transition-timing-function: ease-in;
  z-index: 99;
}

.sidebar-head {
  padding: 30px;
  min-height: 88px;
  min-width: 240px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--night-accent);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sidebar-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sidebar-logo img {
  height: 24px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-transition: all 0.25s ease-in;
  -o-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
}

.sidebar-logo img:first-child {
  margin: 0 6px 0 0;
}

.sidebar-body {
  padding: 19px;
  max-height: 80vh;
  overflow-y: auto;
  scrollbar-color: #6B708B rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
}

.sidebar-body::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.sidebar-body::-webkit-scrollbar-thumb {
  background-color: #6B708B;
}

.sidebar-menu {
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-size: 12px;
  font-weight: 500;
}

.sidebar-menu a {
  color: var(--night-text-disabled);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 0;
  border-radius: 8px;
  overflow: hidden;
  white-space: nowrap;
}

.sidebar-menu a:hover {
  color: var(--night-text-secondary);
  text-decoration: none;
}

.sidebar-menu li:not(.is-active) a:hover img {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}

.sidebar-menu > li.is-active > a {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--night-text);
}

.sidebar-menu li a {
  position: relative;
}

.sidebar-menu li a:not(:only-child):after {
  content: "\e904";
  font-family: icomoon;
  font-size: 11px;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: opacity 0.3s ease-in;
  -o-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
}

.sidebar li.is-open a:not(:only-child):after {
  -webkit-transform: translateY(-50%) scale(-1);
      -ms-transform: translateY(-50%) scale(-1);
          transform: translateY(-50%) scale(-1);
}

.sidebar-menu a img {
  width: 24px;
  height: auto;
  margin: 0 16px;
  -webkit-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.sidebar-menu ul {
  margin: 0 0 10px;
  padding: 0 0 0 40px;
  list-style-type: none;
  display: none;
}

.sidebar-menu ul li {
  position: relative;
}

.sidebar-menu ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  left: -10px;
  top: 12px;
  -webkit-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.sidebar-menu ul a {
  padding: 5px 16px;
}

.sidebar-menu ul li:hover:before {
  background-color: rgba(255, 255, 255, 0.7);
}

/*~ footer ~*/
.footer {
  margin-top: auto;
  padding: 16px 0;
  background-color: var(--night-text);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.theme-night .footer {
  border-top-color: var(--night-border);
}

.footer-link {
  color: var(--text-secondary);
  margin: 5px 10px;
  position: relative;
}

.footer-link::after {
  content: "";
  position: absolute;
  right: -10.5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background-color: var(--text-secondary);
}

.footer-link:last-child:after {
  display: none;
}

.theme-night .footer {
  background-color: var(--accent);
}

.theme-night .footer-link {
  color: var(--night-text-secondary);
}

/* ~~ LAYOUT RULES ~~ */
.layout {
  padding: 40px 40px 0 40px;
}

.layout-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 -20px;
}

.layout-column {
  width: calc(50% - 40px);
  margin: 0 20px;
}

.layout-column-full {
  width: calc(100% - 40px);
}

.layout-column-fixed {
  max-width: 860px;
  width: 100%;
}

.layout-column-small {
  width: calc(33.3333333333% - 40px);
}

.layout-block {
  padding: 30px;
  background-color: var(--night-text);
  -webkit-box-shadow: 0px 0px 20px rgba(76, 87, 125, 0.02);
          box-shadow: 0px 0px 20px rgba(76, 87, 125, 0.02);
  border-radius: 12px;
  margin-bottom: 40px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.layout-block-column {
  width: calc(50% - 60px);
  margin: 0 30px;
}

.layout-block-column .form-block {
  border: 0;
}

.layout-block-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 30px 0;
  width: calc(100% - 350px);
}

.layout-block-small {
  max-width: 735px;
  width: 100%;
}

.layout-block-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 0 24px;
  margin: 0 0 24px;
  border-bottom: 1px solid var(--border);
}

.layout-block-head-unstyled {
  margin: 0;
  border: 0;
}

.layout-block-subtitle {
  margin-left: auto;
  line-height: 1;
}

.layout-block-text {
  font-size: 12px;
}

.theme-night .layout-block-head {
  border-color: var(--night-border);
}

.layout-block-head > h2 {
  margin: 0 20px 0 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -ms-flex-item-align: center;
      align-self: center;
}

.theme-night .layout-block {
  background-color: var(--accent);
}

.layout-block-half {
  width: calc(50% - 40px);
  margin: 0 20px 40px;
}

.profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.profile:not(:last-child) {
  margin-bottom: 16px;
}

.profile-pic-wrapper {
  margin: 0 20px 0 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.profile-pic {
  width: 140px;
  height: 140px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  position: relative;
  background-color: var(--bg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.profile-pic:not(:last-child) {
  margin-bottom: 4px;
}

.theme-night .profile-pic {
  background-color: var(--night-accent);
}

.profile-pic img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 12px;
}

.profile-pic-icon {
  height: 80px;
  width: auto;
  fill: var(--text-disabled);
}

.theme-night .profile-pic-icon {
  fill: var(--night-text-secondary);
}

.profile-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
}

.profile-content {
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.profile-info {
  color: var(--text-disabled);
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -8px;
}

.profile-info-item {
  margin: 0 8px 8px;
  position: relative;
}

.profile-info-item::after {
  content: "";
  position: absolute;
  right: -9px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--text-disabled);
}

.profile-money {
  margin: 0 0 0 auto;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: right;
}

.profile-info-item:last-child:after {
  display: none;
}

.profile-text {
  margin: 0 0 16px;
}

.profile-text strong {
  color: var(--accent);
}

.theme-night .profile-text strong {
  color: var(--night-text);
}

.profile-role {
  color: var(--text-disabled);
  margin: 0 0 12px;
}

.profile-contacts {
  margin: 0 -30px -30px -30px;
  padding: 24px 30px 4px;
  border-top: 1px solid var(--border);
}

.profile-contacts-box {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.theme-night .profile-contacts {
  border-color: var(--night-border);
}

.profile-contact {
  margin: 0 10px 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 16px;
  border: 1px dashed var(--border);
  border-radius: 6px;
}

.profile-contact > a {
  display: block;
  font-weight: 500;
}

.theme-night .profile-contact {
  border-color: var(--night-border);
}

.days-of-week {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -5px;
}

.day-of-week {
  margin: 0 5px;
  padding: 12px 10px;
  text-align: center;
}

.day-of-week.is-active {
  background-color: var(--accent);
  border-radius: 50px;
  color: var(--night-text);
}

.day-of-week.is-active .day-of-week-title {
  color: var(--night-text);
}

.theme-night .day-of-week.is-active {
  background-color: var(--night-accent);
}

.day-of-week-title,
.day-of-week-number {
  display: block;
}

.day-of-week-title {
  color: var(--text-disabled);
}

.day-of-week-number {
  font-weight: 700;
}

.profile-days-of-week {
  margin-top: auto;
}

.profile-balance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-weight: 500;
  line-height: 1;
  margin: 0 0 10px;
}

.profile-balance-value {
  font-size: 24px;
}

.profile-balance-currency {
  color: var(--text-disabled);
}

.profile-btn {
  margin: 24px 0 0;
}

.remove-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background-color: #fff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.profile-remove-btn {
  position: absolute;
  right: -10px;
  top: -14px;
  -webkit-box-shadow: 0px 0px 10px rgba(74, 80, 102, 0.14);
          box-shadow: 0px 0px 10px rgba(74, 80, 102, 0.14);
  z-index: 1;
}

.profile-remove-btn:hover {
  -webkit-box-shadow: 0px 0px 10px rgba(74, 80, 102, 0.2);
          box-shadow: 0px 0px 10px rgba(74, 80, 102, 0.2);
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.remove-icon {
  width: 16px;
  height: 16px;
  fill: var(--text-disabled);
}

.theme-night .remove-icon {
  fill: var(--accent);
}

.profile-file-field {
  font-size: 12px;
  text-align: center;
  text-decoration: underline;
  cursor: pointer;
}

.profile-file-field:hover {
  text-decoration: none;
}

.profile-tabs {
  margin: 0 -30px -30px -30px;
  padding: 15px 30px 0;
  border-top: 1px solid var(--border);
}

.theme-night .profile-tabs {
  border-color: var(--night-border);
}

.address-form {
  margin-top: 20px;
}

.address-main-table td:last-child {
  text-align: left;
}

.address-block {
  margin: 15px 0;
  padding: 15px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.theme-night .address-block {
  border-color: var(--night-border);
}

.address-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 20px;
}

.address-head > h2 {
  margin: 0 10px 0 0;
}

.address-text {
  margin: 0 0 16px;
}

.address-text p {
  line-height: 1.42;
  margin-bottom: 0;
}

.address-main {
  padding: 22px 0;
  margin: 0 0 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.theme-night .address-main {
  border-color: var(--night-border);
}

.address-main-btn {
  margin: 0 20px 0 0;
}

.address-link {
  margin: 0 10px;
}

.stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 20px;
}

.stats-cards-box {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.stats-card {
  width: calc(25% - 40px);
  margin: 0 20px 20px;
  background-color: var(--night-text);
  text-align: center;
  border-radius: 12px;
  padding: 20px 15px;
}

.theme-night .stats-card {
  background-color: var(--accent);
}

.stats-card-image {
  margin: 0 auto 10px;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 8px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.stats-card-icon {
  height: 21px;
  width: 24px;
}

.stats-card-image.color-red .stats-card-icon {
  height: 24px;
}

.stats-card > strong {
  font-size: 30px;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 6px;
}

.stats-items-box {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  width: 592px;
  margin: 0 -20px 0 20px;
}

.stats-item {
  width: calc(50% - 40px);
  margin: 0 20px 20px;
  padding: 15px;
  background-color: var(--night-text);
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.theme-night .stats-item {
  background-color: var(--accent);
}

.stats-item-value {
  font-weight: 500;
  font-size: 18px;
  text-align: right;
  padding: 0 0 0 15px;
}

.statistics-box:not(:empty) {
  margin-bottom: -25px;
}

.statistics-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.statistics-chart {
  width: 800px;
  max-width: 100%;
  height: 305px;
  margin: 0 0 30px;
}

.statistics > h2 {
  margin: 0 0 24px;
}

.statistics-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(50% - 20px);
  margin: 0 10px 25px;
}

.statistics-item-pic {
  width: 44px;
  height: 44px;
  line-height: 44px;
  margin: 0 13px 0 0;
  text-align: center;
  border-radius: 8px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.statistics-item-icon {
  width: 18px;
  max-height: 24px;
}

.statistics-item-value {
  font-size: 18px;
  font-weight: 700;
}

.statistics-item-content h5 {
  color: var(--text-disabled);
}

.news-text p {
  color: var(--text-secondary);
  margin: 0 0 20px;
  line-height: 1.57;
}

.news-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: var(--text-disabled);
  margin: 0 0 10px;
}

.news-pic {
  display: inline-block;
  vertical-align: middle;
  width: 44px;
  height: 44px;
  line-height: 32px;
  background-color: #F3F6F9;
  border-radius: 8px;
  text-align: center;
  padding: 6px;
}

.theme-night .news-pic {
  background-color: var(--night-accent);
}

.news-pic img {
  width: 24px;
  height: auto;
  max-height: 100%;
}

.news-link {
  font-weight: 500;
}

.refferal > h2 {
  margin: 0 0 30px;
}

.refferal-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.refferal-bottom p {
  line-height: 1.42;
}

.refferal-bottom-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 8px;
}

.refferal-links-box {
  margin-right: 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.refferal-form .btn {
  margin: 0 10px 0 0;
}

.theme-night .refferal-bottom {
  border-color: var(--night-border);
}

.refferal-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: auto;
  max-width: calc(25% - 20px);
  margin: 0 10px 24px;
}

.refferal-item-pic {
  width: 44px;
  height: 44px;
  line-height: 44px;
  margin: 0 13px 0 0;
  text-align: center;
  border-radius: 8px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.refferal-item-icon {
  width: 20px;
  max-height: 24px;
}

.refferal-item-value {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.refferal-item-content h5 {
  color: var(--text-disabled);
}

.social-link {
  margin: 0 10px;
  width: 44px;
  height: 44px;
  line-height: 40px;
  border-radius: 8px;
  text-align: center;
}

.social-link img {
  width: 24px;
  height: auto;
}

.social-link-mail {
  background-color: #D7F9EF;
}

.social-link-telegram {
  background-color: #E5F7FF;
}

.theme-night .social-link-mail {
  background-color: rgba(11, 183, 131, 0.2);
}

.theme-night .social-link-telegram {
  background-color: rgba(52, 170, 223, 0.2);
}

.social-link-whatsapp {
  background-color: #ECFFF5;
}

.theme-night .social-link-whatsapp {
  background-color: rgba(0, 217, 95, 0.2);
}

.social-link-instagram {
  background-color: #FAF5FC;
}

.theme-night .social-link-instagram {
  background-color: rgba(217, 50, 123, 0.2);
}

.refferal-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 24px;
}

.refferal-icon {
  width: 24px;
  height: 24px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  fill: var(--text-secondary);
  margin: 0 20px 0 0;
}

.converter-column {
  margin: 0 10px;
  width: calc(50% - 20px);
}

.converter > h2 {
  margin: 0 0 16px;
}

.converter-text p {
  line-height: 1.62;
}

.operations-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.operations-head h2 {
  margin: 0 15px 20px 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.operations-tabs {
  font-size: 14px;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.operations-buttons-box {
  padding: 30px 0 0 0;
}

.operations-controls {
  margin: 0 0 20px;
}

.product-demo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product-demo:hover {
  text-decoration: none;
}

.product-demo-pic {
  width: 50px;
  height: 50px;
  margin: 0 16px 0 0;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.product-demo-pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 8px;
}

.product-demo-title {
  white-space: nowrap;
}

.table-block-bordered {
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
  margin: -15px 0 24px;
}

.theme-night .table-block-bordered {
  border-color: var(--night-border);
}

.table-block-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0 20px;
  margin: 0 0 24px;
  border-bottom: 1px solid var(--border);
}

.theme-night .table-block-head {
  border-color: var(--night-border);
}

.table-block-head > h2 {
  margin: 0;
}

.table-block-bordered > h3 {
  font-size: 18px;
  margin: 32px 0 22px;
}

.table-block-text {
  color: var(--text-secondary);
  margin: 0 40px;
  font-size: 12px;
  max-width: 600px;
  width: 100%;
}

.table-block-text:first-child {
  margin-left: 0;
}

.table-block-controls {
  margin: 0 0 0 auto;
}

.table-block-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -10px;
}

.table-block-btn {
  margin: 0 10px;
}

.table-block-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px 0 0;
  margin: 4px 0 0;
  border-top: 1px solid var(--border);
}

.theme-night .table-block-footer {
  border-color: var(--night-border);
}

.table-block-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 0 auto;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.table-block-pagination:not(:last-child) {
  margin-right: 20px;
}

.paginator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
}

.paginator-name {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.paginator-info {
  margin: 0 20px 0 0;
}

.paginator-links {
  font-size: 12px;
  margin: 0 -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.paginator-link {
  color: #A6AEBF;
  margin: 0 5px;
  padding: 0 5px;
}

.paginator-link:hover {
  color: var(--accent);
  text-decoration: none;
}

.theme-night .paginator-link:hover {
  color: var(--night-text);
}

.product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-media {
  width: 240px;
  margin: 0 30px 0 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.product-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 20px;
}

.product-content > h2 {
  margin: 0 0 30px;
}

.product-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.product-column {
  padding: 0 20px;
  width: 33.3333333333%;
  border-right: 1px solid var(--border);
}

.theme-night .product-column {
  border-color: var(--night-border);
}

.product-column:last-child {
  border-right-color: transparent;
}

.product-column:first-child {
  padding-left: 0;
}

.product-option {
  color: var(--text-secondary);
}

.product-option a {
  word-wrap: break-word;
}

.product-option p {
  margin-bottom: 5px;
  line-height: 1.45;
}

.theme-night .product-option {
  color: var(--night-text-secondary);
}

.product-option h3 {
  color: var(--accent);
}

.theme-night .product-option h3 {
  color: var(--night-text);
}

.product-option {
  margin: 0 0 15px;
}

.product-option:last-child {
  margin-bottom: 0;
}

.product-pic {
  width: 240px;
  height: 240px;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--bg);
  margin: 0 0 24px;
}

.product-pic img {
  width: 100%;
  height: 100%;
  objec-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.product-slider .slick-list {
  border-radius: 8px;
}

.product-slider:not(.slick-initialized) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  scrollbar-color: var(--accent) #F2F3F7;
  scrollbar-width: thin;
}

.product-slider::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background: -webkit-gradient(linear, left top, left bottom, from(#F2F3F7), to(#F2F3F7)) no-repeat center/auto 4px;
  background: linear-gradient(#F2F3F7, #F2F3F7) no-repeat center/auto 4px;
  border-radius: 4px;
}

.product-slider::-webkit-scrollbar-thumb {
  background-color: var(--accent);
  border-radius: 4px;
}

.product-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-slider .slider-arrow {
  top: 45%;
  -webkit-transform: traslateY(-45%);
      -ms-transform: traslateY(-45%);
          transform: traslateY(-45%);
}

.product-slider {
  width: 240px;
}

.product-slide {
  width: 240px;
  height: 240px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  position: relative;
}

.product-slide::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

.product-photos:not(.slick-initialized) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  scrollbar-color: var(--accent) #F2F3F7;
  scrollbar-width: thin;
}

.product-photos::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background: -webkit-gradient(linear, left top, left bottom, from(#F2F3F7), to(#F2F3F7)) no-repeat center/auto 4px;
  background: linear-gradient(#F2F3F7, #F2F3F7) no-repeat center/auto 4px;
  border-radius: 4px;
}

.product-photos::-webkit-scrollbar-thumb {
  background-color: var(--accent);
  border-radius: 4px;
}

.product-photos .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-photos .slider-arrow {
  top: 45%;
  -webkit-transform: traslateY(-45%);
      -ms-transform: traslateY(-45%);
          transform: traslateY(-45%);
  color: var(--text-secondary);
}

.product-photos .product-photo {
  width: auto;
  height: 480px;
  margin: 0 8px 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--input-bg);
  border-radius: 8px;
  overflow: hidden;
  color: var(--text-secondary);
}

.product-photo img {
  height: 100%;
  width: auto;
}

.attention-icon {
  display: inline-block;
  vertical-align: middle;
  font-size: 80px;
  line-height: 1;
  margin: 0 0 15px;
}

.attention-text {
  margin: 0 0 15px;
}

.icon-attention-alert.attention-icon {
  color: #FFC700;
}

.icon-attention-refuse.attention-icon {
  color: #F1416C;
}

.icon-attention-accept.attention-icon {
  color: #1DC894;
}

.services {
  font-weight: 500;
  font-size: 16px;
  min-height: 125px;
}

.services-price {
  color: #00A3FF;
  margin: 0 0 10px;
}

.services-terms {
  margin: 0 0 14px;
}

.services-terms-large {
  font-size: 16px;
}

.services ol {
  font-size: 14px;
  font-weight: 400;
}

.services p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.42;
}

.services > p:not(:last-child) {
  margin-bottom: 14px;
}

.progress-wrapper {
  margin: 0 0 20px;
  font-size: 14px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.progress-labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.progress-label {
  font-weight: 400;
}

.progress-label-text {
  color: var(--text-secondary);
}

.progress-label-large {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

.progress-label-large:first-child {
  text-align: center;
}

.progress-label:last-child {
  text-align: right;
}

.progress-label-large:last-child {
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.progress {
  margin: 8px 0;
  height: 8px;
  background-color: var(--input-bg);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.theme-night .progress {
  background-color: rgba(255, 255, 255, 0.1);
}

.progress-bar {
  background-color: var(--accent);
  position: absolute;
  height: 100%;
}

.theme-night .progress-bar {
  background-color: var(--night-text);
}

.progress-bar-value {
  font-weight: 400;
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
}

.faq:not(:last-child) {
  margin-bottom: 40px;
}

.faq-head {
  padding: 0 0 24px;
  border-bottom: 1px solid var(--border);
  margin: 0 0 24px;
}

.theme-night .faq-head {
  border-bottom-color: var(--night-border);
}

.faq-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -30px;
}

.faq-column {
  width: calc(50% - 60px);
  margin: 0 30px;
}

.contacts {
  text-align: center;
}

.contacts-head {
  margin: 0 0 35px;
}

.contacts-head h2 {
  margin: 0 0 20px;
}

.contacts-item {
  width: calc(50% - 20px);
  padding: 50px 20px;
  background-color: var(--input-bg);
  border-radius: 18px;
  margin: 10px;
  color: var(--accent);
}

.contacts-item p {
  line-height: 1.42;
}

.theme-night .contacts-item {
  background-color: var(--night-bg);
  color: var(--night-text);
}

.contacts-item h4 {
  font-size: 16px;
}

.contacts-item:hover {
  text-decoration: none;
}

.contacts-item-pic {
  width: 44px;
  height: 44px;
  line-height: 44px;
  margin: 0 auto 16px;
  text-align: center;
  border-radius: 8px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contacts-item-icon {
  width: 18px;
  max-height: 24px;
}

.wallet-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.wallet-head > h2 {
  margin: 0 20px 0 0;
}

.wallet-balance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 42px;
  border-radius: 6px;
  text-align: center;
  white-space: nowrap;
  padding: 0 20px;
  background-color: var(--input-bg);
  font-size: 18px;
  font-weight: 500;
}

.theme-night .wallet-balance {
  background-color: var(--night-accent);
}

.wallet-balance-value {
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px 0 0;
}

.wallet-controls {
  margin: 0 0 0 auto;
}

.wallet-btn {
  margin: 0 10px;
}

.paymethod-block > h2 {
  margin: 0 0 24px;
}

.paymethod-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-bottom: 1px solid var(--border);
  margin: 0 0 24px;
  padding: 0 0 20px;
}

.theme-night .paymethod-head {
  border-color: var(--night-border);
}

.paymethod-head > h2 {
  margin: 0 20px 0 0;
}

.paymethod-tabs {
  margin-left: auto;
}

.paymethod-item {
  padding: 24px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(50% - 40px);
  margin: 0 20px 40px;
  background-color: #EEF6FF;
  border: 1px dashed #3699FF;
  border-radius: 6px;
}

.theme-night .paymethod-item {
  background-color: var(--night-bg);
}

.paymethod-item-text {
  margin: 0 35px 0 0;
}

.paymethod-item-text h3 {
  font-size: 18px;
}

.paymethod-card {
  width: 280px;
  margin: 0 20px;
  background-color: #F2F3F7;
  border-radius: 8px;
  padding: 15px;
}

.theme-night .paymethod-card {
  background-color: #283056;
}

.paymethod-card > h2 {
  font-size: 24px;
  margin: 0 0 15px;
}

.paymethod-option-key {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-weight: 500;
  padding: 0 5px 0 0;
}

.paymethod-option-value {
  text-align: right;
}

.paymethod-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.load > h2 {
  margin: 0 0 24px;
}

.load-main {
  padding: 24px 0 4px;
  margin: 0 0 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.theme-night .load-main {
  border-color: var(--night-border);
}

.load-text {
  margin: 0 0 24px;
}

.load-text p {
  line-height: 1.42;
}

.load-text strong {
  color: #3699FF;
  font-weight: 400;
}

.news-item {
  width: calc(25% - 40px);
  margin: 0 20px 40px;
}

.news-item-image {
  display: block;
  height: 260px;
  background-color: var(--accent);
  border-radius: 12px;
  overflow: hidden;
}

.theme-night .news-item-image {
  background-color: var(--night-bg);
}

.news-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.news-item-image {
  margin: 0 0 24px;
}

.news-item-image:hover img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.news-item-text {
  margin: 0 0 12px;
}

.news-item-text h3 {
  margin: 0 0 12px;
}

.news-item-text h3 a {
  color: var(--accent);
}

.theme-night .news-item-text h3 a {
  color: var(--night-text);
}

.news-item-text p {
  line-height: 1.42;
}

.news-item-info {
  font-weight: 500;
}

.news-date {
  color: var(--text-secondary);
}

.post-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 24px;
  font-size: 12px;
  font-weight: 500;
}

.post-icon {
  width: 14px;
  height: 14px;
  fill: #3699FF;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0 12px 0 0;
}

.post h1 {
  line-height: 1.3;
  margin: 0 0 24px;
}

.post figure {
  margin: 0 0 24px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--accent);
}

.theme-night .post figure {
  background-color: var(--night-bg);
}

.post figure img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.post p {
  margin: 0 0 25px;
}

.post-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 500;
}

.post-navigation-link {
  color: var(--accent);
}

.theme-night .post-navigation-link {
  color: var(--night-text);
}

.post-navigation-link:hover {
  color: var(--accent);
}

.theme-night .post-navigation-link:hover {
  color: var(--night-text);
}

.post-navigation-link i {
  font-size: 11px;
  display: inline-block;
  vertical-align: middle;
}

.post-navigation-link:first-child i {
  margin: 0 5px 0 0;
}

.post-navigation-link:last-child i {
  margin: 0 0 0 5px;
}

.info-item {
  padding: 0 0 16px;
  margin: 0 0 16px;
  border-bottom: 1px solid var(--border);
}

.theme-night .info-item {
  border-color: var(--night-border);
}

.info-item:last-child {
  padding: 0;
  margin: 0;
  border: 0;
}

.info-item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 8px;
}

.info-item-head > h3 {
  margin: 0 10px 0 0;
}

.info-item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.info-item-text:not(:last-child) {
  margin: 0 60px 0 0;
}

.info-item-text p {
  line-height: 1.42;
}

.info-btn {
  margin: 0 10px;
}

.referal-status {
  background: 0;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.referal-status strong {
  font-weight: 700;
}

.theme-night .referal-status {
  background: 0;
}

.price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
}

.price-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: right;
}

.price:not(:last-child) {
  margin-right: 20px;
}

.price-name {
  margin: 0 10px 0 0;
  padding: 3px 0 0 0;
  display: block;
}

.price-value {
  font-size: 24px;
  font-weight: 500;
}

.price-vat {
  font-size: 12px;
  margin: 0 0 0 20px;
  padding: 3px 0 0 0;
}

.delivery {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-secondary);
  -ms-flex-item-align: center;
      align-self: center;
  padding-top: 3px;
  line-height: 1;
}

.theme-night .delivery {
  color: var(--night-text-secondary);
}

.delivery-from::after {
  content: "\e91c";
  font-family: icomoon;
  display: inline-block;
  vertical-align: middle;
  margin: 0 4px 0 10px;
}

.quickfilter-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -10px;
}

.quickfilter-option {
  margin: 0 10px 24px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.quickfilter-option-name {
  font-size: 16px;
  font-weight: 500;
  margin: 0 2px 0 0;
}

.quickfilter-option-value {
  color: var(--text-secondary);
}

.theme-night .quickfilter-option-value {
  color: var(--night-text-secondary);
}

.quickfilter-btn-open {
  width: 100%;
}

.quickfilter-form {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: none;
}

.company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.company-image {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  overflow: hidden;
  margin: 0 16px 0 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.company-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.delivery-tabs {
  margin: 0 -20px 24px 0;
}

.delivery-tabs .tab {
  padding-bottom: 4px;
}

.detail-card {
  width: calc(50% - 40px);
  margin: 0 20px;
  background-color: #F2F3F7;
  border-radius: 8px;
  padding: 15px 20px;
}

.theme-night .detail-card {
  background-color: #283056;
}

.detail-card > h2 {
  font-size: 24px;
  margin: 0 0 15px;
}

.detail-option-key {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-weight: 500;
  padding: 0 5px 0 0;
}

.detail-option-value {
  text-align: right;
}

.detail-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/*Login pages*/
.login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100vh;
  background-color: var(--night-text);
}

.login-media {
  background-color: var(--accent);
  max-width: 810px;
  width: 100%;
  height: 100vh;
  padding: 135px 105px 55px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

.login-media-logo {
  margin: 0 0 25px;
}

.login-media-logo > img {
  height: 32px;
}

.login-media-text {
  color: var(--night-text);
}

.login-media-text > h2 {
  font-size: 30px;
}

.login-media-text > h4 {
  margin: 0 0 15px;
  line-height: 1.4;
  font-size: 22px;
  font-weight: 400;
}

.login-media-image {
  margin-top: auto;
}

.login-media-image > img {
  width: auto;
  height: auto;
  max-height: 520px;
}

.login-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 110px 205px 45px 105px;
  height: 100vh;
}

.login-block {
  width: 430px;
  text-align: center;
  margin-top: auto;
}

.login-block p a {
  color: var(--accent);
  text-decoration: underline;
}

.login-block a:hover {
  text-decoration: none;
}

.login-block-head {
  margin: 0 0 24px;
}

.login-block-head a {
  color: var(--accent);
}

.login-block-head > h3 {
  font-size: 26px;
  font-weight: 700;
}

.login-buttons-box {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.login-btn {
  margin: 0 10px;
  width: calc(50% - 20px);
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.login-content-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: auto;
}

.login-link {
  margin: 0 10px;
  color: var(--text-disabled);
}

.login-link:hover {
  color: var(--accent);
  text-decoration: none;
}

/*parcel*/
.parcel > h2 {
  margin: 0 0 30px;
}

.parcel-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.parcel-column {
  width: 20%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 0 15px;
  border-right: 1px solid var(--border);
}

.theme-night .parcel-column {
  border-color: var(--night-border);
}

.parcel-column-large {
  width: 40%;
}

.parcel-column:first-child {
  padding-left: 0;
}

.parcel-column:last-child {
  border-right: 0;
  padding-right: 0;
}

.parcel-options-column {
  width: calc(50% - 20px);
  margin: 0 10px;
}

.parcel-column-head {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  margin: 0 0 20px;
}

.theme-night .parcel-column-head {
  border-color: var(--night-border);
}

.parcel-column-head > h3 {
  font-size: 18px;
  color: #323232;
}

.theme-night .parcel-column-head > h3 {
  color: var(--night-text);
}

.parcel-option {
  margin: 0 0 15px;
}

.parcel-option:last-child {
  margin-bottom: 0;
}

.parcel-option > h3 {
  margin: 0 0 6px;
}

.parcel-option p {
  line-height: 1.4;
  margin: 0 0 4px;
}

/*SLIDERS*/
.slider-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -4px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.slider-dots button {
  display: none;
}

.slider-dots li {
  display: inline-block;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--bg);
  margin: 8px 4px 4px;
}

.theme-night .slider-dots li {
  background-color: var(--night-bg);
}

.slider-dots li.slick-active {
  background-color: var(--accent);
}

.theme-night .slider-dots li.slick-active {
  background-color: var(--night-text);
}

.slider-arrow {
  display: inline-block;
  vertical-align: middle;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  position: absolute;
  z-index: 1;
  cursor: pointer;
  color: var(--night-text);
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 16px;
}

.theme-night .slider-arrow {
  color: var(--accent);
}

.slider-arrow-left {
  left: 0;
}

.slider-arrow-right {
  right: 0;
}

/*FANCYBOX*/
.modal {
  display: none;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 30px;
  background-color: var(--night-text);
  -webkit-box-shadow: 0px 57px 77px rgba(26, 26, 38, 0.0209047), 0px 17.1838px 23.2132px rgba(26, 26, 38, 0.03), 0px 7.13728px 9.64159px rgba(26, 26, 38, 0.0390953), 0px 2.58142px 3.48718px rgba(26, 26, 38, 0.06);
          box-shadow: 0px 57px 77px rgba(26, 26, 38, 0.0209047), 0px 17.1838px 23.2132px rgba(26, 26, 38, 0.03), 0px 7.13728px 9.64159px rgba(26, 26, 38, 0.0390953), 0px 2.58142px 3.48718px rgba(26, 26, 38, 0.06);
  border-radius: 12px;
}

.modal-large {
  max-width: 1102px;
}

.modal-medium {
  max-width: 800px;
}

.modal-share {
  max-width: 550px;
}

.modal-small {
  max-width: 464px;
}

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

.modal-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 0 20px;
}

.modal-head > h2 {
  margin: 0 15px 0 0;
}

.modal-head > h2:last-child {
  margin-bottom: 0;
}

.modal-body {
  padding: 24px 0 4px;
  margin: 0 0 18px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.theme-night .modal-body {
  border-color: var(--night-border);
}

.modal > h2 {
  margin: 0 0 25px;
}

.theme-night .modal,
.theme-night .fancybox-error {
  background-color: var(--accent);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.2;
}

.fancybox-slide--html .fancybox-close-small {
  padding: 6px;
}

.modal-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.modal-buttons-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.modal-buttons:not(:empty) {
  margin-bottom: -10px;
}

.modal-btn {
  margin: 5px 10px;
}

.modal-head-buttons {
  margin: 0 0 0 auto;
}

.modal-head-btn {
  margin: 0 10px;
  min-width: 120px;
}

/*AIRDATEPICKER*/
.air-datepicker {
  padding: 20px;
  border-radius: 12px;
  border: 0;
  -webkit-box-shadow: 0px 57px 77px rgba(26, 26, 38, 0.0209047), 0px 17.1838px 23.2132px rgba(26, 26, 38, 0.03), 0px 7.13728px 9.64159px rgba(26, 26, 38, 0.0390953), 0px 2.58142px 3.48718px rgba(26, 26, 38, 0.06);
          box-shadow: 0px 57px 77px rgba(26, 26, 38, 0.0209047), 0px 17.1838px 23.2132px rgba(26, 26, 38, 0.03), 0px 7.13728px 9.64159px rgba(26, 26, 38, 0.0390953), 0px 2.58142px 3.48718px rgba(26, 26, 38, 0.06);
  font-family: GothamPro, sans-serif;
  font-weight: 500;
  width: 300px;
  color: var(--text-secondary);
  background-color: #fff;
}

.air-datepicker--pointer::before,
.air-datepicker--pointer::after {
  display: none;
}

.theme-night .air-datepicker {
  background-color: var(--accent);
  -webkit-box-shadow: 0px 0px 8px rgba(3, 11, 49, 0.16), 0px 0px 64px rgba(3, 11, 49, 0.5);
          box-shadow: 0px 0px 8px rgba(3, 11, 49, 0.16), 0px 0px 64px rgba(3, 11, 49, 0.5);
}

.air-datepicker-nav {
  border: 0;
}

.air-datepicker-nav--action {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  -webkit-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.air-datepicker-body--day-names {
  margin: 0 0 3px;
}

.air-datepicker-nav--action path {
  color: var(--text-disabled);
}

.theme-night .air-datepicker-nav--action path {
  color: var(--night-text-disabled);
}

.air-datepicker-nav--action:hover {
  background-color: var(--input-bg);
}

.theme-night .air-datepicker-nav--action:hover {
  background-color: var(--night-accent);
}

.air-datepicker-nav--action:hover path {
  stroke: var(--accent);
}

.theme-night .air-datepicker-nav--action:hover path {
  stroke: var(--night-text);
}

.air-datepicker-nav--title {
  color: var(--accent);
}

.theme-night .air-datepicker-nav--title {
  color: var(--night-text);
}

.air-datepicker-nav--title:hover {
  background-color: transparent;
}

.air-datepicker-nav--title i {
  color: var(--accent);
}

.theme-night .air-datepicker-nav--title i {
  color: var(--night-text);
}

.air-datepicker-body--day-name {
  color: var(--accent);
  text-transform: none;
}

.theme-night .air-datepicker-body--day-name {
  color: var(--night-text);
}

.air-datepicker-body--cells.-days- {
  grid-auto-rows: 41px;
}

.air-datepicker-cell {
  margin: 2px;
  border-radius: 4px;
}

.air-datepicker-cell.-focus- {
  background-color: var(--accent);
  color: var(--night-text);
}

.theme-night .air-datepicker-cell.-focus- {
  background-color: var(--night-accent);
}

.air-datepicker-cell.-selected- {
  background-color: var(--accent);
  color: var(--night-text);
}

.theme-night .air-datepicker-cell.-selected- {
  background-color: var(--night-accent);
}

.air-datepicker-cell.-selected-:hover {
  background-color: var(--accent);
  color: var(--night-text);
}

.theme-night .air-datepicker-cell.-selected- {
  background-color: var(--night-accent);
}

.air-datepicker-cell.-selected-.-current- {
  color: var(--night-text);
  background-color: var(--accent);
}

.theme-night .air-datepicker-cell.-selected-.-current- {
  background-color: var(--night-accent);
}

.-selected-.air-datepicker-cell.-day-.-other-month-,
.-selected-.air-datepicker-cell.-year-.-other-decade- {
  background-color: #dedede;
}

.air-datepicker-cell.-day-.-other-month-,
.air-datepicker-cell.-year-.-other-decade- {
  color: var(--text-disabled);
}

.-selected-.air-datepicker-cell.-day-.-other-month-:hover,
.-selected-.air-datepicker-cell.-year-.-other-decade-:hover {
  background-color: #dedede;
}

.air-datepicker-cell.-in-range- {
  background-color: var(--input-bg);
  border-radius: 4px;
  color: var(--accent);
}

.theme-night .air-datepicker-cell.-in-range- {
  background-color: var(--night-bg);
  color: var(--night-text);
}

.air-datepicker-cell.-in-range-:hover {
  background-color: var(--input-bg);
}

.theme-night .air-datepicker-cell.-in-range-:hover {
  background-color: var(--night-bg);
}

.air-datepicker-cell.-current- {
  color: var(--night-text);
  background-color: #3699FF;
}

.air-datepicker-cell.-current-:hover {
  color: var(--night-text);
  background-color: #3699FF;
}

.air-datepicker-cell.-current-.-in-range- {
  color: var(--night-text);
  background-color: #3699FF;
}

.-in-range-.air-datepicker-cell.-day-.-other-month-,
.-in-range-.air-datepicker-cell.-year-.-other-decade- {
  background-color: #dedede;
}

.-in-range-.air-datepicker-cell.-day-.-other-month-:hover,
.-in-range-.air-datepicker-cell.-year-.-other-decade-:hover {
  background-color: #dedede;
}

.air-datepicker-cell.-range-from- {
  border-color: transparent;
  background-color: var(--accent);
  color: var(--night-text);
}

.air-datepicker-cell.-range-to- {
  border-color: transparent;
  background-color: var(--accent);
  color: var(--night-text);
  border-radius: 4px;
}

/*inputtel default styles*/
.iti {
  width: 100%;
}

.iti__selected-flag {
  background-color: rgba(0, 0, 0, 0.05);
}

/* ~~ MEDIA QUERIES ALWAYS AT THE END ~~ */	
@media (max-width: 1879px) {
  .news-text {
    height: 270px;
    overflow: hidden;
  }
}
@media (max-width: 1679px) {
  .day-of-week {
    margin: 0 2px;
    padding: 13px 4px;
  }
  .converter-text {
    font-size: 13px;
  }
  .cardbox-body {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .cardbox-buttons {
    margin: 20px -5px 0;
  }
  .address-head {
    margin: 0 0 9px;
  }
  .address-text {
    font-size: 12px;
  }
  .address-main-table {
    font-size: 12px;
  }
  .news-item-image {
    height: 220px;
  }
  .layout-block-flex {
    width: calc(100% - 200px);
  }
  .stats-items-box {
    width: 502px;
  }
}
@media (max-width: 1579px) {
  .address-blocks {
    font-size: 12px;
  }
  .converter-text {
    font-size: 12px;
  }
  .statistics-item-value {
    font-size: 16px;
  }
  .refferal-item-value {
    font-size: 16px;
  }
  .refferal-item {
    max-width: calc(33% - 20px);
  }
  .login-content {
    padding: 110px 105px 45px;
  }
  .news-text {
    height: 290px;
  }
  .stats-card > strong {
    font-size: 24px;
  }
  .stats-card > h3 {
    font-size: 15px;
  }
}
@media (max-width: 1479px) {
  .table-small {
    font-size: 14px;
  }
  .layout-small-mac {
    padding: 15px 15px 0 15px;
  }
  .layout-small-mac .layout-columns {
    margin: 0 -10px;
  }
  .layout-small-mac .layout-column {
    width: calc(50% - 20px);
    margin: 0 10px;
  }
  .layout-small-mac .layout-block {
    padding: 20px;
    margin-bottom: 20px;
  }
  .layout-small-mac .layout-box {
    margin: 0 -10px;
  }
  .layout-small-mac .layout-block-half {
    width: calc(50% - 20px);
    margin: 0 10px 20px;
  }
  .layout-small-mac .table-small {
    font-size: 13px;
  }
  .layout-small-mac .operations-tabs {
    font-size: 13px;
  }
  .layout-small-mac .layout-block h2 {
    font-size: 18px;
  }
  .layout-small-mac .operations-buttons-box {
    padding-top: 20px;
  }
  .layout-small-mac .table-wrapper::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background: -webkit-gradient(linear, left top, left bottom, from(#F2F3F7), to(#F2F3F7)) no-repeat center/auto 10px;
    background: linear-gradient(#F2F3F7, #F2F3F7) no-repeat center/auto 10px;
    border-radius: 4px;
  }
  .layout-small-mac .btn {
    font-size: 13px;
  }
  .layout-small-mac .referal-form-row {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .layout-small-mac .referal-form-row .form-item {
    margin: 0 10px 5px;
  }
  .layout-small-mac .referal-form-row .form-btn {
    margin: 0 10px 5px;
  }
  .layout-block-flex {
    width: calc(100% - 100px);
  }
  .stats {
    margin: 0;
  }
  .stats-cards-box {
    margin: 0 -10px;
  }
  .stats-card {
    width: calc(25% - 20px);
    margin: 0 10px 20px;
  }
  .stats-items-box {
    margin: 0 -10px 0 10px;
  }
  .stats-item {
    width: calc(50% - 20px);
    margin: 0 10px 20px;
  }
  .day-of-week {
    margin: 0 5px;
    padding: 13px 10px;
  }
  .converter-text {
    font-size: 14px;
  }
  .address-blocks {
    font-size: 14px;
  }
  .news-text {
    height: 250px;
    overflow: hidden;
  }
  .converter-text {
    font-size: 14px;
  }
  .statistics-item-value {
    font-size: 18px;
  }
  .refferal-item-value {
    font-size: 18px;
  }
  .refferal-item {
    max-width: calc(33% - 20px);
  }
  .services {
    font-size: 14px;
  }
  .address-text {
    font-size: 14px;
  }
  .address-main-table {
    font-size: 14px;
  }
  .news-item {
    width: calc(33.3333333333% - 40px);
  }
  .login-media-text > h2 {
    font-size: 26px;
  }
  .login-media-text > h4 {
    font-size: 20px;
  }
  .login-content {
    padding: 110px 85px 45px;
  }
}
@media (max-width: 1399px) {
  .external-links {
    margin: 0 auto 0 -10px;
    font-size: 13px;
  }
  .external-link {
    margin: 5px 10px;
  }
  .balance {
    font-size: 29px;
  }
  .layout-block-flex {
    width: 100%;
  }
  .stats-items-box {
    width: 423px;
  }
  .stats-card > strong {
    font-size: 22px;
  }
}
@media (max-width: 1279px) {
  .main, main {
    padding: 70px 0 0;
  }
  .scrollable-wrapper {
    height: auto;
    overflow: visible;
  }
  .container {
    padding: 0 30px;
  }
  .header {
    padding: 15px 0;
    min-height: 1px;
  }
  .account-info {
    display: none;
  }
  .sidebar-head {
    min-height: 70px;
    padding: 15px 30px;
  }
  .sidebar-menu a {
    padding: 10px 0;
  }
  .sidebar {
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
    width: 240px;
  }
  .sidebar.is-show {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
  .layout {
    padding: 30px 30px 0 30px;
  }
  .layout-small-mac .layout-columns {
    display: block;
  }
  .layout-small-mac .layout-column {
    width: calc(100% - 20px);
  }
  .tools {
    margin: 0 10px 0 0;
  }
  .tools-item {
    margin: 0 5px;
    min-width: 1px;
    height: 30px;
    line-height: 30px;
  }
  .tools-item-counter {
    width: 14px;
    height: 14px;
    line-height: 14px;
    top: 0;
    right: 0;
  }
  .tools-item-icon {
    width: 19px;
    height: 19px;
  }
  .language-selected {
    padding: 0 0 0 10px;
  }
  .currency-selected {
    font-size: 0;
    padding: 0;
    line-height: 1;
    vertical-align: middle;
  }
  .currency-selected-unit {
    font-size: 13px;
  }
  .account-drop {
    min-width: 180px;
    white-space: nowrap;
  }
  .account-drop-link {
    padding: 8px 25px;
  }
  .balance {
    display: none;
  }
  .footer-external-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -10px;
  }
  .external-link {
    margin-bottom: 10px;
  }
  .external-link:not(.external-link-green) {
    color: var(--accent);
  }
  .theme-night .external-link:not(.external-link-green) {
    color: var(--night-text);
  }
  .login-media-text > h2 {
    font-size: 24px;
  }
  .login-media-text > h4 {
    font-size: 18px;
  }
  .login-content {
    padding: 110px 55px 45px;
  }
  .login-media-image > img {
    max-height: 380px;
  }
  .login-media {
    padding: 110px 55px 55px;
  }
  .stats {
    display: block;
  }
  .stats-items-box {
    width: auto;
    margin: 0 -10px;
  }
}
@media (max-width: 1179px) {
  .filter-item-quarter {
    width: calc(50% - 20px);
  }
  .layout-column-small {
    width: calc(50% - 40px);
  }
  .cardbox {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: calc(50% - 20px);
    margin: 0 10px 20px;
  }
  .cardbox-text {
    width: calc(100% - 95px);
    font-size: 12px;
  }
  .paymethod-item {
    display: block;
    margin: 0 10px 20px;
    width: calc(50% - 20px);
  }
  .paymethod-box {
    margin: 0 -10px;
  }
  .paymethod-item-text {
    margin: 0 0 20px;
    font-size: 12px;
  }
  .news-box {
    margin: 0 -10px;
  }
  .news-item {
    margin: 0 10px 40px;
    width: calc(33.3333333333% - 20px);
  }
  .layout-block-column > .layout-block-head .delivery {
    font-size: 16px;
    padding: 0;
  }
  .layout-block-flex {
    padding: 30px 10px;
  }
  .layout-block-column {
    width: calc(50% - 40px);
    margin: 0 20px;
  }
}
@media (max-width: 991px) {
  .tooltip-text {
    display: none;
  }
  .table-small {
    font-size: 12px;
  }
  .cardbox {
    padding: 20px 20px 20px 40px;
  }
  .paymethod-item {
    padding: 20px;
  }
  .cardbox-name {
    font-size: 14px;
  }
  .cardbox-holder {
    font-size: 16px;
  }
  .cardbox input[type=radio] {
    left: 15px;
  }
  .drop-head h4 {
    font-size: 15px;
  }
  .day-of-week {
    padding: 13px 8px;
  }
  .address-block {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .address-block .table-wrapper {
    width: 100%;
  }
  .address-block-btn {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 20px 0 0;
  }
  .sidebar-menu {
    font-size: 14px;
  }
  .table-block-text {
    max-width: 450px;
    margin: 0 20px;
  }
  .table-block-text br {
    display: none;
  }
  .table-block-text:last-child {
    margin-bottom: 0;
  }
  .table-block-footer {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .table-block-pagination {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: 100%;
    margin: 0 0 20px;
  }
  .table-block-pagination:only-child {
    margin-bottom: 0;
  }
  .table-block-text {
    max-width: 300px;
  }
  .layout-block-flex {
    display: block;
    padding: 30px;
  }
  .layout-block-column {
    margin: 0;
    width: 100%;
  }
  .product {
    display: block;
  }
  .product-media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin: 0 0 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .product-pic {
    margin: 20px 20px 0 0;
    display: none;
  }
  .news-item {
    width: calc(50% - 20px);
  }
  .quickfilter-option-value {
    display: block;
  }
  .quickfilter-option-name {
    font-size: 14px;
  }
  .delivery {
    font-size: 17px;
  }
  .login {
    display: block;
  }
  .login-media {
    max-width: 100%;
    height: auto;
    padding: 20px;
  }
  .login-media-logo {
    margin: 0;
  }
  .login-media-text {
    display: none;
  }
  .login-media-image {
    display: none;
  }
  .login-content {
    height: auto;
    padding: 120px 40px 40px;
  }
  .login-content-bottom {
    margin-top: 45px;
  }
  .parcel-columns {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .parcel-column {
    width: 50%;
  }
  .parcel-column:last-child {
    border-right: 1px solid var(--border);
  }
  .theme-night .parcel-column:last-child {
    border-color: var(--night-border);
  }
  .parcel-column:nth-child(3) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .parcel-column:last-child {
    padding: 0 15px 0 0;
  }
  .parcel-column:nth-child(1),
  .parcel-column:nth-child(2) {
    padding-bottom: 30px;
  }
  .stats-card > strong {
    font-size: 20px;
  }
  .stats-card > h3 {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  table {
    font-size: 12px;
  }
  .tabs {
    font-size: 14px;
  }
  .box > .btn {
    max-width: calc(100% - 40px);
  }
  .box-small .btn {
    max-width: calc(100% - 20px);
  }
  .form-row-nowrap {
    width: calc(100% + 20px);
  }
  .form-row > .btn {
    max-width: calc(100% - 20px);
  }
  .form-item-quarter {
    width: calc(50% - 20px);
  }
  .form-column-mobile {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cardbox {
    width: calc(100% - 20px);
  }
  .cardbox input[type=radio] {
    top: 24px;
    left: 12px;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  .paymethod-head {
    display: block;
  }
  .paymethod-head h2 {
    margin: 0 0 24px;
  }
  .paymethod-item {
    width: calc(100% - 20px);
  }
  .cardbox-body {
    display: block;
  }
  .cardbox-image {
    margin: 0 0 20px;
  }
  .layout-box {
    display: block;
    margin: 0;
  }
  .layout-block-half {
    width: 100%;
    margin: 0 0 40px;
  }
  .layout-small-mac .layout-block-half {
    width: calc(100% - 20px);
  }
  .layout-block h2 {
    font-size: 22px;
  }
  .services h2 {
    font-size: 20px;
  }
  .layout-columns {
    display: block;
    margin: 0;
  }
  .layout-column {
    max-width: 860px;
    margin: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .form-item-third {
    width: calc(50% - 20px);
  }
  .select-field {
    pointer-events: auto;
    left: 0;
    top: 0;
    z-index: 3;
  }
  .select-list li.selected {
    color: var(--accent);
  }
  .btn-half {
    width: calc(100% - 20px);
  }
  .profile {
    display: block;
  }
  .profile-pic-wrapper {
    margin: 0 0 20px;
    text-align: center;
  }
  .profile-pic {
    margin: 0 auto 20px;
  }
  .profile-btn {
    margin: 10px 0 0;
  }
  .profile-days-of-week {
    margin: 20px 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .profile-body {
    display: block;
    text-align: center;
  }
  .profile-content {
    margin: 0;
  }
  .profile-info {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .social-links-box {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .profile-text {
    margin: 0 0 18px;
  }
  .profile-contact {
    width: calc(50% - 20px);
  }
  .profile-money {
    text-align: center;
  }
  .profile-balance-currency {
    font-size: 22px;
  }
  .profile-balance {
    display: block;
    margin: 0 0 18px;
  }
  .profile-money h4 {
    font-size: 17px;
  }
  .profile-balance-value {
    font-size: 38px;
  }
  .day-of-week {
    padding: 10px 7px;
    margin: 0 2px;
  }
  .operations-head {
    display: block;
  }
  .operations-head h2 {
    margin: 0 0 25px;
  }
  .operations-controls .btn {
    display: block;
    width: 100%;
  }
  .operations-buttons-box {
    padding: 5px 0 0;
  }
  .operations-buttons-box .btn {
    margin: 15px 10px 0;
  }
  .refferal-item {
    max-width: calc(50% - 20px);
  }
  .refferal-item-value {
    font-size: 16px;
  }
  .address-block table td {
    display: block;
    padding: 0 0 10px;
  }
  .address-block table td:last-child {
    text-align: left;
  }
  .address-block .table-wrapper:last-child tr:last-child td {
    padding-top: 10px;
  }
  .address-block-btn {
    display: inline-block;
  }
  .address-btn {
    margin: 15px 10px 0;
    max-width: calc(100% - 20px);
  }
  .address-blocks {
    margin: 0 0 5px;
  }
  .address-text {
    font-size: 12px;
  }
  .address-main {
    margin-bottom: 0;
  }
  .converter > h2 {
    margin: 0 0 30px;
  }
  .converter-column {
    width: calc(100% - 20px);
    margin: 0 10px 25px;
  }
  .converter-column:nth-child(2) {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .converter-column:first-child {
    margin-bottom: 0;
  }
  .converter-text {
    font-size: 12px;
  }
  .table-block-head {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .table-block-head > h2 {
    margin: 0 0 20px;
    width: 100%;
  }
  .table-block-text {
    max-width: 100%;
    margin: 0 0 20px;
  }
  .table-block-footer .table-block-text {
    margin: 20px 0 0;
  }
  .table-block-controls {
    margin: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .table-block-buttons {
    margin: 0;
  }
  .table-block-btn {
    margin: 0 0 10px;
  }
  .table-block-btn:last-child {
    margin-bottom: 0;
  }
  .progress-label-large {
    font-size: 14px;
  }
  .faq-columns {
    display: block;
    margin: 0;
  }
  .faq-column {
    width: 100%;
    margin: 0 0 30px;
  }
  .faq-column:last-child {
    margin-bottom: 0;
  }
  .contacts-item {
    padding: 30px 20px;
  }
  .contacts-item h4 {
    font-size: 14.5px;
    word-wrap: break-word;
  }
  .wallet-head {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .wallet-controls {
    margin: 20px 0 0 0;
    width: 100%;
  }
  .wallet-balance {
    line-height: 38px;
  }
  .wallet-btn {
    width: calc(50% - 20px);
  }
  .news-item-image {
    height: 180px;
  }
  .price-value {
    font-size: 22px;
  }
  .quickfilter-options {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .quickfilter-option {
    width: auto;
    margin: 0 10px 20px;
  }
  .delivery {
    padding: 0;
  }
  .paymethod-head > h2 {
    margin: 0;
  }
  .paymethod-card {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
  }
  .paymethod-card:last-child {
    margin-bottom: 0;
  }
  .detail-card {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
  }
  .detail-card:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .statistics-content {
    margin-right: -10px;
  }
  .post h1 {
    font-size: 20px;
  }
  .btn {
    width: 100%;
  }
  .btn-square {
    width: auto;
  }
  .social-btn {
    width: calc(50% - 10px);
  }
  .cardbox-btn {
    width: calc(100% - 10px);
  }
  .addressbox-content {
    display: block;
  }
  .addressbox-text {
    margin: 0 0 15px;
  }
  .addressbox-text p strong {
    display: block;
  }
  .addressbox-btn {
    margin: 0 0 10px;
  }
  .addressbox-btn:last-child {
    margin-bottom: 0;
  }
  .addressbox-buttons {
    margin: 0;
  }
  .form-column {
    width: calc(100% - 20px);
  }
  .form-row-nowrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .form-item {
    width: calc(100% - 20px);
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
  .form-item-half-mobile {
    width: calc(50% - 20px);
  }
  .form-item-wrap > .form-item {
    margin: 0 10px 24px;
  }
  .form-item-wrap > .field-info,
  .form-item-wrap > .field-error {
    margin: -18px 10px 0;
  }
  .form-item-wrap > .form-item:last-child {
    margin-bottom: 0;
  }
  .form-item-load {
    display: block;
  }
  .form-controls {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .form-controls-radiobuttons {
    margin-bottom: 25px;
    width: calc(100% + 20px);
  }
  .form-navigation {
    margin: 0 auto 15px;
    width: 100%;
  }
  .form-buttons {
    margin: 0 -10px;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .form-buttons .btn {
    width: calc(50% - 20px);
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .loaded-file {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .phone-select {
    width: 160px;
    font-size: 12px;
  }
  .phone-select .select-output {
    padding: 0 30px 0 10px;
  }
  .filter-toggler {
    display: block;
  }
  .filter {
    display: none;
  }
  .statistics-head {
    display: block;
    margin: 0 0 15px;
  }
  .statistics-head > h2 {
    margin: 0 0 15px 0;
  }
  .statistics-filter {
    display: block;
    margin: 0;
    width: 100%;
  }
  .filter-item {
    width: calc(100% - 20px);
  }
  .container {
    padding: 0 15px;
  }
  .sidebar {
    width: 72%;
  }
  .navigation {
    margin-right: -15px;
  }
  .layout {
    padding: 30px 15px 0;
  }
  .layout-block {
    padding: 30px 20px;
  }
  .table-wrapper {
    margin: 0 -20px 0 0;
    padding: 0 20px 15px 0;
  }
  .tabs {
    scrollbar-color: transparent transparent;
  }
  .tabs::-webkit-scrollbar {
    background: transparent;
    height: 0;
  }
  .tabs::-webkit-scrollbar-thumb {
    background-color: transparent;
    height: 0;
  }
  .profile-tabs {
    margin: 0 -20px -30px 0;
    padding: 15px 0 0 0;
  }
  .profile-contacts {
    margin: 0 -20px -20px;
  }
  .address-switchers {
    scrollbar-color: transparent transparent;
    margin: 0 -20px 0 0;
  }
  .address-switchers::-webkit-scrollbar {
    background: transparent;
  }
  .address-switchers::-webkit-scrollbar-thumb {
    background-color: transparent;
  }
  .address-switcher {
    margin: 0 10px 0 0;
  }
  .address-main-btn {
    margin: 0 20px 20px 0;
  }
  .tools-drop-large {
    right: auto;
    left: calc(100% - 155px);
    max-width: 300px;
    width: 300px;
  }
  .notifications {
    font-size: 12px;
  }
  span.footer-link {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 15px;
  }
  .footer {
    font-size: 12px;
  }
  .footer-external-links {
    margin-bottom: 15px;
  }
  .footer-link {
    display: block;
    width: calc(100% - 20px);
    margin: 0 10px 15px;
  }
  .footer-link::after {
    display: none;
  }
  .product-photos .product-photo {
    height: auto;
  }
  .product-media {
    display: block;
    margin: 0 0 15px;
  }
  .product-slider {
    margin: 0 auto;
  }
  .product-slider .slick-list {
    margin: 0 0 10px;
  }
  .product-media .product-option h3 {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 20px;
  }
  .product-content {
    padding-bottom: 0;
  }
  .product-content h2 {
    text-align: center;
  }
  .product-columns {
    display: block;
    font-size: 12px;
  }
  .product-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: calc(100% + 20px);
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
    margin: 0 -10px 20px;
  }
  .product-column:last-child {
    border-bottom: 0;
    margin-bottom: 0;
  }
  .product-column .product-option {
    margin: 0 10px 20px;
    width: calc(50% - 20px);
  }
  .product-option h3 {
    font-size: 14px;
  }
  .air-datepicker {
    width: auto;
  }
  .table-block-footer {
    padding: 10px 0 0;
  }
  .table-block-pagination {
    display: block;
    margin: 0 0 25px;
  }
  .paginator {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin: 0 0 15px;
  }
  .paginator-info {
    margin: 0;
  }
  .refferal-bottom-flex {
    display: block;
    padding-bottom: 0;
  }
  .layout-small-mac .referal-form-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .layout-small-mac .referal-form-row .form-item {
    margin: 0 10px 15px;
  }
  .referal-form-row .form-item:nth-child(2) {
    max-width: calc(100% - 72px);
  }
  .layout-small-mac .referal-form-row .form-btn {
    margin: 0 10px 15px 0;
  }
  .social-link {
    margin: 0 10px 20px;
  }
  .contacts-item {
    width: calc(100% - 20px);
  }
  .paymethod-item:last-child {
    margin-bottom: 0;
  }
  .wallet-balance {
    font-size: 24px;
    padding: 0 30px;
    margin: 0 auto;
    border-radius: 12px;
    display: inline-block;
    line-height: 48px;
  }
  .wallet-head {
    display: block;
    text-align: center;
  }
  .wallet-head > h2 {
    margin: 0 0 20px;
  }
  .wallet-btn {
    margin: 0 10px 10px;
  }
  .wallet-btn:last-child {
    margin-bottom: 0;
  }
  .news-item {
    width: calc(100% - 20px);
    margin: 0 10px 30px;
  }
  .news-item:last-child {
    margin-bottom: 0;
  }
  .news-item-image {
    height: 50vw;
  }
  .post figure img {
    height: 55vw;
  }
  .post-navigation {
    font-size: 12px;
  }
  .layout-block-head {
    display: block;
  }
  .layout-block-head > h2 {
    margin: 0 0 10px;
  }
  .layout-block-head > h2:last-child {
    margin: 0;
  }
  .addressbox-title {
    font-size: 15px;
  }
  .info-item-content {
    display: block;
  }
  .info-item-head {
    margin: 0 0 15px;
  }
  .info-item-text:not(:last-child) {
    margin: 0 0 15px;
  }
  .price {
    display: block;
    font-size: 14px;
    margin: 0 0 10px;
  }
  .price-value {
    font-size: 16px;
  }
  .quickfilter-option {
    font-size: 12px;
  }
  .quickfilter-option-name {
    font-size: 12px;
  }
  .profile-contact {
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
    text-align: center;
    padding: 2px 15px;
  }
  .login-block {
    width: 100%;
  }
  .login-content {
    padding: 60px 20px 20px;
  }
  .login-content-bottom {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .login-content-bottom .tools-drop {
    right: auto;
    left: 0;
  }
  .login-link {
    display: block;
    margin: 0 10px 10px;
  }
  .login-content-bottom .tools-item {
    height: 20px;
  }
  .login-content-bottom .language-selected {
    padding: 0;
  }
  .parcel-columns {
    display: block;
  }
  .parcel-column {
    padding: 0;
    border: 0;
  }
  .parcel-column:not(.parcel-column-large) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -10px;
    width: calc(100% + 20px);
    padding-bottom: 30px;
  }
  .parcel-column-large {
    width: 100%;
  }
  .parcel-column:not(.parcel-column-large) .parcel-column-head {
    width: calc(100% + 20px);
    margin: 0 10px 20px;
  }
  .parcel-option {
    margin: 0 10px 20px;
    width: calc(50% - 20px);
    font-size: 12px;
  }
  .parcel-column:last-child {
    padding: 0;
    border: 0;
  }
  .parcel-options-column {
    width: calc(100% + 20px);
    margin: 0 -10px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .parcel-options-column:last-child {
    margin-bottom: 0;
  }
  .parcel-option > h3 {
    font-size: 14px;
  }
  .parcel-options-box {
    margin: 0;
    display: block;
  }
  .parcel-column-head > h3 {
    font-size: 17px;
  }
  .paymethod-card {
    width: calc(100% - 40px);
  }
  .stats-card {
    width: calc(50% - 20px);
  }
  .stats-item {
    display: block;
  }
  .stats-card > h3 {
    font-size: 13px;
  }
  .stats-item-value {
    padding: 0;
    font-size: 16.5px;
  }
  /*MODALS*/
  .modal {
    padding: 30px 20px;
  }
  .modal-head {
    display: block;
    text-align: center;
  }
  .modal-head > h2 {
    margin: 0 0 20px;
  }
  .modal-btn {
    max-width: calc(100% - 20px);
  }
}
@media (max-width: 359px) {
  .price {
    font-size: 12px;
  }
  .price-value {
    font-size: 14px;
  }
  .stats-card > h3 {
    font-size: 11px;
  }
  .stats-card > strong {
    font-size: 17px;
  }
  .stats-item {
    font-size: 12px;
  }
}
@media (min-width: 992px) {
  .tooltip:hover .tooltip-text,
  .tooltip-wrapper:hover .tooltip-text {
    opacity: 1;
  }
}
@media (min-width: 1280px) {
  .sidebar:hover {
    width: 240px;
  }
  .sidebar:hover .sidebar-body {
    padding-right: 15px;
  }
  .sidebar-logo img:nth-child(2) {
    opacity: 0;
  }
  .sidebar:hover .sidebar-logo img:nth-child(2) {
    opacity: 1;
  }
  .sidebar-menu li a:not(:only-child):after {
    opacity: 0;
  }
  .sidebar:hover .sidebar-menu li a:not(:only-child):after {
    opacity: 1;
  }
  .mobile-menu-btn {
    display: none;
  }
  .header-external-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .tools-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
  }
}