.button {
  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;
  height: 58px;
  color: #33363B;
  font-size: 14px;
  background-color: #f2e200;
  font-weight: 700;
  border-radius: 5px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  width: 100%;
  cursor: pointer;
}
.button:disabled {
  background-color: #5c5c5c;
  color: #fff;
  pointer-events: none;
}
.button--pink {
  background-color: #C401FD;
  height: 36px;
}
.button--not-styled {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0px;
}
.button--cart {
  position: relative;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 36px;
  height: 36px;
  font-weight: 600;
  padding-left: 20px;
  border: 1px solid #f2e200;
  color: #f2e200;
  background-color: rgba(34, 34, 34, 0.6);
  overflow: hidden;
}
.button--cart:after,
.button--cart:before {
  position: absolute;
  content: '';
}
.button--cart:after {
  position: absolute;
  content: '';
  right: -1px;
  top: -1px;
  width: 36px;
  height: 36px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../img/sprite.svg#cart);
}
.button--cart:before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 20px;
  content: 'В корзине';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #f2e200;
  font-weight: 600;
  color: #222222;
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.button--cart.added {
  background-color: #f2e200;
  color: #222222;
}
.button--cart.added:before {
  opacity: 1;
  visibility: visible;
}
.button--border {
  border: 1px solid #f2e200;
  background-color: transparent;
  color: #fff;
  font-weight: 400;
}
.button--download {
  height: 40px;
  margin-top: 15px;
  width: 185px;
}
@media (max-width: 1024px) {
  .button {
    height: 46px;
  }
  .button--cart {
    height: 36px;
  }
  .button--download {
    height: 36px;
    font-size: 12px;
    width: 160px;
  }
}
@media (min-width: 577px) {
  .button:hover {
    background-color: rgba(242, 225, 1, 0.8);
    -webkit-box-shadow: 0px 0px 10px rgba(242, 225, 1, 0.3);
    box-shadow: 0px 0px 10px rgba(242, 225, 1, 0.3);
  }
  .button--not-styled:hover {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .button--cart:hover {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0.4);
  }
  .button--cart.added {
    background-color: #f2e200;
  }
  .button--border:hover {
    background-color: #f2e200;
    color: #33363B;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
.input {
  padding: 16px 20px;
  height: 58px;
  font-size: 18px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border-radius: 5px;
  width: 100%;
  color: #fff;
  border: 1px solid #5F6267;
  background-color: transparent;
}
.input::-webkit-input-placeholder {
  color: #fff;
}
.input::-moz-placeholder {
  color: #fff;
}
.input:-ms-input-placeholder {
  color: #fff;
}
.input::-ms-input-placeholder {
  color: #fff;
}
.input::placeholder {
  color: #fff;
}
.input:focus {
  outline: none;
}
.input__label {
  font-size: 18px;
  margin-bottom: 17px;
  text-align: center;
}
.input--select {
  font-size: 14px;
  font-weight: 400;
  padding: 6px 20px 6px 20px;
}
.input--select option {
  font-size: 14px;
  color: #33363B;
  font-weight: 600;
  border-radius: 4px;
}
.input--select option:checked {
  background-color: #fff;
  color: #BA9B64;
}
.input--textarea {
  min-height: 80px;
  resize: none;
}
@media (max-width: 1024px) {
  .input {
    font-size: 15px;
    padding: 10px 15px;
    height: 46px;
  }
}
@media (max-width: 576px) {
  .input {
    font-size: 13px;
  }
}
@media (min-width: 577px) {
  .input:hover {
    border-color: #f2e200;
  }
}
* {
  font-family: Montserrat;
}
.page {
  position: relative;
  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-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.2;
  overflow-x: hidden;
  overflow-y: scroll;
  min-width: 320px;
  color: #8E8E8E;
  background-color: #222222;
  padding-top: 55px;
}
.page__blackout {
  position: fixed;
  z-index: 4;
  cursor: pointer;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.page__blackout.active,
.page__blackout.z-active,
.page__blackout.private-event {
  opacity: 1;
  visibility: visible;
}
.page__blackout.z-active {
  z-index: 5;
}
.page__blackout.private-event {
  background-color: #222222;
  height: calc(100% - 55px);
}
@media (max-width: 1200px) {
  .page__blackout.private-event {
    height: calc(100% - 80px);
  }
}
a,
input,
button,
label,
select {
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
img {
  pointer-events: none;
}
@media (max-width: 1200px) {
  .page {
    padding-top: 81px;
  }
}
@media (max-width: 1024px) {
  .page {
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .page {
    font-size: 13px;
  }
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Light.woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff");
  font-weight: 700;
  font-style: normal;
}
.loader {
  display: none;
  width: 100px;
  height: 100px;
  position: fixed;
  z-index: 10;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.loader.active {
  display: block;
}
.blue {
  color: #4768CF;
}
.yellow {
  color: #f2e200;
}
.container {
  max-width: 1560px;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 1200px) {
  .container {
    padding: 0 25px;
  }
}
@media all and (max-width: 767px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.invisible {
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  visibility: hidden;
  opacity: 0;
}
.invisible.active {
  visibility: visible;
  opacity: 1;
}
.hide-bottom {
  position: absolute;
  z-index: 2;
  bottom: 10px;
  height: calc(100% - 157px);
  -webkit-transform: translateY(calc(100% + 10px));
  transform: translateY(calc(100% + 10px));
}
.hide-bottom.active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.hide-top {
  position: absolute;
  z-index: 1;
  top: 143px;
  width: 100%;
  height: calc(100% - 153px);
  background-color: #ececec;
  overflow: hidden;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
.hide-top.active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.horizon:after {
  position: absolute;
  z-index: 1;
  content: '';
  left: 0;
  width: 100%;
  height: 48px;
}
.horizon-top:before {
  position: absolute;
  z-index: 1;
  content: '';
  left: 0;
  width: 100%;
  height: 48px;
  -webkit-transform: matrix(1, 0, 0, -1, 0, 0);
  transform: matrix(1, 0, 0, -1, 0, 0);
}
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}
/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}
/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
}
/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
}
/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  /* 2 */
}
/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bold;
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
address {
  font-style: normal;
}
/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
  max-width: 100%;
}
/* Forms
   ========================================================================== */
button {
  background-color: transparent;
  border: none;
}
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.2;
  /* 1 */
  margin: 0;
  /* 2 */
}
/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}
/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}
/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  padding: 0;
  -webkit-appearance: button;
}
/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0;
}
/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}
/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}
/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}
/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}
/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}
/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}
/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}
/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}
ul,
ol {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.album__content {
  margin-top: 30px;
}
.album__img-wrap {
  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;
  position: relative;
  height: 310px;
}
.album__img-wrap--mobile {
  display: none;
}
.album__img-wrap:before {
  position: absolute;
  z-index: 1;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.album__img {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.album__img-title {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 33px;
  font-weight: bold;
}
.album__img-price {
  display: none;
}
.album__actions {
  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: #33363B;
  padding: 20px 40px;
  margin-bottom: 30px;
}
.album__actions--mobile {
  display: none;
}
.album__buy-button {
  position: relative;
  max-width: 218px;
  overflow: hidden;
}
.album__buy-button:before {
  position: absolute;
  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;
  content: 'В корзине';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #f2e200;
  font-weight: 600;
  color: #222222;
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.album__buy-button.added {
  pointer-events: none;
}
.album__buy-button.added:before {
  opacity: 1;
  visibility: visible;
}
.album__price {
  max-width: 218px;
  margin-left: 20px;
  pointer-events: none;
}
.album__title-digit {
  position: relative;
  font-size: 23px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}
.album__title-digit span {
  position: absolute;
  bottom: 11px;
  left: calc(100% + 10px);
  font-size: 14px;
  font-weight: 300;
  color: #8E8E8E;
}
.album__desc {
  margin-top: 15px;
  text-align: center;
}
.album__desc--white {
  text-align: left;
  color: #fff;
  font-weight: 500;
  margin-top: 30px;
}
.album__desc--white * {
  font-weight: 500;
  color: #fff;
}
.album__desc--white a {
  text-decoration: underline;
  color: #BA9B64;
}
.album__people-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 60px;
  margin-top: 20px;
  padding: 10px 20px;
}
.album__people-list.is-author {
  gap: 40px 60px;
}
@media (max-width: 1024px) {
  .album__people-list.is-author {
    gap: 20px;
    padding: 0 10px;
  }
}
@media (max-width: 1024px) {
  .album__people-item.is-author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.album__people-item.is-author .album__people-link:after {
  display: none;
}
@media (max-width: 1024px) {
  .album__people-item.is-author .album__people-link {
    width: 60px;
    height: 60px;
  }
}
.album__people-item.is-author .album__people-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.album__people-link {
  position: relative;
  display: block;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 2px solid #5F6267;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
}
.album__people-link:after {
  position: absolute;
  content: 'выбрать';
  bottom: -22px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 10px;
  color: #fff;
  font-weight: 300;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  opacity: 0;
}
.album__people-link:hover {
  border-color: #f2e200;
}
.album__people-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
  border-radius: 50%;
  overflow: hidden;
}
.album__people-button {
  display: none;
  font-size: 10px;
  width: 70px;
  height: 19px;
  border-radius: 5px;
  background-color: #BA9B64;
  margin: 6px auto 0;
  color: #33363B;
}
@media (max-width: 1024px) {
  .album__people-button {
    margin-top: 7px;
  }
}
.album__people-button:hover {
  background-color: #f2e200;
}
@media (min-width: 1025px) {
  .album__people-item.is-author .album__people-link:hover {
    border-width: 2px;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  .album__people-item.is-author .album__people-link:hover:after {
    opacity: 1;
  }
  .album__people-link:hover {
    border-width: 5px;
    -webkit-transform: scale(1.2162);
    transform: scale(1.2162);
  }
  .album__people-link:hover:after {
    opacity: 1;
  }
}
@media (max-width: 1024px) {
  .album__content {
    margin-top: 20px;
  }
  .album__img-wrap {
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
  }
  .album__img-wrap--mobile {
    display: block;
  }
  .album__img-title {
    display: none;
  }
  .album__img-price {
    position: absolute;
    z-index: 2;
    bottom: 10px;
    left: 10px;
    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;
    height: 58px;
    color: #33363B;
    font-size: 14px;
    background-color: #f2e200;
    font-weight: 700;
    border-radius: 5px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
    width: 100%;
    cursor: pointer;
    height: 46px;
    width: auto;
    min-width: 160px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .album__img-price:disabled {
    background-color: #5c5c5c;
    color: #fff;
    pointer-events: none;
  }
  .album__img-price--pink {
    background-color: #C401FD;
    height: 36px;
  }
  .album__img-price--not-styled {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0px;
  }
  .album__img-price--cart {
    position: relative;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-radius: 36px;
    height: 36px;
    font-weight: 600;
    padding-left: 20px;
    border: 1px solid #f2e200;
    color: #f2e200;
    background-color: rgba(34, 34, 34, 0.6);
    overflow: hidden;
  }
  .album__img-price--cart:after,
  .album__img-price--cart:before {
    position: absolute;
    content: '';
  }
  .album__img-price--cart:after {
    position: absolute;
    content: '';
    right: -1px;
    top: -1px;
    width: 36px;
    height: 36px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url(../img/sprite.svg#cart);
  }
  .album__img-price--cart:before {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 20px;
    content: 'В корзине';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #f2e200;
    font-weight: 600;
    color: #222222;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .album__img-price--cart.added {
    background-color: #f2e200;
    color: #222222;
  }
  .album__img-price--cart.added:before {
    opacity: 1;
    visibility: visible;
  }
  .album__img-price--border {
    border: 1px solid #f2e200;
    background-color: transparent;
    color: #fff;
    font-weight: 400;
  }
  .album__img-price--download {
    height: 40px;
    margin-top: 15px;
    width: 185px;
  }
  .album__actions {
    background-color: transparent;
    padding: 0;
    margin-top: 15px;
    margin-bottom: 20px;
  }
  .album__actions--mobile {
    display: block;
  }
  .album__price {
    display: none;
  }
  .album__buy-button {
    width: 100%;
    background-color: #C401FD;
    color: #fff;
    max-width: 100%;
  }
  .album__buy-button:not(.added):hover {
    background-color: rgba(196, 1, 253, 0.8);
    -webkit-box-shadow: 0px 0px 20px rgba(194, 1, 253, 0.24);
    box-shadow: 0px 0px 20px rgba(194, 1, 253, 0.24);
  }
  .album__buy-button:before {
    background-color: #C401FD;
    color: #fff;
  }
  .album__title-digit {
    font-size: 18px;
  }
  .album__title-digit span {
    bottom: 5px;
    left: calc(100% + 5px);
    font-size: 12px;
  }
  .album__people-list {
    gap: 20px;
    padding: 0 10px;
  }
  .album__people-link {
    width: 48px;
    height: 48px;
    border: 1px solid #5F6267;
  }
  .album__people-link:after {
    display: none;
  }
}
@media (max-width: 576px) {
  .album__img-wrap {
    height: 150px;
  }
  .album__img-title {
    display: none;
  }
  .album__img-price {
    height: 36px;
    min-width: 125px;
  }
  .album__actions {
    margin-top: 10px;
    margin-bottom: 15px;
  }
  .album__title-digit {
    font-weight: 500;
    font-size: 15px;
  }
  .album__desc {
    margin-top: 10px;
  }
}
.albums {
  margin-top: 60px;
}
.albums__title {
  line-height: 1;
  text-align: center;
  font-size: 35px;
  color: #fff;
}
.albums__event-info {
  margin-top: 30px;
  text-align: center;
}
.albums__event-info span + span {
  margin-left: 60px;
}
.albums__list {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 60px;
  gap: 60px 6%;
}
.albums__item {
  width: 387px;
  height: 100vh;
  max-height: 387px;
}
.albums__item-link {
  position: relative;
  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;
  height: 100%;
  width: 100%;
}
.albums__img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.albums__img-wrap:after {
  position: absolute;
  content: '';
  z-index: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.albums__img-wrap:before {
  position: absolute;
  content: '';
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  width: calc(100% - 64px);
  height: calc(100% - 64px);
  padding: 32px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/album-round.svg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.albums__img {
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  overflow: hidden;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.albums__img-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  z-index: 1;
  top: 50px;
  right: 50px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.albums__author-info {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  text-align: right;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}
.albums__author-info span {
  display: block;
  line-height: 1;
  color: #BA9B64;
  border-bottom: 1px solid;
}
.albums__circle {
  position: relative;
  margin-left: 12px;
  width: 70px;
  height: 70px;
}
.albums__author-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 50%;
  border: 6px solid #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.albums__images-count {
  position: absolute;
  top: 0;
  left: 0;
  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;
  width: 100%;
  height: 100%;
  font-size: 28px;
  font-weight: bold;
  color: #222222;
  background-color: #f2e200;
  border-radius: 50%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  opacity: 0;
}
.albums__image-desc {
  position: absolute;
  top: 28px;
  right: -50px;
  font-size: 14px;
  color: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  opacity: 0;
}
.albums__item-title {
  font-size: 33px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 2;
}
.albums__item-title span {
  font-size: 26px;
}
@media (max-width: 1600px) {
  .albums__list {
    gap: 30px 3%;
  }
}
@media (max-width: 1350px) {
  .albums__item {
    width: 320px;
    max-height: 320px;
  }
}
@media (max-width: 1200px) {
  .albums {
    margin-top: 30px;
  }
  .albums__event-info {
    font-weight: 500;
    margin-top: 15px;
  }
  .albums__event-info span {
    display: block;
  }
  .albums__event-info span + span {
    margin-left: 0;
    margin-top: 5px;
  }
  .albums__title {
    font-size: 24px;
  }
  .albums__item-title {
    font-size: 28px;
  }
  .albums__item-title span {
    font-size: 22px;
  }
}
@media (min-width: 1025px) {
  .albums__item-link:before {
    position: absolute;
    content: '';
    top: -24px;
    left: -24px;
    width: 125%;
    height: 120%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url(../img/stars-bg.svg);
    -webkit-transition: 0.2s;
    transition: 0.2s;
    opacity: 0;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  .albums__item-link:hover:before {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  .albums__item-link:hover .albums__img {
    width: calc(100% - 64px);
    height: calc(100% - 64px);
  }
  .albums__item-link:hover .albums__img-wrap:before {
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
    padding: 12px;
    background-image: url(../img/album-round-yellow.svg);
  }
  .albums__item-link:hover .albums__img-wrap:after {
    opacity: 0.5;
    width: calc(100% - 64px);
    height: calc(100% - 64px);
  }
  .albums__item-link:hover .albums__img-info {
    top: calc(100% - 100px);
    right: 30px;
  }
  .albums__item-link:hover .albums__author-info {
    display: none;
  }
  .albums__item-link:hover .albums__author-img {
    opacity: 0;
  }
  .albums__item-link:hover .albums__images-count {
    opacity: 1;
  }
  .albums__item-link:hover .albums__image-desc {
    opacity: 1;
  }
  .albums__item-title span {
    display: block;
    margin: 0 46px;
  }
}
@media (max-width: 1024px) {
  .albums {
    margin-top: 20px;
  }
  .albums__event-info {
    font-size: 13px;
  }
  .albums__title {
    font-size: 16px;
  }
  .albums__list {
    display: block;
    margin-top: 15px;
    gap: 0;
  }
  .albums__item {
    width: 100%;
    height: initial;
    max-height: initial;
  }
  .albums__item + .albums__item {
    margin-top: 1px;
  }
  .albums__item-link {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    height: initial;
    background-color: #33363B;
    padding: 5px;
  }
  .albums__item-link:hover {
    background-color: #5F6267;
  }
  .albums__img-wrap {
    position: relative;
    top: 0;
    left: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #5F6267;
  }
  .albums__img-wrap:before {
    display: none;
  }
  .albums__img {
    position: relative;
  }
  .albums__img-info {
    display: none;
    position: relative;
    top: initial;
    right: initial;
  }
  .albums__circle {
    display: none;
  }
  .albums__item-title {
    font-size: 15px;
    margin-left: 11px;
    padding: 5px 0;
  }
  .albums__item-title br {
    display: none;
  }
  .albums__item-title span {
    font-size: 15px;
  }
}
.notify-modal {
  position: fixed;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: 95%;
  max-width: 500px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(-50%, -50%) scale(0.9);
  transform: translate(-50%, -50%) scale(0.9);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  background-color: #33363B;
}
.notify-modal.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}
.notify-modal.success .notify-modal__success {
  opacity: 1;
  visibility: visible;
}
.notify-modal__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 50px 20px 30px;
  height: 100%;
}
.notify-modal__close-modal {
  position: absolute;
  z-index: 1;
  width: 40px;
  height: 40px;
  top: 10px;
  right: 10px;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(../img/close-modal.svg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.notify-modal__close-modal:hover {
  -webkit-transform: scale(0.85);
  transform: scale(0.85);
}
.notify-modal__title {
  text-align: center;
  color: #fff;
  font-size: 23px;
}
.notify-modal__form {
  max-width: 400px;
  width: 100%;
  margin: 30px auto 0;
}
.notify-modal__success {
  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;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 23px;
  color: #BA9B64;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  background-color: #33363B;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  padding: 0 10px;
  text-align: center;
}
.notify-modal__close-btn {
  width: 100%;
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .notify-modal__wrap {
    padding: 50px 15px 30px;
  }
  .notify-modal__close-modal {
    position: absolute;
    z-index: 1;
    width: 30px;
    height: 30px;
  }
  .notify-modal__title {
    font-size: 18px;
  }
  .notify-modal__form {
    margin: 20px auto 0;
  }
  .notify-modal__success {
    font-size: 20px;
  }
}
.people__list {
  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;
  gap: 1px;
  margin-top: 30px;
}
.people__item {
  width: calc(16.67% - 2px);
}
.people__open-modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  background-color: #33363B;
  padding: 10px 20px 14px;
  height: 360px;
  cursor: pointer;
}
.people__open-modal.is-author .people__img-wrap {
  height: calc(100% - 65px);
}
@media (max-width: 769px) {
  .people__open-modal.is-author .people__img-wrap {
    height: 100%;
  }
}
.people__open-modal.is-author .people__cart-button {
  display: none;
}
.people__item-info {
  position: relative;
  z-index: 1;
  text-align: right;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}
.people__item-album span {
  color: #BA9B64;
  border-bottom: 1px solid;
  margin-bottom: 6px;
}
.people__img-wrap {
  position: absolute;
  top: 50px;
  width: calc(100% - 40px);
  height: calc(100% - 110px);
  left: 20px;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
}
.people__img-wrap:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
.people__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.people__cart-button {
  margin-top: auto;
}
.people__modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: fixed;
  z-index: 5;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 400px;
  -webkit-transform: translate(-50%, -50%) scale(0.7);
  transform: translate(-50%, -50%) scale(0.7);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
}
.people__modal.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}
.people__modal .people__item-info {
  position: absolute;
  top: 10px;
  left: 0;
  text-align: center;
  width: 100%;
}
.people__modal .people__img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
  overflow: hidden;
}
.people__modal .people__img-wrap:after {
  background-color: rgba(0, 0, 0, 0.2);
}
.people__modal .people__img {
  position: relative;
  -o-object-fit: contain;
  object-fit: contain;
}
.people__modal .people__cart-button {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: calc(100% - 40px);
}
.people__modal-close {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../img/sprite.svg#close);
}
@media (max-width: 1350px) {
  .people__item {
    width: calc(20% - 2px);
  }
}
@media (max-width: 1200px) {
  .people__item {
    width: calc(33.3% - 2px);
  }
}
@media (max-width: 1024px) {
  .people__list {
    margin-top: 20px;
  }
  .people__item .people__img-wrap {
    left: 10px;
    width: calc(100% - 20px);
  }
  .people__item-info {
    font-size: 13px;
  }
  .people__open-modal {
    padding: 10px;
  }
}
@media (min-width: 769px) {
  .people__item:hover .people__img-wrap {
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
  }
  .people__item:hover .people__img-wrap:after {
    background-color: rgba(0, 0, 0, 0.2);
  }
}
@media (max-width: 768px) {
  .people__list {
    max-width: 576px;
  }
  .people__item {
    width: calc(50% - 2px);
    border-radius: 10px;
    overflow: hidden;
  }
  .people__item .people__item-info {
    display: none;
  }
  .people__item .people__img-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 60px);
  }
  .people__item .people__img-wrap:after {
    background-color: rgba(0, 0, 0, 0.2);
  }
  .people__open-modal {
    padding: 0 10px 15px;
  }
}
@media (max-width: 576px) {
  .people__list {
    margin-top: 15px;
  }
}
.author {
  /* &__buttons-list {
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 5px;
    border: 1px dashed @yellow;
    padding: 3px;
    width: max-content;
    margin: 40px auto 0;
  }

  &__buttons-item {
    width: calc(33.3% + 20px);
  }

  &__block-button {
    padding-left: 15px;
    padding-right: 15px;
    height: 52px;
    background-color: transparent;
    color: @yellow;

    &:hover {
      color: @yellow;
      background-color: @dark;
      box-shadow: none;
    }

    &:not(:hover) {
      box-shadow: none;
    }

    &.active {
      background-color: @yellow;
      color: @black;
    }
  } */
}
.author__content {
  margin-top: 30px;
}
.author__content--author {
  background-color: #33363B;
  padding: 31px 20px 80px;
}
.author__buttons-list {
  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;
  gap: 20px;
  margin: 40px auto 0;
  max-width: 1000px;
}
.author__block-button {
  display: block;
  width: auto;
  background-color: transparent;
  text-align: center;
  color: #fff;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
  white-space: nowrap;
  font-weight: 600;
}
.author__block-button:hover {
  border-color: #f2e200;
}
.author__block-button:not(:hover) {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.author__block-button.active {
  color: #f2e200;
  border-color: #f2e200;
}
.author__blocks {
  margin-top: 40px;
}
.author__block {
  display: none;
}
.author__block.active {
  display: block;
}
.author__title {
  font-size: 21px;
  font-weight: 500;
  color: #fff;
}
.author__title--center {
  text-align: center;
}
.author__info-block {
  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;
  padding: 10px 0 40px;
  border-bottom: 1px solid #5F6267;
}
.author__name {
  font-size: 25px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
}
.author__phone {
  margin-top: 13px;
}
.author__amount-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: nowrap;
  margin-left: 40px;
}
.author__amount-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.author__amount {
  margin-left: 23px;
  color: #fff;
}
.author__amount span {
  font-size: 25px;
  font-weight: bold;
  line-height: 1;
  margin-right: 10px;
}
.author__order-button {
  width: 154px;
  margin-left: 40px;
}
.author__statistic-block {
  border-bottom: 1px solid #5F6267;
  padding-bottom: 40px;
}
.author__statistic-block + .author__title {
  margin-top: 40px;
}
.author__events-list {
  margin: 20px auto 0;
}
.author__empty-events-item {
  font-weight: 500;
  color: #BA9B64;
  text-align: center;
}
.author__events-item {
  position: relative;
  background-color: #222222;
}
.author__events-item .index {
  /* &__event-link {
        pointer-events: none;
      } */
}
.author__events-item .index__event-link {
  padding: 20px 74px 20px 20px;
  background-color: #222222;
}
.author__events-item .index__event-link:hover {
  background-color: #313030;
}
.author__events-item .index__event-link + .author__album-button--qr {
  position: absolute;
  right: 20px;
  top: 28px;
}
@media (max-width: 1200px) {
  .author__events-item .index__event-link + .author__album-button--qr {
    right: 15px;
    top: 30px;
  }
}
@media (max-width: 1200px) {
  .author__events-item .index__event-link {
    padding-right: 64px;
  }
}
@media (max-width: 768px) {
  .author__events-item .index__event-link {
    padding: 10px 64px 10px 10px;
  }
}
.author__events-item .index__event-img {
  width: 60px;
  height: 60px;
}
.author__events-item .index__event-content {
  margin-left: 15px;
}
.author__events-item .index__event-title {
  font-size: 18px;
}
@media (max-width: 768px) {
  .author__events-item .index__event-title {
    font-size: 16px;
  }
}
.author__events-item .index__event-info {
  font-size: 15px;
}
.author__events-item + .author__events-item {
  margin-top: 20px;
}
.author__event-albums {
  padding: 20px;
}
.author__album-card {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 20px;
  background-color: #33363B;
}
.author__album-card + .author__album-card {
  margin-top: 20px;
}
.author__album-card-wrap .index__event-title {
  font-size: 14px;
  font-weight: 400;
  word-wrap: break-word;
}
.author__album-card-wrap .index__event-title span {
  font-size: 14px;
  font-weight: 600;
}
.author__album-card-wrap .index__event-title:first-child {
  font-size: 15px;
  font-weight: 600;
}
.author__album-card-wrap .index__event-title + .index__event-title {
  margin-top: 8px;
}
.author__album-card-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 10px;
}
.author__album-button {
  height: 42px;
  width: 42px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
}
.author__album-button.delete_album {
  color: #fff;
  background-color: #FF3B30;
  background-image: url(../img/trash.svg);
}
.author__album-button.delete_album:hover {
  background-color: #c82f27;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.author__album-button--link {
  width: 140px;
}
.author__album-button--qr {
  background-image: url(../img/qr-code.svg);
}
.author__form {
  position: relative;
  max-width: 600px;
  margin: 20px auto 0;
}
.author__form .login__error-text {
  text-align: center;
  bottom: -30px;
}
.author__form .login__error-text.success {
  color: #55c900;
}
.author__form.success .author__success-block {
  opacity: 1;
  visibility: visible;
}
.author__form.loading:before {
  position: absolute;
  z-index: 1;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20%;
  background-image: url(../img/loader.svg);
  background-color: #222222a6;
}
.author__form .login__checkbox-label {
  margin-left: 0;
  text-align: left;
  color: #f2e200;
  padding-left: 40px;
}
.author__form .login__checkbox-label span {
  border: none;
}
.author__input {
  height: 52px;
  font-size: 14px;
}
.author__input + .author__input {
  margin-top: 15px;
}
.author__input[type="file"] {
  padding-top: 0;
  padding-left: 0;
  cursor: pointer;
}
.author__input[type="file"]:hover::file-selector-button {
  background-color: #5F6267;
}
.author__input[type="file"]::file-selector-button {
  font-weight: 500;
  color: #fff;
  border: none;
  border-right: 1px solid #5F6267;
  height: 52px;
  padding: 0 15px;
  margin-right: 10px;
  cursor: pointer;
  background-color: #33363B;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.author__label {
  display: block;
  color: #fff;
  font-weight: 500;
  margin-top: 25px;
}
.author__label input {
  margin-top: 10px;
}
.author__label.hidden {
  display: none;
}
.author__button {
  max-width: 218px;
  margin: 30px auto 0;
}
.author__select-wrap {
  position: relative;
}
.author__select-wrap span {
  position: absolute;
  z-index: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  right: 15px;
  width: 12px;
  height: 10px;
  border-width: 9px 6px 0;
  border-radius: 2px 2px 10px;
  border-color: #ffffff transparent transparent;
  border-style: solid;
  pointer-events: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.author__select-wrap + .author__select {
  margin-top: 15px;
}
.author__select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 52px;
  min-height: 52px;
  cursor: pointer;
}
.author__select[multiple] {
  overflow: hidden;
  min-height: 100px;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 10px;
}
.author__select[multiple] option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  height: 30px;
  padding-left: 10px;
  padding-right: 10px;
}
.author__select[multiple] option:checked {
  background-color: #5F6267;
  color: #BA9B64;
}
.author__select[multiple] option + option {
  margin-top: 10px;
}
.author__select:open + span {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.author__progress-bar-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  height: 30px;
  overflow: hidden;
  background-color: #5F6267;
  border-radius: 5px;
  margin-top: 10px;
}
.author__progress-bar {
  position: relative;
  background-color: rgba(47, 255, 78, 0.899);
  height: 30px;
}
.author__progress-bar .progress_status {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}
.author__success-block {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  top: -45px;
  left: -1px;
  width: calc(100% + 1px);
  height: calc(100% + 60px);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  visibility: hidden;
  opacity: 0;
  background-color: #33363b;
}
.author__success-title {
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}
.author__success-title span {
  display: block;
  font-weight: 500;
  font-size: 17px;
  margin-top: 8px;
}
.author__success-buttons-wrap {
  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;
  gap: 20px;
  margin: 30px auto 0;
  width: 100%;
}
.author__success-button {
  max-width: 200px;
  width: 100%;
}
.author__success-button.album_goto_list {
  border: 1px solid #f2e200;
  background: transparent;
  color: #f2e200;
}
.author__success-button span {
  margin-left: 6px;
  color: #fff;
}
@media (max-width: 1024px) {
  .author {
    /* &__buttons-list {
      width: 100%;
      margin-top: 30px;
    }

    &__block-button {
      height: 42px;
      padding-left: 10px;
      padding-right: 10px;
      font-size: 12px;
    } */
  }
  .author__content {
    margin-top: 20px;
  }
  .author__buttons-list {
    margin-top: 30px;
    gap: 10px;
  }
  .author__block-button {
    font-size: 16px;
    font-weight: 500;
    white-space: initial;
  }
  .author__blocks {
    margin-top: 20px;
  }
  .author__title {
    font-size: 16px;
  }
  .author__info-block {
    display: block;
    padding-top: 0;
    padding-bottom: 20px;
  }
  .author__name {
    font-size: 18px;
  }
  .author__phone {
    margin-top: 5px;
  }
  .author__amount-block {
    margin-left: 0;
    margin-top: 20px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .author__amount-wrap {
    display: block;
  }
  .author__amount {
    margin-left: 0;
    margin-top: 5px;
  }
  .author__amount span {
    font-size: 18px;
    margin-right: 0;
    margin-top: 7px;
  }
  .author__order-button {
    width: 124px;
    margin-left: 20px;
  }
  .author__statistic-block {
    padding-bottom: 20px;
  }
  .author__statistic-block + .author__title {
    margin-top: 20px;
  }
  .author__album-card {
    display: block;
  }
  .author__album-card-buttons {
    gap: 20px;
    margin-top: 15px;
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .author__content {
    padding: 20px 10px 40px;
  }
  .author__name {
    font-size: 16px;
  }
  .author__amount span {
    font-size: 16px;
  }
  .author__event-albums {
    padding: 13px;
  }
  .author__album-card {
    padding: 13px;
  }
  .author__album-card + .author__album-card {
    margin-top: 10px;
  }
  .author__block-button {
    font-size: 12px;
  }
  .author__album-button {
    font-size: 15px;
  }
  .author__album-button.delete_album {
    width: 40px;
    height: 40px;
    color: #fff;
    background-color: #FF3B30;
    background-image: url(../img/trash.svg);
  }
  .author__album-button.delete_album:hover {
    background-color: #c82f27;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .author__album-button--qr {
    background-image: url(../img/qr-code.svg);
  }
}
@media (max-width: 576px) {
  .author__success-buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    margin: 20px auto 0;
  }
}
.order-modal {
  position: fixed;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: 95%;
  max-width: 1480px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(-50%, -50%) scale(0.9);
  transform: translate(-50%, -50%) scale(0.9);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  background-color: #33363B;
  overflow: hidden;
  height: 95%;
  max-height: 720px;
}
.order-modal.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}
.order-modal.success .order-modal__success {
  opacity: 1;
  visibility: visible;
}
.order-modal__wrap {
  padding: 40px 20px;
  height: 100%;
}
.order-modal__close-modal {
  position: absolute;
  z-index: 1;
  width: 40px;
  height: 40px;
  top: 10px;
  right: 10px;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(../img/close-modal.svg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.order-modal__close-modal:hover {
  -webkit-transform: scale(0.85);
  transform: scale(0.85);
}
.order-modal__title {
  text-align: center;
  color: #fff;
  font-size: 32px;
}
.order-modal__form {
  max-width: 476px;
  width: 100%;
  margin: 30px auto 0;
}
.order-modal__inputs-wrap {
  overflow: auto;
  height: calc(100% - 224px);
  padding-right: 10px;
  margin-top: 20px;
}
@supports (-moz-appearance:none) {
  .order-modal__inputs-wrap {
    scrollbar-width: thin;
    scrollbar-color: #f2e200 #5F6267;
  }
}
.order-modal__inputs-wrap::-webkit-scrollbar {
  width: 5px;
}
.order-modal__inputs-wrap::-webkit-scrollbar-track {
  background: #5F6267;
  border-radius: 3px;
}
.order-modal__inputs-wrap::-webkit-scrollbar-thumb {
  background: #f2e200;
  border-radius: 3px;
}
.order-modal__inputs-wrap::-webkit-scrollbar-thumb:hover {
  background: #f2e200;
}
.order-modal__label {
  display: none;
  text-align: center;
  color: #8E8E8E;
  font-weight: 500;
  font-size: 13px;
}
.order-modal__label.active {
  display: block;
}
.order-modal__label + .order-modal__label {
  margin-top: 20px;
}
.order-modal__label .author__select-wrap {
  margin-top: 20px;
}
.order-modal__input {
  margin-top: 10px;
}
.order-modal__input[type="card"] {
  text-align: center;
}
.order-modal__input[type="number"] {
  text-align: center;
}
.order-modal__input.input--select {
  height: 58px;
  margin-top: 0;
}
.order-modal__success {
  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;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 23px;
  color: #BA9B64;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  background-color: #33363B;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  padding: 0 10px;
  text-align: center;
}
.order-modal__close-btn {
  width: 100%;
  max-width: 218px;
  margin: 20px auto 0;
}
@media (max-width: 1024px) {
  .order-modal {
    max-height: 505px;
  }
  .order-modal__wrap {
    padding: 40px 20px;
  }
  .order-modal__close-modal {
    position: absolute;
    z-index: 1;
    width: 30px;
    height: 30px;
  }
  .order-modal__title {
    font-size: 18px;
  }
  .order-modal__form {
    margin: 20px auto 0;
  }
  .order-modal__label + .order-modal__label {
    margin-top: 10px;
  }
  .order-modal__label .author__select-wrap {
    margin-top: 10px;
  }
  .order-modal__input {
    margin-top: 10px;
  }
  .order-modal__input.input--select {
    height: 46px;
    margin-top: 0;
    min-height: 46px;
  }
  .order-modal__success {
    font-size: 20px;
  }
}
.orders__list {
  margin-top: 25px;
}
.orders__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #222222;
  padding: 25px 20px;
  color: #fff;
}
.orders__item + .orders__item {
  margin-top: 20px;
}
.orders__item-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}
.orders__item-bottom {
  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;
  gap: 40px;
  margin-left: auto;
}
.orders__activity {
  background-color: #33363B;
  padding: 8px 10px;
  font-size: 15px;
  border-radius: 4px;
  font-weight: 500;
  color: #a3a3a3;
}
.orders__activity.active {
  color: #56ff00;
}
.orders__activity--mobile {
  display: none;
}
@media (max-width: 1024px) {
  .orders__list {
    margin-top: 15px;
  }
}
@media (max-width: 768px) {
  .orders__item {
    display: block;
    padding: 15px 10px;
  }
  .orders__item + .orders__item {
    margin-top: 10px;
  }
  .orders__item-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    position: relative;
    gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .orders__activity {
    display: none;
    margin-left: auto;
    font-size: 13px;
  }
  .orders__activity--mobile {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
  }
  .orders__item-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
  }
}
.sells__list {
  margin-top: 25px;
}
.sells__item {
  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;
  background-color: #222222;
  padding: 20px;
  color: #fff;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.sells__item b {
  font-weight: 600;
}
.sells__item + .sells__item {
  margin-top: 20px;
}
.sells__item .index__event-img {
  border: 3px solid #33363B;
  border-radius: 0px;
  -webkit-transition: 0.05s;
  transition: 0.05s;
}
.sells__item .index__event-title {
  font-size: 16px;
}
.sells__item:not(.active):hover {
  background-color: #313030;
}
.sells__item:not(.active) .sells__event-content-list {
  display: none;
}
.sells__item:not(.active) .sells__album {
  display: none;
}
.sells__item:not(.active) .sells__item-info {
  margin-left: auto;
}
.sells__item:not(.active) .index__event-content {
  margin-left: 0;
}
.sells__item:not(.active) .index__event-img {
  width: 45px;
  height: 55px;
  border-radius: 0px;
}
.sells__item:not(.active) .index__event-title {
  margin-left: 40px;
}
.sells__item:not(.active) .index__event-info {
  display: none;
}
.sells__item.active {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.sells__item.active .sells__content {
  background-color: #33363B;
  padding: 20px;
  margin-top: 20px;
  width: 100%;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.sells__item.active .sells__event-img,
.sells__item.active .sells__item-event-name {
  display: none;
}
.sells__item.active .sells__item-info {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}
.sells__item.active .index__event-content {
  margin-left: 0;
}
.sells__item.active .index__event-img {
  width: 230px;
  height: 290px;
}
.sells__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.sells__event-content-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}
.sells__event-content-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}
.sells__album {
  font-size: 15px;
  font-weight: 500;
}
.sells__album span {
  font-weight: 400;
  color: #8E8E8E;
  border-bottom: 1px solid;
}
.sells__item-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sells__amount {
  margin-left: 40px;
}
.sells__amount span {
  margin-left: 15px;
}
@media (max-width: 1200px) {
  .sells__list {
    margin-top: 15px;
  }
}
@media (max-width: 1024px) {
  .sells__list {
    margin-top: 15px;
  }
  .sells__item.active .index__event-img {
    width: 150px;
    height: 170px;
  }
  .sells__event-content-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .sells__list {
    margin-top: 15px;
  }
  .sells__item {
    padding: 15px 10px;
  }
  .sells__item + .sells__item {
    margin-top: 10px;
  }
  .sells__item .index__event-title {
    font-size: 16px;
    font-weight: bold;
  }
  .sells__item:not(.active) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .sells__item:not(.active) .index__event-content {
    margin-left: 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 0;
  }
  .sells__item:not(.active) .index__event-title {
    margin-left: 0;
    margin-top: 25px;
  }
  .sells__item:not(.active) .index__event-info {
    display: none;
  }
  .sells__item:not(.active) .sells__event-content-wrap {
    margin-left: 15px;
  }
  .sells__item:not(.active) .sells__item-info {
    width: calc(100% - 80px);
    margin-left: 60px;
    margin-bottom: -18px;
  }
  .sells__item.active {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .sells__item.active .sells__content {
    position: relative;
    padding: 10px;
    margin-top: 15px;
    padding-bottom: 50px;
  }
  .sells__item.active .index__event-img {
    width: 120px;
    height: 140px;
  }
  .sells__item.active .index__event-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    bottom: 10px;
    left: 10px;
  }
  .sells__item.active .index__event-info span + span {
    display: initial;
    margin-left: 20px;
  }
  .sells__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .sells__event-content-list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
  }
  .sells__event-content-item {
    gap: 10px;
  }
  .sells__album {
    font-weight: 500;
  }
  .sells__amount {
    margin-left: 10px;
  }
  .sells__amount span {
    margin-left: 10px;
  }
}
@media (max-width: 576px) {
  .sells__event-content-list {
    grid-template-columns: 1fr;
  }
}
.statistic-block__header {
  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;
}
.statistic-block__select {
  height: 33px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 6px 6px 6px 10px;
}
.statistic-block__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #f2e200;
  height: 185px;
  margin-top: 25px;
}
.statistic-block__col-1 * {
  color: #f2e200;
}
.statistic-block__col-1,
.statistic-block__col-2 {
  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-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 50%;
  padding: 20px;
}
.statistic-block__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.statistic-block__cart-img {
  margin-right: auto;
}
.statistic-block__amount span {
  font-size: 33px;
  font-weight: bold;
  margin-right: 10px;
}
.statistic-block__col-2 {
  background-color: #f2e200;
}
.statistic-block__col-2 * {
  color: #222222;
}
@media (max-width: 1024px) {
  .statistic-block__content {
    margin-top: 15px;
  }
}
@media (max-width: 768px) {
  .statistic-block__content {
    display: block;
    height: 200px;
  }
  .statistic-block__col-1,
  .statistic-block__col-2 {
    width: 100%;
    height: 50%;
    padding: 10px;
    font-size: 15px;
  }
  .statistic-block__col-1 {
    padding-bottom: 15px;
  }
  .statistic-block__cart-img {
    width: 44px;
  }
  .statistic-block__amount span {
    font-size: 21px;
  }
}
.index {
  margin-top: 60px;
}
.index__title {
  text-align: center;
  color: #fff;
  font-size: 23px;
  font-weight: bold;
}
.index__search {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 5px;
  background-color: #5F6267;
  height: 54px;
  padding-right: 32px;
}
.index__search-input {
  height: 30px;
  font-size: 17px;
  font-weight: 300;
  background-color: transparent;
  border: none;
}
.index__search-select {
  margin-left: auto;
  color: #f2e200;
  border-color: #f2e200;
}
.index__search-select option:checked {
  color: #f2e200;
}
.index__search-button {
  width: 17px;
  height: 17px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(../img/sprite.svg#loop-white);
  margin-left: 30px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-transform-origin: 25% 25%;
  transform-origin: 25% 25%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.index__search-button:hover {
  background-image: url(../img/sprite.svg#loop-yellow);
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.index__results {
  margin-top: 32px;
}
.index__events-list {
  margin-top: 27px;
}
.index__events-item + .index__events-item {
  margin-top: 1px;
}
.index__event-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 14px;
  background-color: #33363B;
}
.index__event-link:hover {
  background-color: #5F6267;
}
.index__event-img {
  width: 84px;
  height: 84px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #5F6267;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.index__event-content {
  margin-left: 23px;
}
.index__event-title {
  font-size: 25px;
  color: #fff;
  font-weight: bold;
  line-height: 1;
}
.index__event-info {
  color: #8E8E8E;
  margin-top: 13px;
}
.index__event-info span + span {
  margin-left: 60px;
}
@media (max-width: 1200px) {
  .index {
    margin-top: 30px;
  }
  .index__title {
    display: none;
  }
  .index__title--user {
    font-size: 18px;
    display: block;
  }
  .index__search {
    margin-top: 0;
    margin-bottom: 0;
    height: 42px;
    padding-right: 15px;
    background-color: transparent;
    border: 1px solid #5F6267;
  }
  .index__search-input {
    height: 42px;
    font-size: 15px;
    padding-left: 15px;
  }
  .index__results {
    display: none;
  }
  .index__events-list {
    margin-top: 20px;
  }
  .index__event-link {
    padding: 5px;
  }
  .index__event-img {
    width: 48px;
    height: 48px;
    border: 1px solid #5F6267;
  }
  .index__event-content {
    margin-left: 11px;
    padding: 5px 0;
  }
  .index__event-title {
    font-size: 15px;
    font-weight: 500;
  }
  .index__event-info {
    font-size: 12px;
    margin-top: 7px;
  }
  .index__event-info span + span {
    display: none;
  }
}
@media (max-width: 576px) {
  .index {
    margin-top: 10px;
  }
  .index__search {
    margin-top: 0;
    margin-bottom: 0;
    height: 36px;
    padding-right: 10px;
  }
  .index__search-input {
    height: 36px;
    font-size: 13px;
    padding-left: 10px;
    padding-right: 0;
  }
  .index__search-button {
    margin-left: 15px;
  }
  .index__events-list {
    margin-top: 10px;
  }
  .index__event-title {
    font-size: 15px;
  }
  .index__event-info {
    margin-top: 5px;
  }
}
.login {
  display: none;
  max-width: 836px;
  width: 100%;
  margin: 50px auto 0;
}
.login.active {
  display: block;
}
.login.active + .index {
  display: none;
}
.login__heading {
  text-align: center;
}
.login__title {
  display: none;
  font-size: 35px;
  font-weight: bold;
  margin-top: 48px;
  color: #fff;
  line-height: 0.5;
}
.login__title span {
  color: #f2e200;
}
.login__title.active {
  display: block;
}
.login__content {
  margin-top: 30px;
}
.login__entry {
  display: none;
}
.login__entry.active {
  display: block;
}
.login__form {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}
.login__form.entry_form .login__input {
  text-align: center;
  margin-top: 20px;
}
.login__form.entry_form .login__input.entry_code {
  margin-top: 0;
}
.login__form.register_form .login__input {
  font-size: 14px;
}
.login__form.register_form .login__checkbox-label {
  max-width: 100%;
  line-height: 1.5;
  text-align: left;
}
.login__form.register_form .login__checkbox-label:before {
  top: 2px;
}
.login__form.register_form .login__checkbox-label a {
  color: #5F6267;
  text-decoration: underline;
}
.login__form.register_form .login__checkbox-label a:hover {
  color: #BA9B64;
}
.login__radio-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 5px;
  border: 1px dashed #f2e200;
  padding: 3px;
}
.login__radio-button {
  width: 100%;
}
.login__radio-button + .login__radio-button {
  margin-left: 5px;
}
.login__radio {
  display: none;
}
.login__radio:checked + .login__radio-label {
  background-color: #f2e200;
  color: #222222;
}
.login__radio-label {
  width: 100%;
  height: 52px;
  background-color: transparent;
  color: #f2e200;
}
.login__radio-label:hover {
  color: #f2e200;
  background-color: #33363B;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.login__input-container {
  display: none;
}
.login__input-container.active {
  display: block;
}
.login__input {
  margin-top: 10px;
}
.login__input.register_author {
  display: none;
}
.login__input.register_author.active {
  display: block;
}
.login__input + .login__input {
  margin-top: 10px;
}
.login__input.error {
  border-color: #da4c4c;
}
.login__subtitle {
  text-align: center;
  font-size: 14px;
  color: #8E8E8E;
}
.login__subtitle--medium {
  font-size: 16px;
  font-weight: 500;
}
.login__subtitle.link {
  color: #BA9B64;
  text-decoration: underline;
  cursor: pointer;
  margin-left: 5px;
}
.login__subtitle.link:hover {
  color: #f2e200;
}
.login__code-inputs {
  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;
  gap: 10px;
  margin-top: 20px;
}
.login__code-inputs .login__input {
  width: 58px;
  height: 58px;
  text-align: center;
  padding: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-top: 0;
}
.login__code-inputs .login__input::-webkit-outer-spin-button,
.login__code-inputs .login__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.login__resend,
.login__retry {
  display: none;
  text-align: center;
  margin-top: 30px;
}
.login__resend.active,
.login__retry.active {
  display: block;
}
.login__retry .timer {
  color: #BA9B64;
}
.login__button {
  max-width: 218px;
  margin: 30px auto 0;
}
.login__checkbox-wrap {
  margin-top: 30px;
}
.login__checkbox {
  display: none;
}
.login__checkbox.error + .login__checkbox-label:before {
  background-image: url(../img/not-checked-error.svg);
}
.login__checkbox:checked + .login__checkbox-label:before {
  background-image: url(../img/checked.svg);
}
.login__checkbox-label {
  display: block;
  text-align: center;
  position: relative;
  font-size: 14px;
  font-weight: 400;
  color: #5F6267;
  padding-left: 50px;
  max-width: 291px;
  margin: 0 auto;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.login__checkbox-label:hover span {
  color: #BA9B64;
}
.login__checkbox-label span {
  line-height: 1;
  border-bottom: 1px solid;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.login__checkbox-label:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../img/not-checked.svg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.login__error-text {
  position: absolute;
  left: 50%;
  bottom: -22px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #da4c4c;
  display: none;
  width: 100%;
}
.login__error-text.active {
  display: block;
}
.login__bottom {
  text-align: center;
  max-width: 686px;
  margin: 40px auto 0;
}
.login__desc {
  font-size: 14px;
  color: #fff;
  font-weight: bold;
}
.login__link {
  color: #8E8E8E;
  font-weight: 400;
  text-decoration: underline;
  font-size: 14px;
  margin-left: 8px;
}
.login__link:hover {
  color: #BA9B64;
}
.login__register {
  display: none;
}
.login__register.active {
  display: block;
}
.login__register-offer {
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  color: #8E8E8E;
  max-width: 626px;
  margin: 20px auto 0;
}
@media (max-width: 1024px) {
  .login__wrap {
    padding-left: 10px;
    padding-right: 10px;
  }
  .login__logo-img {
    width: 96px;
    height: 96px;
  }
  .login__title {
    font-size: 24px;
    line-height: 1;
    margin-top: 20px;
  }
  .login__subtitle {
    font-size: 13px;
  }
  .login__subtitle--medium {
    font-size: 14px;
  }
  .login__checkbox-wrap {
    margin-top: 15px;
  }
  .login__checkbox-label {
    font-size: 13px;
    padding-left: 33px;
  }
  .login__radio-label {
    height: 42px;
  }
  .login__code-inputs .login__input {
    width: 52px;
    height: 52px;
    padding: 5px;
  }
  .login__bottom {
    background-color: #33363B;
    margin-top: 30px;
    padding: 15px;
    margin-left: -10px;
    margin-right: -10px;
    max-width: calc(100% + 20px);
  }
  .login__desc,
  .login__link {
    font-size: 13px;
  }
  .login__register-offer {
    font-size: 13px;
  }
}
@media (max-width: 576px) {
  .login__title {
    font-size: 16px;
  }
  .login__form.entry_form .login__input {
    margin-top: 10px;
  }
  .login__code-inputs {
    margin-top: 10px;
  }
  .login__resend,
  .login__retry {
    margin-top: 20px;
  }
  .login__button {
    margin-top: 20px;
  }
}
.user__buttons-list {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  border-radius: 5px;
  border: 1px dashed #f2e200;
  padding: 3px;
  margin: 40px auto 0;
  width: 100%;
  max-width: 550px;
}
.user__buttons-list.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.user__buttons-item {
  width: calc(100% + 20px);
}
.user__buttons-item.hidden {
  display: none;
}
.user__buttons-item.hidden.show {
  display: block;
}
.user__block-button {
  padding-left: 15px;
  padding-right: 15px;
  height: 52px;
  background-color: transparent;
  color: #f2e200;
}
.user__block-button:hover {
  color: #f2e200;
  background-color: #33363B;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.user__block-button:not(:hover) {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.user__block-button.active {
  background-color: #f2e200;
  color: #222222;
}
.user__content .author__title {
  text-align: center;
}
.user__content .author__block .basket {
  position: relative;
  z-index: initial;
  width: 100%;
  height: initial;
  max-width: 600px;
  margin: 30px auto;
  padding-bottom: 30px;
  border-bottom: 1px dashed #8E8E8E;
}
.user__content .author__block .basket__button {
  display: none;
}
.user__content .author__block .basket__content {
  position: relative;
  z-index: 0;
  top: initial;
  max-width: 100%;
  width: 100%;
  height: initial;
  -webkit-transform: none;
  transform: none;
  visibility: visible;
  opacity: 1;
  padding: 0;
  background-color: transparent;
}
.user__content .author__block .basket__close-button {
  display: none;
}
.user__content .author__block .basket__list {
  margin-top: 0;
  max-height: 365px;
}
.user__content .author__block .basket__img-wrap {
  height: 284px;
}
@media (max-width: 576px) {
  .user__content .author__block .basket__img-wrap {
    width: 180px;
    height: 180px;
  }
}
.user__content .author__events-list {
  position: relative;
  margin: 30px auto;
  max-width: 1000px;
}
.user__content .author__events-list.loading:before {
  position: absolute;
  z-index: 1;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15%;
  background-image: url(../img/loader.svg);
  background-color: #222222a6;
}
.user__content .author__events-list .basket__item--outside + .basket__item--outside {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .user__content .author__events-list .basket__item--outside + .basket__item--outside {
    margin-top: 5px;
  }
}
.user__content .author__events-list .basket__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  border-top: 1px solid;
  border-color: #fff;
  border-radius: 0px;
  background-color: transparent;
  margin-top: 0;
}
@media (max-width: 768px) {
  .user__content .author__events-list .basket__item {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.user__content .author__events-list .basket__item:first-child {
  border-top: none;
  padding-top: 0;
}
.user__content .author__events-list .basket__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.user__content .author__events-list .basket__item--outside {
  display: block;
  border: none;
  padding: 15px;
  background-color: #33363B;
}
.user__content .author__events-list .basket__item--outside:first-child {
  padding-top: 15px;
}
.user__content .author__events-list .basket__item--outside:last-child {
  padding-bottom: 15px;
}
.user__content .author__events-list .basket__item--outside ul {
  margin-top: 15px;
  padding: 15px 0;
  border-top: 2px solid #BA9B64;
  border-bottom: 2px solid #BA9B64;
}
@media (max-width: 768px) {
  .user__content .author__events-list .basket__item--outside ul {
    padding: 15px 5px;
    margin-top: 15px;
    border-width: 1px;
  }
}
.user__content .author__events-list .basket__img-wrap {
  width: 300px;
  height: 300px;
}
.user__content .author__events-list .basket__product-name {
  font-size: 16px;
}
@media (max-width: 768px) {
  .user__content .author__events-list .basket__item:not(.basket__item--outside) {
    padding: 20px 0;
  }
  .user__content .author__events-list .basket__item:not(.basket__item--outside):first-child {
    padding-top: 0;
  }
  .user__content .author__events-list .basket__item:not(.basket__item--outside):last-child {
    padding-bottom: 0;
  }
  .user__content .author__events-list .basket__img-wrap {
    width: 140px;
    height: 140px;
  }
  .user__content .author__events-list .basket__product-name {
    font-size: 14px;
  }
}
@media (max-width: 450px) {
  .user__content .author__events-list .basket__item:not(.basket__item--outside) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .user__content .author__events-list .basket__img-wrap {
    width: calc(100vw - 60px);
    height: calc(100vw - 60px);
    max-width: 350px;
    max-height: 350px;
  }
  .user__content .author__events-list .basket__product-content {
    margin-left: 0;
    margin-top: 15px;
    text-align: center;
  }
  .user__content .author__events-list .basket__product-content .button--download {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}
.user__notifications-title {
  font-size: 23px;
  color: #f2e200;
}
@media (max-width: 1024px) {
  .user__notifications-title {
    font-size: 18px;
  }
}
.user__notifications-list {
  margin: 30px auto 40px;
  max-width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 2px dashed #f2e200;
}
@media (max-width: 1024px) {
  .user__notifications-list {
    padding: 7px;
    border-width: 1px;
  }
}
.user__notifications-item {
  padding: 0;
  border-radius: 0px;
  border: none;
}
.user__notifications-item + .user__notifications-item {
  margin-top: 15px;
}
.user__notifications-item .index__event-link {
  pointer-events: initial;
}
@media (max-width: 1024px) {
  #user_notifications + .index__title--index {
    font-size: 18px;
    display: block;
    margin-bottom: 20px;
  }
}
.acl {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 5;
  text-align: center;
  width: 100%;
  max-width: 500px;
  padding: 0 20px;
}
.acl.hidden {
  display: none;
}
.acl__title {
  text-align: center;
  color: #fff;
  font-size: 20px;
}
.acl__content.hidden {
  display: none;
}
.acl__subtitle {
  text-align: center;
  color: #898989;
  font-size: 16px;
  margin-top: 20px;
  font-weight: 500;
}
.acl__button {
  max-width: 250px;
  margin: 30px auto 0;
}
.basket {
  position: fixed;
  z-index: 4;
  width: 0;
  height: 0;
}
.basket.empty .basket__button span {
  display: none;
}
.basket__button {
  display: none;
  position: fixed;
  z-index: 2;
  right: 20px;
  bottom: 150px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #33363B;
  border: 2px solid #f2e200;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px;
  background-image: url(../img/sprite.svg#basket);
}
.basket__button.active {
  display: block;
}
.basket__button span {
  position: absolute;
  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: #fff;
  padding: 2px;
  font-size: 12px;
  border-radius: 50%;
  top: -5px;
  left: -5px;
  width: 20px;
  height: 20px;
  line-height: 0;
}
.basket__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: fixed;
  z-index: 4;
  width: 95%;
  max-width: 400px;
  top: 0;
  height: 100%;
  background-color: #33363B;
  right: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  padding: 50px 15px;
  overflow: auto;
}
.basket__content.open {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.basket__close-button {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 20px;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../img/sprite.svg#close);
}
.basket__title {
  text-align: center;
  color: #fff;
}
.basket__list {
  margin-top: 20px;
  margin-bottom: 20px;
  height: 100%;
  overflow: auto;
  padding-right: 7px;
}
@supports (-moz-appearance:none) {
  .basket__list {
    scrollbar-width: thin;
    scrollbar-color: #f2e200 #f1f1f1;
  }
}
.basket__list::-webkit-scrollbar {
  width: 5px;
}
.basket__list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
.basket__list::-webkit-scrollbar-thumb {
  background: #f2e200;
  border-radius: 3px;
}
.basket__list::-webkit-scrollbar-thumb:hover {
  background: #d4c608;
}
.basket__item {
  padding: 10px 0;
  background-color: #292828;
  border-radius: 10px;
}
.basket__item + .basket__item {
  margin-top: 10px;
}
.basket__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 10px;
}
.basket__img-wrap {
  position: relative;
  font-size: 0;
  width: 50%;
  height: 169px;
  border: 1px solid #5F6267;
  overflow: hidden;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
}
.basket__img-wrap:after {
  position: absolute;
  content: 'выбрать';
  bottom: -22px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 10px;
  color: #fff;
  font-weight: 300;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  opacity: 0;
}
.basket__img-wrap:hover {
  border-color: #f2e200;
}
.basket__product-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.basket__product-content {
  margin-left: 15px;
}
.basket__product-name {
  font-weight: 500;
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
}
.basket__card-bottom {
  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;
  border-top: 1px solid #5F6267;
  margin-top: 10px;
  padding: 10px 15px 0;
}
.basket__price {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
.basket__delete-button {
  width: 36px;
  height: 36px;
  border-radius: 5px;
  background-color: #FF3B30;
  color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  line-height: 0;
  background-size: 16px;
  background-image: url(../img/trash.svg);
  margin-left: auto;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.basket__delete-button:hover {
  background-color: #c82f27;
}
.basket__bottom {
  margin-top: auto;
}
.basket__bottom .basket__price {
  display: block;
  font-size: 20px;
  font-weight: bold;
  margin-top: 6px;
}
.basket__desc {
  display: block;
  font-weight: 500;
}
.basket__buy-button {
  margin-top: 20px;
}
@media (max-width: 576px) {
  .basket__button {
    width: 50px;
    height: 50px;
    background-size: 25px;
    bottom: 100px;
  }
  .basket__button span {
    font-size: 10px;
    width: 16px;
    height: 16px;
    top: -3px;
    left: -3px;
  }
  .basket__content {
    padding: 60px 10px 30px;
  }
  .basket__title {
    font-size: 18px;
  }
  .basket__list {
    margin-bottom: 15px;
  }
  .basket__item {
    padding: 13px 0;
  }
  .basket__item-content {
    padding: 0 10px;
  }
  .basket__img-wrap {
    width: 160px;
    height: 160px;
  }
  .basket__product-content {
    margin-left: 10px;
  }
  .basket__product-name {
    font-size: 12px;
  }
  .basket__card-bottom {
    margin-top: 13px;
    padding: 13px 13px 0;
  }
  .basket__price {
    font-size: 15px;
  }
  .basket__delete-button {
    width: 32px;
    height: 32px;
    background-size: 14px;
  }
  .basket__bottom .basket__price {
    font-size: 18px;
  }
}
.footer {
  margin-top: 60px;
}
.footer__top {
  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: #33363B;
  padding: 31px 40px 33px;
}
.footer__payment-desc {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
.footer__payment-img {
  margin-left: 23px;
}
.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  color: #5F6267;
  padding-top: 20px;
  padding-bottom: 24px;
}
.footer__links-list {
  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;
  margin-left: auto;
  width: 100%;
  max-width: 850px;
}
.footer__link {
  color: #5F6267;
  border-bottom: 1px solid;
  line-height: 1;
}
.footer__link:hover {
  color: #BA9B64;
}
@media (max-width: 1200px) {
  .footer {
    margin-top: 40px;
  }
  .footer__top {
    padding: 21px 20px 23px;
  }
  .footer__links-list {
    max-width: 800px;
  }
}
@media (max-width: 1024px) {
  .footer {
    margin-top: 30px;
  }
  .footer__top {
    padding: 5px 20px;
  }
  .footer__payment-desc {
    font-size: 13px;
  }
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    font-size: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .footer__desc {
    font-weight: 500;
    margin-top: 10px;
  }
  .footer__links-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 100%;
  }
  .footer__links-item + .footer__links-item {
    margin-top: 10px;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  background-color: #33363B;
}
.header:not(.is-login) .header__breadcrumbs,
.header:not(.is-login) .header__actions,
.header:not(.is-login) .header__menu-button {
  display: none;
}
.header.public .header__breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 576px) {
  .header.public .header__breadcrumbs {
    display: none;
  }
}
.header.public .header__actions,
.header.public .header__menu-button {
  display: none;
}
.header__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 2.5px;
  padding-bottom: 2.5px;
}
.header__logo {
  width: 182px;
  height: 50px;
}
.header__logo--small {
  display: none;
}
.header__breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-right: auto;
  margin-left: 30px;
  overflow: hidden;
}
.header__breadcrumbs-item {
  position: relative;
  font-size: 14px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  max-width: 100%;
}
.header__breadcrumbs-item:first-child {
  -ms-flex-negative: 1;
  flex-shrink: 1;
}
.header__breadcrumbs-item:first-child:not(.active) {
  max-width: calc(100% - 100px);
}
.header__breadcrumbs-item:first-child .header__breadcrumbs-link {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header__breadcrumbs-item:first-child .header__breadcrumbs-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header__breadcrumbs-item + .header__breadcrumbs-item {
  margin-left: 25px;
}
.header__breadcrumbs-item + .header__breadcrumbs-item:before {
  position: absolute;
  content: '';
  left: -17px;
  top: 7px;
  width: 10px;
  height: 1px;
  background-color: #f2e200;
}
.header__breadcrumbs-item.active:before {
  background-color: #d9d9d9;
}
.header__breadcrumbs-name {
  font-weight: 400;
  color: #d9d9d9;
  white-space: nowrap;
}
.header__breadcrumbs-link {
  font-weight: 400;
  color: #f2e200;
}
.header__actions {
  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;
  margin-left: 15px;
}
.header__phone {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  padding-left: 18px;
  white-space: nowrap;
}
.header__phone:before {
  position: absolute;
  content: '';
  top: 1px;
  left: 0;
  width: 15px;
  height: 15px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/sprite.svg#phone);
}
.header__logout {
  width: 87px;
  height: 33px;
  margin-left: 15px;
}
.header__logout--account {
  font-weight: 500;
  width: 150px;
  margin-left: 20px;
}
.header__search {
  width: 17px;
  height: 17px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(../img/sprite.svg#loop-dark);
  margin-left: 15px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-transform-origin: 25% 25%;
  transform-origin: 25% 25%;
}
.header__search:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.header__search.active {
  background-image: url(../img/sprite.svg#loop-yellow);
}
.header__menu-button {
  display: none;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 4px 16px;
  background-image: url(../img/dots.svg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.header__menu-button.active {
  background-image: url(../img/dots-yellow.svg);
}
.header__nav-block {
  background-color: #5F6267;
}
.header__nav-block-wrap {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: none;
}
.header__nav-block-wrap .header__breadcrumbs-name,
.header__nav-block-wrap .header__breadcrumbs-link {
  font-size: 13px;
}
.header__nav-block-wrap .header__breadcrumbs-name {
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
  color: #fff;
}
.header__nav-block-wrap .header__breadcrumbs-link {
  position: relative;
  padding-left: 16px;
  cursor: pointer;
}
.header__nav-block-wrap .header__breadcrumbs-link:before {
  position: absolute;
  content: '';
  left: 0;
  top: 2px;
  width: 11px;
  height: 11px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(../img/sprite.svg#arrow);
}
.header__nav-block-wrap .header__breadcrumbs-link + .header__breadcrumbs-name {
  overflow: hidden;
  text-overflow: ellipsis;
  margin-left: 30px;
  margin-right: 0;
  max-width: 100%;
}
.header__nav-block-wrap .header__breadcrumbs-link + .header__breadcrumbs-name.second {
  margin-left: auto;
  color: #d9d9d9;
}
.header__nav-block-wrap .header__breadcrumbs-link ~ .header__breadcrumbs-name.second {
  margin-left: 15px;
  padding-left: 10px;
  white-space: nowrap;
  overflow: initial;
  color: #d9d9d9;
}
@media (max-width: 1500px) {
  .header__breadcrumbs {
    padding-left: 20px;
  }
}
@media (max-width: 1200px) {
  .header__wrap {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 45px;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-right: 0;
  }
  .header__logo {
    display: none;
    width: 96px;
    height: 33px;
  }
  .header__logo--small {
    display: initial;
  }
  .header__breadcrumbs {
    display: none;
  }
  .header__actions {
    display: none;
  }
  .header__menu-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__nav-block-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 577px) {
  .header__breadcrumbs-link:hover {
    color: #BA9B64;
  }
  .header__phone:hover {
    color: #BA9B64;
  }
}
.menu {
  position: fixed;
  z-index: 4;
  top: 40px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  width: 100%;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  background-color: #33363B;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
}
.menu.active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.menu__wrap {
  padding-top: 5px;
  padding-bottom: 10px;
}
.menu__item + .menu__item {
  margin-top: 1px;
}
.menu__link {
  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-size: 14px;
  font-weight: 500;
  color: #fff;
  height: 46px;
  width: 100%;
  padding-right: 15px;
  background-color: #5F6267;
}
.menu__link span {
  color: #f2e200;
  font-weight: 600;
  margin-left: 5px;
}
