:root {
  --global-width: 1440px;
}

html,
body {
  height: 100%;
  width: 100%;
}
body {
  font-family: "Roboto", sans-serif;
  color: #475569;
  font-size: 14px;
  font-weight: 400;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
  font-size-adjust: 0.5;
}
button,
textarea {
  font-family: "Roboto", sans-serif;
}
h2 {
  width: 100%;
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 32px;
}
h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}
b {
  font-weight: 900;
}
i {
  font-style: italic;
}
a,
a:visited,
a:focus {
  text-decoration: none;
  color: #6a9af5;
}
a:hover {
  text-decoration: underline;
}
.hidden {
  display:none!important
}
.main-block {
  display: flex;
  flex:1;
  width: 100%;
  /* height: auto; */
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  width: var(--global-width);
  margin: 0 auto;
}
.main-block-rules p {
  color: #475569;
  font-size: 20px;
  line-height: 28px;
  padding-left: 1px;
}
.main-block-rules p::first-letter {
  margin-left: 5px;
}
.main-block.items-page {
  align-items: flex-start;
  justify-content: flex-start;
}
.main-block.main-block-login,
.main-block.main-block-signup,
.main-block.main-block-support,
.main-block.main-block-support { 
  justify-content: center;
}
.news-wrap {
  width: 100%;
}
.news-block {
  background-color: #f8f8f8;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 16px;
  width: 100%;
  box-sizing: border-box;
}
.news-title {
  font-size: 20px;
  font-weight: 600;
  color: #000;
}
.news-subtitle {
  font-size: 16px;
  color: #94a3b8;
  margin-bottom: 24px;
}
.news-text {
  font-size: 18px;
  line-height: 28px;
  color: #475569;
}
/* LOGIN */
.login-form {
  width: 300px;
}
.support-form {
  max-width: 420px;
}
.section-title {
  font-size: 40px;
}
.section-subtitle {
  font-size: 18px;
  margin-bottom: 32px;
  text-align: center;
}
.login-form > h3 {
  text-align: center;
  font-size: 28px;
  width: 600;
  letter-spacing: -1px;
  color: #3a3a3a;
}
.login-form > p {
  text-align: center;
  margin-bottom: 15px;
  font-size: 18px;
  color: #000;
}
.form-input--block {
  position: relative;
}
.form-input--block button {
  position: absolute;
  top: 3px;
}

.form-input--text,
.form-textarea {
  width: 100%;
  padding: 10px 24px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  margin-bottom: 15px;
  outline: none;
  font-size: 16px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.form-input--text:focus {
  border-color: #6a9af5;
}
.form-textarea {
  min-height: 250px;
}
.form-captcha {
  color: #64748b;
  margin-bottom: 15px;
  font-size: 16px;
}
.form-captcha label {
  cursor: pointer;
  user-select: none;
}
.error-text {
  font-size: 12px;
  color: red;
  margin-bottom: 10px;
  margin-top: -15px;
  /* display: none; */
}
.form-input--button {
  background-color: #6a9af5;
  color: #fff;
  border: 0;
  font-size: 18px;
  font-weight: 600;
  border-radius: 20px;
  padding: 10px;
  min-width: 180px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.form-input--button:hover {
  background-color: #4781ee;
}

.form-button-block {
  padding-top: 20px;
  text-align: center;
}

.input-label {
  margin-bottom: 5px;
  font-size: 14px;
  display: block;
}

.form-input--button:disabled {
  background-color: #cbd5e1;
  cursor: default;
}
/* header */
header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: var(--global-width);
  padding: 15px 0;
  margin: 0 auto;
  box-sizing: content-box;
  margin-bottom: 30px;
}
/* LOGO */
a.logo {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-size: 24px;
}
a.logo img {
  width: 100%;
  /*max-width: 100px;*/
  max-width: 150px;
  height: auto;
}
.logo:hover {
  text-decoration: none;
}
/* HEADER MENU */
nav ul {
  display: flex;
  flex-direction: row;
}
.nav-item {
  margin-right: 20px;
}
.nav-item:last-child {
  margin-right: 0;
}
.nav-item a {
  text-decoration: none;
  color: #64748b;
  font-weight: 600;
  display: flex;
  align-items: baseline;
  transition: all 0.3s ease;
}
.nav-item a svg,
.nav-item a img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
.nav-item a span {
  font-size: 18px;
}
.nav-item.active a,
.nav-item:hover a {
  color: #222;
}
.nav-item a svg text,
.nav-item a svg path {
  transition: all 0.3s ease;
}
.nav-item:hover a svg text,
.nav-item.active a svg text {
  fill: #222;
}
.nav-item:hover a svg path,
.nav-item.active a svg path {
  stroke: #222;
}
.nav-item:hover a svg.svg-path text,
.nav-item.active a svg.svg-path text,
.nav-item:hover a svg.svg-path path,
.nav-item.active a svg.svg-path path {
  fill: #222;
}
/* BALANCE */
.balance-header {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.balance-header > * {
  margin-right: 20px;
}
.balance-header > *:last-child {
  margin-right: 0;
}
.balance {
  font-size: 18px;
  font-weight: 500;
  background-color: #eff4f9;
  color: #475569;
  padding: 10px 20px;
  border-radius: 20px;
}
.balance a {
  color: #475569;
  transition: all 0.3s ease;
}
.balance a:hover {
  text-decoration: none;
  color: #000;
}
.cart {
  width: 25px;
  height: 25px;
  position: relative;
}
.cart .count, .table-header .count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #4781ee;
  color: #fff;
  width: 16px;
  height: 16px;
  font-size: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.table-header .count {
  width: 20px;
  height: 20px;
  background-color: rgba(0, 191, 255, 1);
}
.profile {
  background-color: #eff4f9;
  border-radius: 50%;
  padding: 7px;
  width: 25px;
  height: 25px;
  transition: all 0.3s ease;
}
.profile:hover {
  background-color: #eee;
}
/* FILTER */
.filter-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 10px;
  width: 100%;
  flex-wrap: wrap;
  gap: 10px;
}
.filter-item {
  height: 38px;
  display: flex;
  align-items: center;
}
/* FILTER SELECT */
.filter-select {
  display: flex;
  flex-direction: column;
  position: relative;
}
.filter-select--selected {
  white-space: nowrap;
  background-color: #f8f8f8;
  border: 1px solid #cbd5e1;
  padding: 10px 30px 10px 15px;
  border-radius: 20px;
  cursor: pointer;
  user-select: none;
  color: #3a3a3a;
  font-size: 16px;
  min-height: 16px;
  font-weight: 500;
  background: #f8f8f8 no-repeat url("/imgs/select-arrow-icon.png");
  background-position: calc(100% - 10px) 50%;
  transition: all 0.3s ease;
  text-overflow: ellipsis;
  overflow-x: hidden;
}

.filter-select--selected.opened,
.filter-select--selected:hover {
  background-color: #fff;
  border-color: #ccc;
  color: #000;
}
.dropdown-wrapper {
  display: none;
}
.filter-select--selected.opened + .dropdown-wrapper {
  display: block;
}
.filter-select-list > .middle-element {
  position: absolute;
  left: 0px;
  right: 0px;
}
.filter-select-list > .last-element {
  position: absolute;
  height: 1px; 
  padding: 0px;
}
.filter-select-list {
  position: absolute;
  background-color: #fff;
  min-width: 100%;
  box-sizing: border-box;
  border-radius: 20px;
  transition: all 0.3s ease;
  box-shadow: 0px 10px 20px #ddd;
  overflow-y: scroll;
  max-height: 240px;
  z-index: 1;
}
.input-wrapper {
  position: absolute;
  z-index: 2;
  background-color: #fff;
  padding-left: 15px;
  padding-top: 5px;
  width: calc(100% - 36px);
}

.input-wrapper input[type="text"] {
  width: 100%;
  padding: 6px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  outline: none;
  font-size: 14px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

input[type="text"].dropdown-search-element {
  background: #fff url("/imgs/select-search-icon.svg") no-repeat 10px 50%;
  padding: 6px 6px 6px 30px;
}
.filter-select-list,
.filter-select--selected {
  width: 130px;
}

.filter-select-list li {
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  color: #444;
  font-size: 16px;
  padding: 5px 15px;
  overflow-x: hidden;
  text-overflow: ellipsis;
}

.filter-select-list li:hover {
  background-color: #f8f8f8;
  color: #000;
}

/* SELECT WITH SEARCH FIX */
.filter-select-list.list-with-search {
  padding-top: 40px;
}
.filter-select-list .item-search {
  background-color: #fff;
  position: fixed;
}
.filter-select-list,
.filter-select-list li.item-search {
  top: 100%;
}
li.item-search:hover {
  background-color: inherit;
  cursor: default;
}
/* MULTI SELECT FIX */
.filter-select-list li input[type="checkbox"] {
  user-select: none;
  pointer-events: none;
}
/* FILTER CHECKBOX */
.filter-checkbox {
  cursor: pointer;
  user-select: none;
  display: block;
}
.filter-checkbox input {
  cursor: pointer;
}
.filter-checkbox span {
  font-size: 16px;
  font-weight: 500;
}
/* FILTER REMOVEBLE ITEM */
li.dropdown-removeble:hover {
  background: none;
  cursor: default;
}
.dropdown-removeble button {
  background: none;
  border: 0;
  font-size: 20px;
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #5c6777;
  cursor: pointer;
  transition: all 0.3s ease;
}
.dropdown-removeble button:hover {
  color: #323841;
}
/* TABLE */
.table-block {
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* overflow-x: scroll; */
}
.table-control {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 10px;
}
.btn-table-control {
  color: rgba(71, 85, 105, 0.8);
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  border: 0;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-table-control svg {
  margin-left: 10px;
}
.btn-table-control svg path {
  transition: stroke 0.3s ease;
}
.btn-table-control:hover {
  color: rgba(71, 85, 105, 1);
}
.btn-table-control:hover svg path {
  stroke: rgba(71, 85, 105, 1);
}
.cart-control-block {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  gap: 10px;
}
/* btn btn-primary */
.btn {
  font-size: 18px;
  line-height: 18px;
  padding: 12px 30px;
  border-radius: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
}
.btn:disabled {
  cursor: not-allowed;
}
.btn-primary {
  background-color: rgba(106, 154, 245, 0.8);
  border: 1px solid rgba(106, 154, 245, 0.8);
  color: #fff;
  box-shadow: 0 0 12px transparent;
}
.btn-primary:disabled,
.btn-primary:disabled:hover,
.btn-secondary:disabled,
.btn-secondary:disabled:hover {
  background-color: rgba(51, 65, 85, 0.4);
  border: 1px solid rgba(51, 65, 85, 0.4);
  box-shadow: none;
  color: #fff;
}

.btn-primary:hover {
  background-color: rgba(106, 154, 245, 1);
  border: 1px solid rgba(106, 154, 245, 1);
  box-shadow: 0 0 12px #a8c4f9;
}

/* btn btn-secondary */
.btn-secondary {
  border: 1px solid rgba(106, 154, 245, 0.8);
  background-color: #fff;
  color: #6a9af5;
}
.btn-secondary:hover {
  box-shadow: 0 0 12px #a8c4f9;
  border: 1px solid rgba(106, 154, 245, 1);
}
.table-header > div span {
  font-size: 16px;
  font-weight: 500;
  color: #3a3a3a;
}
.l-table {
  display: grid;
  grid-template-columns: repeat(20, auto);
  border: 1px solid #cbd5e1;
  padding: 10px 0;
  border-radius: 10px;
  width: fit-content;
}
.l-table .l-table-comment,
.l-table .l-table-full-info {
  grid-column: 1 / 3;
}
.l-table .l-table-full-info {
  display: none;
}
.l-table .l-table-full-info--openned {
  display: flex;
}
.l-table .l-table-comment {
  border-top: 1px dashed rgba(204, 204, 204, 0.4);
  padding: 15px;
  font-style: italic;
  font-size: 14px;
  color: #000;
}
.l-table .l-table-comment::before {
  content: "Notes: ";
  margin-right: 5px;
  font-style: normal;
}
.l-table-comment--editable input,
.l-table-comment--editable button {
  padding: 10px 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  outline: none;
}
.l-table-comment--editable button {
  cursor: pointer;
}
.l-row {
  display: contents;
}
.l-row-highlight--green > div {
  background-color: rgba(106, 245, 106, 0.3) !important;
}
.l-row-highlight--red > div {
  background-color: rgba(245, 106, 106, 0.3) !important;
}
.l-row:nth-child(2n) > div {
  background-color: #f8f8f8;
}
.l-row > div {
  display: flex;
  align-items: center;
  padding: 5px;
  box-sizing: border-box;
}
.l-row > div:first-child {
  padding-left: 15px;
}
.l-row > div:last-child {
  padding-right: 15px;
}
.l-row > div span {
  white-space: nowrap;
  color: #475569;
  font-size: 14px;
  line-height: 32px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}
/* Table titles for mobile size */
.l-row > div span:before {
  color: #64748b;
  display: none;
  font-size: 12px;
}
/* ROWS mobile naming MAIN*/
/*.l-table[data-table-name="main"] .l-row > div:nth-child(1) span:before {
  content: "Year: ";
}
.l-table[data-table-name="main"] .l-row > div:nth-child(2) span:before {
  content: "Genere: ";
}
.l-table[data-table-name="main"] .l-row > div:nth-child(3) span:before {
  content: "Artist: ";
}
.l-table[data-table-name="main"] .l-row > div:nth-child(4) span:before {
  content: "Album: ";
}
.l-table[data-table-name="main"] .l-row > div:nth-child(5) span:before {
  content: "Song: ";
}
.l-table[data-table-name="main"] .l-row > div:nth-child(6) span:before {
  content: "Country: ";
}
.l-table[data-table-name="main"] .l-row > div:nth-child(7) span:before {
  content: "Producer: ";
}
.l-table[data-table-name="main"] .l-row > div:nth-child(8) span:before {
  content: "Label: ";
}
.l-table[data-table-name="main"] .l-row > div:nth-child(9) span:before {
  content: "Year: ";
}
.l-table[data-table-name="main"] .l-row > div:nth-child(10) span:before {
  content: "Featuring: ";
}
.l-table[data-table-name="main"] .l-row > div:nth-child(11) span:before {
  content: "SE: ";
}
.l-table[data-table-name="main"] .l-row > div:nth-child(12) span:before {
  content: "Price: ";
}
.l-table[data-table-name="main"] .l-row > div:nth-child(13) span:before {
  content: "Year: ";
}
.l-table[data-table-name="main"] .l-row > div:nth-child(14) span:before {
  content: "Genere: ";
}
.l-table[data-table-name="main"] .l-row > div:nth-child(15) span:before {
  content: "Artist: ";
}
.l-table[data-table-name="main"] .l-row > div:nth-child(16) span:before {
  content: "Album: ";
}
.l-table[data-table-name="main"] .l-row > div:nth-child(17) span:before {
  content: "Song: ";
}
.l-table[data-table-name="main"] .l-row > div:nth-child(18) span:before {
  content: "Country: ";
}
.l-table[data-table-name="main"] .l-row > div:nth-child(19) span:before {
  content: "Producer: ";
}
.l-table[data-table-name="main"] .l-row > div:nth-child(20) span:before {
  content: "Label: ";
}*/

/* ROWS mobile naming CART*/
/*.l-table[data-table-name="cart"] .l-row > div:nth-child(1) span:before {
  content: "Year: ";
}
.l-table[data-table-name="cart"] .l-row > div:nth-child(2) span:before {
  content: "Genere: ";
}
.l-table[data-table-name="cart"] .l-row > div:nth-child(3) span:before {
  content: "Artist: ";
}
.l-table[data-table-name="cart"] .l-row > div:nth-child(4) span:before {
  content: "Album: ";
}
.l-table[data-table-name="cart"] .l-row > div:nth-child(5) span:before {
  content: "Song: ";
}
.l-table[data-table-name="cart"] .l-row > div:nth-child(6) span:before {
  content: "Country: ";
}
.l-table[data-table-name="cart"] .l-row > div:nth-child(7) span:before {
  content: "Producer: ";
}
.l-table[data-table-name="cart"] .l-row > div:nth-child(8) span:before {
  content: "Label: ";
}
.l-table[data-table-name="cart"] .l-row > div:nth-child(9) span:before {
  content: "Year: ";
}
.l-table[data-table-name="cart"] .l-row > div:nth-child(10) span:before {
  content: "Genere: ";
}*/

/* TO make cell small */
.l-cell--big span {
  width: 20px;
}

/*.l-table[data-table-name="main"] .l-row > div:nth-child(3) span {
  width: 20px;
}
.l-table[data-table-name="main"] .l-row > div:nth-child(4) span {
  width: 20px;
}

.l-table[data-table-name="main"] .l-row > div:nth-child(5) span {
  width: 30px;
}*/

/* TABLE BUTTONS */
.button {
  border: none;
  min-width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  margin: 0 5px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.button:disabled {
  cursor: not-allowed;
  background-color: rgba(51, 65, 85, 0.4);
}
.button:disabled:hover {
  cursor: not-allowed;
  background-color: rgba(51, 65, 85, 0.4);
}

.button--cart {
  background: rgba(0, 191, 255, 0.8) url("/imgs/button-icon-cart.svg") no-repeat
    50% 50%;
}
.button--cart:hover {
  background-color: rgba(0, 191, 255, 1);
}

.button--currancy {
  background: rgba(106, 154, 245, 0.8) url("/imgs/button-icon-currancy.svg")
    no-repeat 50% 50%;
}
.button--currancy:hover {
  background-color: rgba(106, 154, 245, 1);
}
.button--check {
  background: rgba(100, 116, 139, 0.8) url("/imgs/button-icon-check.svg")
    no-repeat 50% 50%;
}
.button--check:hover {
  background-color: rgba(100, 116, 139, 1);
}
.button--delete {
  background: rgba(51, 65, 85, 0.8) url("/imgs/button-icon-delete.svg")
    no-repeat 50% 50%;
}
.button--delete:hover {
  background-color: rgba(51, 65, 85, 1);
}
.button--loader,
.button--loader:disabled,
.button--loader:disabled:hover {
  cursor: default;
  background: rgba(51, 65, 85, 1) url("/imgs/loader.svg") no-repeat 50% 50%;
}
.button--added,
.button--added:disabled,
.button--added:disabled:hover {
  cursor: default;
  background: #6af56a url("/imgs/button-icon-added.svg") no-repeat 50% 50%;
}

.button--information {
  background: rgba(179, 139, 11, 0.8) url("/imgs/button-icon-information.svg")
    no-repeat 50% 50%;
}
.button--information:hover {
  background-color: rgba(179, 139, 11, 1);
}
.button--comment {
  background: rgba(106, 154, 245, 0.8) url("/imgs/button-icon-comment.svg")
    no-repeat 50% 50%;
}
.button--comment:hover {
  background-color: rgba(106, 154, 245, 1);
}
.button--copy {
  background: rgba(51, 65, 85, 0.8) url("/imgs/button-icon-copy.svg") no-repeat
    50% 50%;
}
.button--copy:hover {
  background-color: rgba(51, 65, 85, 1);
}
.button--copy {
  position: relative;
}
.button--copy:before {
  content: "Copied";
  position: absolute;
  bottom: 100%;
  transform: translate(-50%, -2px);
  background: #555;
  color: #fff;
  border-radius: 6px;
  padding: 6px 10px;
  box-sizing: border-box;
  font-size: 12px;
  z-index: 1;
  text-align: center;
  user-select: none;
  pointer-events: none;
  transition: all 0.3s ease;
  opacity: 0;
}
.button--copy.copied:before {
  animation: hideSmooth 2s ease;
}

@keyframes hideSmooth {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* TABLE config */
.l-table[data-rows="2"] {
  grid-template-columns: repeat(2, auto);
}
.l-table[data-rows="3"] {
  grid-template-columns: repeat(3, auto);
}
.l-table[data-rows="4"] {
  grid-template-columns: repeat(4, auto);
}
.l-table[data-rows="5"] {
  grid-template-columns: repeat(5, auto);
}
.l-table[data-rows="6"] {
  grid-template-columns: repeat(6, auto);
}
.l-table[data-rows="7"] {
  grid-template-columns: repeat(7, auto);
}
.l-table[data-rows="8"] {
  grid-template-columns: repeat(8, auto);
}
.l-table[data-rows="9"] {
  grid-template-columns: repeat(9, auto);
}
.l-table[data-rows="10"] {
  grid-template-columns: repeat(10, auto);
}
.l-table[data-rows="11"] {
  grid-template-columns: repeat(11, auto);
}
.l-table[data-rows="12"] {
  grid-template-columns: repeat(12, auto);
}
.l-table[data-rows="13"] {
  grid-template-columns: repeat(13, auto);
}
.l-table[data-rows="14"] {
  grid-template-columns: repeat(14, auto);
}
.l-table[data-rows="15"] {
  grid-template-columns: repeat(15, auto);
}
.l-table[data-rows="16"] {
  grid-template-columns: repeat(16, auto);
}
.l-table[data-rows="17"] {
  grid-template-columns: repeat(17, auto);
}
.l-table[data-rows="18"] {
  grid-template-columns: repeat(18, auto);
}
.l-table[data-rows="19"] {
  grid-template-columns: repeat(19, auto);
}
.l-table[data-rows="20"] {
  grid-template-columns: repeat(20, auto);
}
/* Classic table styles */
.table-classic {
  /* width: 100%; */
  border-collapse: collapse;
}
.table-classic,
.table-classic th,
.table-classic td {
  border: 1px solid #ccc;
}
.table-classic th,
.table-classic td {
  padding: 5px;
}
.table-classic th {
  font-weight: 600;
}
.table-classic tr {
  margin-bottom: 10px;
}
/* PAGINATION */
.pagination {
  width: 100%;
  margin-bottom: 40px;
}
.pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 3px;
}
.pagination li {
  width: 50px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f8f8;
  border: 1px solid transparent;
  font-size: 16px;
  color: #222;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.pagination li svg {
  width: 10px;
}
.pagination .pagination-current,
.pagination li:hover {
  border-color: rgba(73, 70, 70, 0.5);
}
.pagination .pagination-current input {
  width: 100%;
  padding: 6px 0;
  text-align: center;
  border: 1px solid rgba(73, 70, 70, 0.1);
  border: transparent;
  background-color: #f8f8f8;
  border-radius: 4px;
  outline: none;
}
.pagination .pagination-current {
  cursor: default;
}
.pagination .pagination-last,
.pagination .pagination-last:hover {
  background-color: transparent;
  border-color: transparent;
  cursor: default;
}
.pagination .pagination-last span {
  margin-left: 3px;
  font-weight: 600;
}
.pagination .pagination-disabled {
  background-color: rgba(248, 248, 248, 0.5);
}
.pagination .pagination-disabled svg path {
  fill: rgba(34, 34, 34, 0.5);
}
.pagination .pagination-disabled:hover {
  background-color: #f8f8f8;
  border-color: #f8f8f8;
  cursor: not-allowed;
}

.mobile-menu-button {
  display: none;
  user-select: none;
  cursor: pointer;
  position: relative;
  /* border: 1px solid #ccc; */
}

.mobile-menu-button span {
  display: block;
  width: 32px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #cdcdcd;
  border-radius: 3px;

  transform-origin: 0px 0px;
  z-index: 1;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}
.mobile-menu-button span:first-child {
  transform-origin: 0% 0%;
}

.mobile-menu-button span:nth-last-child(2) {
  transform-origin: 0% 0%;
}
.mobile-menu-button + input {
  display: none;
}

.mobile-menu-button.opened + ul {
  display: flex;
}
.mobile-menu-button.opened > span {
  opacity: 1;
  transform: rotate(45deg) translate(0px, -2px);
  background: #232323;
}
.mobile-menu-button.opened > span:nth-child(3) {
  transform: rotate(-45deg) translate(-3px, 1px);
}

.mobile-menu-button.opened > span:nth-child(2) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

nav {
  position: relative;
}
.balance-block {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}
.balance-subtitle {
  font-size: 16px;
  line-height: 18px;
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 16px;
}

.balance-subtitle::first-letter {
  margin-left: 10px;
}
.balance-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  width: 600px;
}
.balance-item {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 16px 24px;
  border-radius: 16px;
  background-color: #eff4f9;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  width: calc(50% - 10px);
  min-width: 100px;
  box-sizing: border-box;
  gap: 10px;
}
.balance-total {
  font-size: 24px;
  color: #94a3b8;
  overflow: hidden;
  text-overflow: ellipsis;
}
.balance-item.active,
.balance-item:hover {
  border-color: #6a9af5;
}

.balance-item.pending {
  border: 1px solid transparent;
  cursor: default;
}
.balance-item.pending:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.8;
  background: url("/imgs/loader-dark.svg") #fff no-repeat 50% 50%;
  border-radius: 16px;
}
.balance-icon {
  background-size: 42px 42px;
  padding: 16px 24px 16px 74px;
  background-repeat: no-repeat;
  background-position: 16px 50%;
}
.balance-icon--right {
  background-size: 42px 42px;
  padding: 16px 74px 16px 24px;
  background-repeat: no-repeat;
  background-position: calc(100% - 16px) 50%;
}
.balance-icon--pp {
  background-image: url("/imgs/payment-icon-pp.svg");
}
.balance-icon--btc {
  background-image: url("/imgs/payment-icon-btc.svg");
}

.balance-name {
  font-size: 18px;
  color: #475569;
  font-weight: 500;
}
.img-block {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 30px;
}
.img-block img {
  width: 100%;
  height: auto;
}
.big-img {
  width: 300px;
  height: 300px;
}
@keyframes imgTransform {
  0% {
    transform: rotate3d(1, 1, 1, 0deg);
    border-radius: 0%;
  }
  50% {
    transform: rotate3d(4, 5, 10, 180deg);
    border-radius: 50%;
  }
  100% {
    transform: rotate3d(1, 1, 1, 360deg);
    border-radius: 0%;
  }
}

.billing-block {
  width: 100%;
  margin-bottom: 30px;
}
.billing-block-item {
  display: flex;
  align-items: center;
  width: 600px;
  margin: 0 auto;
  background-color: #eff4f9;
  border-radius: 8px;
  padding: 5px;
  gap: 10px;
  box-sizing: border-box;
}
.billing-block-item span {
  font-size: 18px;
  word-break: break-word;
  font-weight: 500;
  line-height: 24px;
}
footer {
  background: #f8f8f8;
  color: #475569;
  padding: 16px 24px;
}
/* --breakpont-xl: 1440px;
--breakpont-l: 1200px;
--breakpont-m: 992px;
--breakpont-s: 768px;
--breakpont-xs: 640px; */
/* MOBILE */
@media (max-width: 1400px) {
  .l-row > div span:before {
    display: inline;
  }
  header,
  .main-block {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
  }

  .table-block {
    width: 100%;
  }
  .l-row > div.l-table-comment {
    flex-direction: column;
    padding: 5px;
  }
  .l-table-comment--editable {
    width: 100%;
  }
  .l-table-comment--editable input {
    width: 100%;
    margin-bottom: 5px;
    margin-top: 5px;
  }
  .l-table-comment--editable button {
    width: calc(50% - 4px);
    box-sizing: border-box;
  }
  .l-table {
    width: 100%;
    border: none;
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
  }
  .l-row {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    padding: 5px;
    box-sizing: border-box;
    width: calc(16.6% - 2px);
  }
  .table-header {
    display: none;
  }
  .l-row > div:first-child {
    padding: 5px;
  }
  .l-row > div:last-child {
    padding-right: 5px;
  }
  .l-row > div {
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .l-row > div span {
    line-height: 16px;
  }
  .l-row .button {
    min-width: 25px;
    height: 25px;
    background-size: 15px 15px;
    width: 100%;
    border-radius: 0;
    margin: 0;
  }
  .l-row:nth-child(2n) {
    background-color: #f8f8f8;
  }
  .l-row > div:nth-child(n) span {
    width: 100%;
  }
  .l-table[data-table-name="purchases"] {
    display: grid;
    gap: 0;
  }
  .l-table[data-table-name="purchases"] .l-row {
    display: contents;
  }

  .l-table[data-table-name="purchases"] .l-row > div span {
    overflow: auto;
    white-space: normal;
  }
  .l-table[data-table-name="purchases"] .l-row .button {
    width: auto;
    min-width: 32px;
    height: 32px;
    border-radius: 8px;
    background-size: auto;
    margin: 0 5px;
  }
}
@media (max-width: 1280px) {
  .nav-item a {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .nav-item a span {
    font-size: 12px;
  }
  .nav-item a svg {
    margin: 0 0 5px 0;
  }
}
@media (max-width: 992px) {
  .nav-menu-block {
    display: none;
  }
  .mobile-menu-button {
    display: block;
  }

  .nav-menu-block {
    position: absolute;
    z-index: 2;
    background: #fff;
    flex-direction: column;
    padding: 5px 0;
    box-shadow: 0 10px 15px #ccc;
    border-radius: 5px;
    transform: translateX(-50%);
    left: 50%;
  }
  .nav-item a {
    flex-direction: row;
    justify-content: flex-start;
    white-space: nowrap;
    padding: 5px 20px;
    margin: 5px 0;
  }
  .nav-item {
    margin-right: 0px;
  }
  .nav-item a svg {
    width: 14px;
    height: 14px;
    margin-right: 10px;
  }
  .nav-item a span {
    font-size: 16px;
  }

  .balance {
    font-size: 14px;
  }
  .l-row {
    width: calc(20% - 2px);
  }
}

@media (max-width: 768px) {
  .l-row {
    width: calc(25% - 2px);
  }
  .balance-cards {
    flex-direction: column;
  }
  .balance-item {
    width: 100%;
  }
  .billing-block-item {
    width: 100%;
  }
  .balance-block {
    width: 100%;
  }
  .balance-cards {
    width: 100%;
  }
  a.logo {
    order: 3;
    flex-shrink: 1;
    flex-grow: 1;
    text-align: center;
  }
  header {
    flex-wrap: wrap;
    gap: 10px;
  }
  nav {
    order: 1;
  }
  .balance-header {
    order: 2;
  }
  .nav-menu-block {
    transform: translate(-8px, 8px);
    left: 0;
    width: 100vw;
  }
}
@media (max-width: 640px) {
  .l-row {
    width: calc(50% - 2px);
  }
}
/* Loader */
.table-pending {
  position: relative;
}
.table-pending:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 9;
  transition: all 0.3s ease;
  background: url("/imgs/loader-dark.svg") no-repeat 50% 50%
    rgba(255, 255, 255, 0.7);
}

/* Toaster */
.toast-container {
  position: fixed;
  top: 0;
  right: 0;
  padding: 20px;
  z-index: 10;
  pointer-events: none;
}
.toast {
  background: #fff;
  box-shadow: 1px 1px 10px #ccc;
  border-radius: 3px;
  font-size: 16px;
  min-width: 340px;
  width: 340px;
  position: relative;
  /* animation: toaster-show 5s ease-in-out forwards; */
  pointer-events: all;
  margin-bottom: 10px;
}
.toast-title {
  padding: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-weight: 400;
  cursor: default;
}
.toast-title--success {
  color: #198754;
}
.toast-title--error {
  color: #dc3545;
}
.toast-title--warning {
  color: #ffc107;
}
.toast-text {
  padding: 10px;
  font-size: 14px;
  line-height: 18px;
  cursor: default;
}
.toast-close {
  position: absolute;
  top: 5px;
  right: 10px;
  cursor: pointer;
  font-size: 24px;
}
@keyframes toaster-show {
  0% {
    transform: translateX(100vw);
  }
  20% {
    transform: translateX(0);
  }
  70% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100vw);
  }
}
.tickets-list-block .section-title,
.tickets-create-block .section-title,
.tickets-details-block .section-title {
  text-align: center;
}
.block-hide {
  display: none;
}
/* Tickets */
.status--closed {
  /* color: #f8f9fa !important; */
}
.status--from-support {
  color: #198754 !important;
}
.status--from-user {
  color: #ffd65d !important;
}
.status--process {
  color: #0dcaf0 !important;
}
.status--opened {
  color: #58a8ff !important;
}
.tickets-comment--list {
  display: flex;
  flex-direction: column;
  max-width: 420px;
  box-sizing: border-box;
  gap: 5px;
  margin: 10px 0;
}
.tickets-comment {
  max-width: 400px;
  padding: 10px;
  box-sizing: border-box;
  background-color: #e5e5ea;
  border-radius: 15px;
  line-height: 18px;
  position: relative;
}
.ticket-comment--admin {
  margin-left: auto;
  background-color: #0680fe;
  color: #fff;
}
.tickets-comment-time {
  font-size: 10px;
  line-height: 10px;
  font-weight: 500;
  margin-top: 5px;
}
.ticket-comment--admin .tickets-comment-time {
  text-align: right;
}
.tickets-form textarea {
  min-height: 120px;
}
/* Mobile */
@media (max-width: 1400px) {
}
@media (max-width: 1280px) {
}
@media (max-width: 992px) {
  .nav-menu-block {
    z-index: 10;
  }
}

@media (max-width: 768px) {
}
@media (max-width: 640px) {
  .toast-container {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
  }
  .toast {
    width: 100%;
    min-width: 100%;
  }
}
