/**
    Case inner
*/
@-webkit-keyframes caseShowAnimation {
  0% {
    -webkit-transform: translateY(25px);
    transform: translateY(25px);
    opacity: 0;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes caseShowAnimation {
  0% {
    -webkit-transform: translateY(25px);
    transform: translateY(25px);
    opacity: 0;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

/**
    Live
*/
@-webkit-keyframes liveAnimation {
  0% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }

  to {
    opacity: 0.3;
  }
}

@keyframes liveAnimation {
  0% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }

  to {
    opacity: 0.3;
  }
}

/**
    Cases
*/
@-webkit-keyframes check {
  0% {
    height: 0;
    width: 0;
  }

  25% {
    height: 0;
    width: 5px;
  }

  50% {
    height: 13px;
    width: 5px;
  }
}

@keyframes check {
  0% {
    height: 0;
    width: 0;
  }

  25% {
    height: 0;
    width: 5px;
  }

  50% {
    height: 13px;
    width: 5px;
  }
}

.card_user_profile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px;
  gap: 10px;
  align-items: center;
}

.card_user_profile img {
  width: 40px;
  border-radius: 6px;
}

.card_where_avatar {
  display: flex;
  gap: 10px;
  align-items: center;
}

.flex_where-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 15px;
}

.flex_where-buttons a {
  color: var(--default-text-color);
  background: var(--bg-color);
  padding: 13px 20px;
  font-size: 14px;
  letter-spacing: 0.4px;
  font-weight: 500;
  border-radius: 10px;
  transition: 0.3s;
  display: flex;
  gap: 7px;
  align-items: center;
  line-height: 1;
}

.flex_where-buttons a i {
  font-size: 16px;
}

.flex_where-buttons a:hover {
  filter: brightness(115%);
}

.balances_user {
  display: none;
  justify-content: space-between;
  font-weight: 600;
  color: var(--span-color);
}

.nn_user {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hide__just__buyed {
  visibility: hidden;
  opacity: 0;
  position: absolute;
}

.case-btns {
  display: flex;
  margin: -5px 0;
}

.case-btns__btn-wrapper {
  flex-shrink: 0;
  padding: 5px;
}

.case-btns__btn {
  padding: 19px 20px 19px 53px;
  color: var(--span-color);
  font-weight: 600;
  font-size: 14px;
  background-color: initial;
  border: 2px solid var(--span-color);
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  border-radius: 8px;
  transition: 0.3s ease;
}

.case-btns__btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.case-btns__btn:hover {
  color: var(--span-color);
  border-color: var(--span-color);
}

.case-btns__btn--sell {
  position: relative;
  display: flex;
  color: var(--fon);
  background-color: var(--span-color);
  border-color: var(--span-color);
  transition: 0.3s ease;
}

.case-btns__btn--sell path {
  fill: var(--default-text-color) !important;
}

.case-btns__btn--sell:hover {
  filter: brightness(115%);
  color: var(--default-text-color);
}

.case-btns__btn--sell .case-btns__btn-icon {
  width: 24px;
  height: 22px;
  margin-top: -11px;
}

.case-btns__btn--hidden {
  cursor: default;
  opacity: 0.4;
}

.case-btns__btn--hidden:hover {
  color: var(--fon);
  background-color: var(--span-color);
  border-color: var(--span-color);
}

.case-btns__btn-icon {
  position: absolute;
  top: 50%;
  left: 17px;
}

.case-btns__btn-icon path {
  fill: var(--span-color);
  transition: fill 0.3s ease;
}

.case-btns__btn--again .case-btns__btn-icon {
  width: 22px;
  height: 24px;
  margin-top: -12px;
}

.case-footer {
  /* Изменено */
  display: flex;
  gap: 15px;
  align-items: center;
  min-height: 140px;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
}

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

@media (min-width: 610px) {
  .case-footer__fast-wrapper {
    flex: 1 1;
  }
  .case-footer__controls {
    display: flex;
    flex: 1 1;
    justify-content: flex-end;
  }
}

.case-footer__controls-list {
  display: flex;
  overflow: hidden;
  border-radius: 6px;
}

.case-footer__controls-item+.case-footer__controls-item {
  margin-left: 1px;
}

.case-footer__controls-item:first-child .case-footer__controls-label {
  border-radius: 6px 0 0 6px;
}

.case-footer__controls-input {
  display: none;
}

.case-footer__controls-input:checked+.case-footer__controls-label {
  color: #dedfe8;
  filter: brightness(125%);
}

.case-footer__controls-label {
  /* Изменено */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 50px;
  color: var(--color-dark);
  background-color: var(--sidebar-color);
  cursor: pointer;
  transition: .5s;
  font-weight: 600;
}

.case-footer__controls-label:hover {
  /* Изменено */
  color: var(--span-color);
  filter: brightness(115%);
}

.case__controls-item:last-child .case-footer__controls-label {
  border-radius: 0 8px 8px 0;
}

.case-footer__open-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.case-footer__btn-wrapper {
  /* Изменено */
  display: flex;
  flex-shrink: 0;
}

.case-footer__btn-wrapper.case_footer_timer {
  /* Изменено */
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.case-footer__btn-wrapper.case_footer_timer .open__last {
  /* Изменено */
  color: var(--color-dark);
  font-weight: 600;
}

.case-footer__btn {
  /* Изменено */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0px 25px;
  color: var(--fon);
  font-weight: 600;
  cursor: pointer;
  background-color: var(--span-color);
  border-radius: 6px;
  transition: .5s;
}

.case-footer__btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.case-footer__btn path {
  transition: 0.3s ease;
}

.case-footer__btn:hover {
  transition: 0.3s ease;
  filter: brightness(115%);
}

.case-footer__btn:hover path {
  transition: 0.3s ease;
  filter: brightness(115%);
}

.case__open-wrapper--locked .case-footer__btn {
  color: #383847;
  background-color: #242534;
  cursor: default;
  transition: none;
}

.case__open-wrapper--locked .case-footer__btn:hover {
  color: #383847;
  background-color: #242534;
}

.case_can_i_open_container { 
  /* Изменено */
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.case-footer__fast,
.case-can_i__open {
  /* Изменено */
  display: inline-flex;
  align-items: center;
  height: 50px;
  padding: 0px 25px;
  color: var(--color-dark);
  font-weight: 600;
  background-color: var(--navbar-first-color);
  border-radius: 6px;
  cursor: pointer;
  justify-content: center;
  user-select: none;
}

.case-footer__fast-toggle,
.case-can_i__open-toggle {
  /* Изменено */
  position: relative;
  margin-left: 15px;
  display: flex;
  flex-shrink: 0;
  -webkit-box-pack: start;
  box-sizing: border-box;
  cursor: pointer;
  border-radius: 6px;
  width: 20px;
  height: 20px;
  background-color: var(--fon);
  align-items: center;
  padding-inline-start: 2px;
  transition-property: background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;
  transition-duration: 150ms;
}

.case-footer__fast-toggle:before,
.case-can_i__open-toggle:before {
  position: absolute;
  transition: transform 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
  color: var(--fon);
  background-color: var(--span-color);
  transition-property: transform;
  transition-duration: 200ms;
  border-radius: 6px;
  width: 16px;
  height: 16px;
}

.case-can_i__open--on .case-can_i__open-toggle, .case-footer__fast--on .case-footer__fast-toggle {
  color: var(--fon);
  background-color: var(--span-color);
}

.case-footer__fast--on .case-footer__fast-toggle:before,
.case-footer__fast--on .case-can_i__open-toggle:before,
.case-can_i__open--on .case-footer__fast-toggle:before,
.case-can_i__open--on .case-can_i__open-toggle:before {
  background-color: var(--color-default);
  transform: translate(20px, 0px);
}

.case__contains-title {
  /* Изменено */
  text-align: center;
  margin-bottom: 30px;
}

.case__items {
  /* Изменено */
  gap: 15px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.case__items .items {
  /* Изменено */
  overflow: hidden;
  display: inline-block;
  position: relative;
  height: 140px;
  width: 180px;
  margin: 5px;
  border-radius: 6px;
}

.case__items .items__item {
  /* Изменено */
  height: 100%;
  width: 100%;
  display: grid;
  position: relative;
}

.case__items .item_item__block {
  /* Изменено */
  display: table-cell;
  height: auto;
  text-align: center;
  position: relative;
}

.case__items .item_item__block:hover .item_image__in_wrapper {
  /* Изменено */
  transform: scale(1.1) rotate(5deg);
}

.case__items .item_item__block:hover .item_imageWrapper {
  /* Изменено */
  opacity: 1;
}

.case__items .item_imageWrapper {
  /* Изменено */
  display: grid;
  align-items: center;
  justify-items: center;
  height: 100%;
  opacity: .8;
  transition: .5s;
}

.case__items .item_image__in_wrapper {
  /* Изменено */
  max-width: 100px;
  min-width: 100px;
  max-height: 100px;
  min-height: 100px;
  transition: 0.3s ease-out;
}

.case__items .item_footer {
  /* Изменено */
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 15px 15px;
}
.case__items .item_skinName {
  /* Изменено */
  font-weight: 600;
  position: relative;
  white-space: nowrap;
  color: var(--color-default);
}
.case__items .item_weaponName {
  /* Изменено */
  position: relative;
  white-space: nowrap;
  color: var(--color-dark);
  font-weight: 600;
  font-size: 9px;
}

.case-status {
  margin-top: -55px;
  text-align: center;
}

.case-status__informer {
  display: inline-block;
  padding: 15px;
  text-align: center;
  background-color: rgba(86, 68, 51, 0.6);
  border-radius: 6px;
  backdrop-filter: blur(12px);
}

.case-status--refill .case-status__informer {
  background-color: rgba(106, 55, 55, 0.65);
}

.case-status--refill .case-status__informer-title {
  color: #ff7e6c;
}

.case-status--refill .case-status__informer-content {
  color: #f0e9e5;
}

.case-status--unavailable .case-status__informer {
  background-color: rgba(59, 59, 74, 0.6);
}

.case-status--unavailable .case-status__informer-title {
  color: #fff;
}

.case-status--unavailable .case-status__informer-content {
  color: #c4c7cd;
}

.case-status__informer-title {
  color: #ffc27b;
  font-weight: 600;
  text-transform: uppercase;
}

.case-status__informer-content {
  color: var(--default-text-color);
  font-weight: 500;
  font-size: 14px;
}

.case-status__btn-wrapper {
  margin: 15px 0 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.case-status__btn {
  position: relative;
  line-height: 40px;
  padding: 0px 15px;
  color: var(--fon);
  cursor: pointer;
  font-weight: 600;
  display: block;
  background-color: var(--span-color);
  border-radius: 6px;
  transition: .5s;
}

.case-status__btn:hover {
  color: var(--fon);
}

.case-status__btn--refill {
  color: var(--fon);
  background-color: var(--span-color);
}

.case-status__btn--loading {
  cursor: wait;
  opacity: 0.7;
}

.case-spins {
  position: relative;
  transition: .5s;
}

.case-spins.case-spins-height {
  transition: height 2s ease-in;
}

.case-spins__cases-list {
  display: flex;
  align-items: center;
  height: 100%;
}

.case-spins__cases-item {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: width 0.2s ease;
}

.case-spins__cases-item+.case-spins__cases-item {
  /* Изменено */
  border-left: 1px solid var(--navbar-first-color);
}

.case-spins__cases-list--single .case-spins__cases-item {
  overflow: visible;
}

.case-spins__cases-list--single .case-spins__cases-image {
  max-width: 270px;
  max-height: none;
  opacity: 1;
  -webkit-animation: pulsate 3s ease-in-out infinite alternate both;
  animation: pulsate 3s ease-in-out infinite alternate both;
}

@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulsate {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.case-spins__cases-list--two .case-spins__cases-item {
  width: 50%;
}

.case-spins__cases-list--three .case-spins__cases-item {
  width: 33.333%;
}

.case-spins__cases-list--four .case-spins__cases-item {
  width: 25%;
}

.case-spins__cases-list--five .case-spins__cases-item {
  width: 20%;
}

.case-spins__cases-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--navbar-first-color);
}

.case-spins__cases-image {
  max-width: 80%;
  max-height: 95%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  opacity: 0;
  -webkit-animation: caseShowAnimation 0.2s ease forwards;
  animation: caseShowAnimation 0.2s ease forwards;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.case-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  margin-bottom: 20px;
}

.case-header__back-wrapper {
  position: absolute;
  top: 5px;
  left: 0;
}

.case-header__limit {
  position: absolute;
  top: 0;
  right: 0;
}

.case-header__title {
  z-index: 1;
}

.case--ny .case-header__title {
  font-size: 0;
}

.live {
  /* Изменено */
  position: relative;
  margin-bottom: 30px;
  min-height: 104px;
}

.live__list-wrapper {
  /* Изменено */
  position: relative;
  display: flex;
  overflow: hidden;
  border-radius: 6px;
}

.live__list-wrapper:after {
  /* Изменено */
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 1;
  text-decoration: inherit;
  vertical-align: inherit;
  pointer-events: none;
  background: linear-gradient(270deg, var(--fon), transparent);
}

.live__list {
  /* Изменено */
  display: flex;
  gap: 5px;
}

.live__item {
  /* Изменено */
  position: relative;
  flex-shrink: 0;
}

.live__link {
  /* Изменено */
  position: relative;
  display: block;
  width: 160px;
  height: 104px;
  overflow: hidden;
  background: radial-gradient(101.95% 157% at 50% -23%, rgba(191, 198, 201, 0.4) 0, rgba(169, 175, 176, 0.316) 31.63%, rgba(67, 75, 77, 0) 100%), #21222b;
  border-radius: 6px;
}

.live__link:hover .live__back {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  visibility: visible;
  opacity: 1;
}

.live__link:hover .live__front {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.live__link:hover .live__image-case-wrapper {
  -webkit-transform: none;
  transform: none;
}

.live__link:hover .live__user-photo-wrapper {
  -webkit-transform: none;
  transform: none;
}

.live__back {
  height: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease, visibility 0.5s ease, -webkit-transform 0.5s cubic-bezier(0.28, 0.67, 0.04, 1);
  transition: transform 0.5s cubic-bezier(0.28, 0.67, 0.04, 1), opacity 0.5s ease, visibility 0.5s ease;
  transition: transform 0.5s cubic-bezier(0.28, 0.67, 0.04, 1), opacity 0.5s ease, visibility 0.5s ease, -webkit-transform 0.5s cubic-bezier(0.28, 0.67, 0.04, 1);
}

.live__front {
  height: 100%;
  transition: -webkit-transform 0.5s cubic-bezier(0.28, 0.67, 0.04, 1);
  transition: transform 0.5s cubic-bezier(0.28, 0.67, 0.04, 1);
  transition: transform 0.5s cubic-bezier(0.28, 0.67, 0.04, 1), -webkit-transform 0.5s cubic-bezier(0.28, 0.67, 0.04, 1);
}

.live__image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 1;
  opacity: .5;
}

.live__image {
  /* Изменено */
  max-width: 80px;
  min-width: 80px;
  max-height: 70px;
  min-height: 70px;
  transition: 0.3s ease-out;
}

.live__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 14px;
  padding-bottom: 10px;
}

.live__title {
  color: var(--color-default);
  overflow: hidden;
  font-size: 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.live__title__desc {
  font-size: 10px;
  line-height: 1;
  color: var(--color-dark);
  margin-top: 3px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.live__image-case-wrapper {
  position: absolute;
  right: -35px;
  bottom: -25px;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  transition: -webkit-transform 0.7s ease;
  transition: transform 0.7s ease;
  transition: transform 0.7s ease, -webkit-transform 0.7s ease;
}

.live__image-case {
  height: 135px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.live__user-photo-wrapper {
  margin-bottom: 7px;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  transition: -webkit-transform 0.7s ease;
  transition: transform 0.7s ease;
  transition: transform 0.7s ease, -webkit-transform 0.7s ease;
}

.live__user-photo {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.live__skeleton-image {
  width: 70px !important;
  height: 35px;
}

.live__buttons {
  margin-top: -2px;
  padding-right: 2px;
}

.case__container {
  /* Изменено */
  width: 100%;
  position: relative;
  text-align: center;
}

.cases__title {
  /* Изменено */
  position: relative;
  text-align: center;
  text-transform: uppercase;
  margin: 20px 0px;
}

.cases__item {
  /* Изменено */
  display: inline-block;
  position: relative;
  margin: 30px;
}

.cases__link {
  /* Изменено */
  position: relative;
}

.cases__link:hover .cases__image {
  -webkit-transform: scale(1.25);
  transform: scale(1.25);
}

.cases__link:hover .cases__price {
  border-color: var(--span-color);
}

.cases__link:hover .cases__name {
  color: var(--span-color);
}

.cases__link--disable {
  cursor: default;
}

.cases__link--disable .cases__image {
  opacity: 0.2;
  transition: none;
}

.cases__link--disable:hover .cases__image {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  opacity: 0.2;
}

.cases__link--disable:hover .cases__name {
  color: #494c51;
}

.cases__link--disable .cases__price {
  opacity: 0.2;
}

.cases__link--disable .cases__old-price {
  opacity: 0.2;
}

.cases__link--disable .cases__name {
  color: #494c51;
}

.cases__image-inner {
  /* Изменено */
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
}

.cases__image {
  /* Изменено */
  max-width: 220px;
  max-height: 220px;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  image-rendering: -webkit-optimize-contrast;
}

.cases__image--blur {
  -webkit-filter: blur(5px);
  filter: blur(5px);
}

.cases__image-skeleton {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0 auto;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
}

.cases__price-wrapper {
  /* Изменено */
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cases__price {
  /* Изменено */
  color: var(--color-dark);
  background: var(--tablcolor);
  padding: 5px 10px;
  border: solid 2px var(--navbar-first-color);
  transition: .5s;
  border-radius: 6px;
  font-size: 15px;
}

.cases__item--free .cases__link:hover .cases__price {
  color: #ebffd1;
  background-color: #6fc988;
}

.cases__item--free .cases__price {
  color: #ebffd1;
  background-color: #6fc988;
}

.cases__old-price {
  display: block;
  margin-top: 6px;
  color: #ec4f4f;
  font-weight: 600;
  font-size: 15px;
  text-decoration: line-through;
}

.cases__name {
  /* Изменено */
  color: var(--span-color);
  padding: 30px 0px 10px 0px;
  text-transform: uppercase;
}

.empty-container {
  width: 200px;
  height: 280px;
  margin-right: 10px;
}

.case-close:hover {
  background: var(--bg-color);
  transition: 0.3s;
}

.out-animation {
  animation: outlightbox 0.6s forwards;
}

.case-description {
  width: 90px;
  margin: 0 auto;
}

.case-description>.case-price {
  display: block;
  background-color: #ffc300;
  color: #000;
  font-weight: bold;
  border-radius: 6px;
  padding: 5px 25px;
  font-size: 17px;
}

.case-description button {
  display: none;
}

.winning-card {
  z-index: 100;
}

.slider {
  /* Изменено */
  border-radius: 6px;
  position: relative;
}

.slider>ul {
  /* Изменено */
  padding-left: 0;
  display: flex;
  flex-direction: row;
  margin: 0;
  gap: 5px;
}

.slider>ul img {
  padding: 10px;
  padding-bottom: 15px;
  margin-top: -10px;
  margin-bottom: 10px;
}

span.centered {
  position: absolute;
  top: 12px;
  left: 24px;
  font-size: 18px;
  font-weight: 500;
}

.absolute {
  position: absolute;
  width: 100%;
  height: 100%;
}

span.item-detail {
  position: relative;
  display: flex;
  font-size: 12px;
  font-weight: 400;
  padding: 4px 8px;
  border-radius: 100px;
  margin-bottom: 4px;
}

span.wear {
  background: #f89406;
  display: none;
}

.item-details {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-wrap: wrap;
  flex-direction: column;
  padding: 8px;
}

span.no-stattrak {
  display: none;
}

span.centered2 {
  position: absolute;
  bottom: 12px;
  left: 24px;
  color: #D9D9D9;
}

span.cover {
  width: 100%;
  height: 71px;
  position: absolute;
  bottom: 0;
  border-radius: 0px 0px 6px 6px;
}

.case-content {
  padding: 5px 0px;
}

.case-content>div {
  position: relative;
}

.cases-container-js {
  width: 100%;
  max-width: 100%;
}

.viewport {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 6px;
  padding: 15px 0px;
}

.viewport:after {
  content: "";
  width: 100%;
  top: 0px;
  bottom: 0px;
  position: absolute;
  z-index: 199;
  background: url(/app/modules/module_page_cases/temp/img/r-side.webp) repeat-x;
}

.viewport .middle {
  /* Изменено */
  z-index: 200;
  background: url(/app/modules/module_page_cases/temp/img/top-arr.webp) no-repeat;
  background-position: top;
  background-position-x: -1px;
  width: 132px;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0px;
  transform: translate(-50%, 0);
}

.viewport .overlay {
  /* Изменено */
  z-index: 200;
  background: url(/app/modules/module_page_cases/temp/img/bottom-arr.webp) no-repeat;
  background-position-y: bottom;
  width: 132px;
  height: 100%;
  position: absolute;
  left: 50%;
  bottom: -2px;
  transform: translate(-50%, 0);
}

.case_item {
  width: 130px;
  height: 130px;
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
  position: relative;
}

.case_item_img_div {
  width: 160px;
  display: grid;
  align-items: center;
  justify-items: center;
  height: 100%;
  opacity: .3;
  transition: .5s;
}

.case_item_bg {
  overflow: hidden;
  width: 100%;
  height: 95%;
  background-color: rgba(249, 249, 249, 0.04);
  backdrop-filter: blur(5px);
}

.case_item_desc {
  background: rgb(136, 71, 255);
  background: radial-gradient(circle farthest-side, rgb(136, 71, 255), rgb(116, 51, 235));
  box-shadow: 0px 0px 70px 32px hsl(270deg, 40%, 25%);
  height: 5px;
  -webkit-clip-path: polygon(0% -100px, 100% -100px, 100% 100%, 0% 100%);
  clip-path: polygon(0% -100px, 100% -100px, 100% 100%, 0% 100%);
  width: 100%;
}

.case_item_img {
  max-width: 80px;
  min-width: 80px;
  max-height: 70px;
  min-height: 70px;
}

.case-choose-count {
  display: none;
}

.case-choose-count>div>input {
  position: absolute;
  top: -20px;
  visibility: hidden;
}

.case-choose-count>div>input:checked+label {
  color: var(--fon);
  transition: 0.3s;
  background-color: var(--span-color);
  border: 1px solid var(--span-color);
}

.case-choose-count>div>label {
  padding: 5px 10.2px;
  border: 1px solid rgba(255, 255, 255, 0.1411764706);
  cursor: pointer;
  transition: 0.3s;
  border-radius: 0;
  margin-right: 5px;
  width: 31px;
}

.case-choose-count>div:first-child label {
  padding: 5px 11.73px;
}

.case-description.case-desc-opened {
  width: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  flex: 1;
}

.case-description.case-desc-opened .case-choose-count {
  display: flex;
  margin-bottom: 20px;
}

.case-description.case-desc-opened button {
  display: block;
  width: 138px;
}

.case-description.case-desc-opened>.case-price {
  background: none;
  color: #fff;
  font-size: 23px;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 0;
  width: 180px;
}

.case-description.case-desc-opened>.case-price::before {
  content: "";
  flex: 1;
  border-bottom: 1px solid #565656;
}

.case-description.case-desc-opened>.case-price::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #565656;
}

.case-description.case-desc-opened>.case-price:not(:empty)::before {
  margin-right: 0.45em;
}

.case-description.case-desc-opened>.case-price:not(:empty)::after {
  margin-left: 0.45em;
}

.case-bg-img {
  background-repeat: no-repeat !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 21.4375rem;
  height: 15.4375rem;
  background-size: contain !important;
  background-position: 50% !important;
  z-index: 0;
  opacity: 0.1;
  margin-left: 0rem;
}

.case-left-stats>.case-stats {
  display: flex;
  font-size: 13px;
  line-height: 16px;
  margin: 10px auto;
  min-height: 50px;
  max-width: 340px;
  width: 100%;
  padding: 17px 15px;
  border-bottom: 1px solid rgba(99, 173, 242, 0.7);
  background: linear-gradient(180deg, transparent 0, rgba(99, 173, 242, 0.15));
  transition: 0.2s ease-in-out;
  position: relative;
  flex-direction: column;
  margin-bottom: 0;
  margin-top: 10px;
}

.case-left-stats>.case-stats:before {
  display: block;
  width: 1px;
  height: 100%;
  bottom: 0;
  content: "";
  position: absolute;
  background: linear-gradient(180deg, transparent 0, rgba(99, 173, 242, 0.7));
  left: 0;
}

.case-left-stats>.case-stats:after {
  display: block;
  width: 1px;
  height: 100%;
  bottom: 0;
  content: "";
  position: absolute;
  background: linear-gradient(180deg, transparent 0, rgba(99, 173, 242, 0.7));
  right: 0;
}

.case-stats>div {
  padding: 6px 15px;
  font-size: 14px;
  display: flex;
  align-items: center;
  margin: 0 auto;
  z-index: 5;
  background: rgba(0, 0, 0, 0.18);
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.0705882353);
  white-space: nowrap;
  margin-top: 10px;
  line-height: 20px;
  font-weight: 600;
  color: #fff;
  font-weight: bold;
}

.case-stats>span {
  color: #979797;
  font-weight: bold;
}

.case-centered-items {
  margin: 0 auto;
  text-align: left;
}

.case-centered-items>.items-title {
  margin: 0px 0 10px;
  padding: 5px 0;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  font-size: 22px;
  line-height: 22px;
  letter-spacing: 1px;
}

.case-centered-items>.items-title:before {
  content: "";
  position: absolute;
  z-index: 2;
  left: -14px;
  background-size: 100%;
  background-position: 50%;
  background-repeat: no-repeat;
  backface-visibility: hidden;
}

.items-items .case__items {
  padding-top: 10px;
}

.items-items .items__item {
  width: 150px !important;
  text-align: left;
}

.items-items img {
  width: 130px;
  max-width: 100%;
}

.items-items>.case-item-bottom {
  margin-right: 10px;
}

.case-item-bottom {
  position: relative;
  display: flex;
  user-select: none;
  background: rgb(21, 21, 24);
  cursor: default;
  height: 140px;
  padding: 15px 8px 20px;
  margin: 0px;
  border-radius: 6px;
  text-align: center;
}

.case-item-bottom .case_item_footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 15px 15px;
}

.case-item-bottom .case_item_skinName {
  font-weight: 600;
  position: relative;
  white-space: nowrap;
  color: var(--color-default);
}

.case-item-bottom .case_item_weaponName {
  position: relative;
  white-space: nowrap;
  color: var(--color-dark);
  font-weight: 600;
  font-size: 10px;
}

.case_item_weaponName {
  color: #b1b1b1;
  font-weight: 300;
  font-size: 11px;
  line-height: 1.6;
}

.case_item_skinName {
  color: #e5e7eb;
}

.set_hide_div {
  display: none !important;
}

.case_test>a {
  padding: 10px;
  background: rgba(0, 0, 0, 0.1882352941);
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  border-radius: 6px;
}

#modal_case {
  position: fixed;
  top: -5px;
  left: 0;
  opacity: 0;
  z-index: 9999999;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(3, 5, 10, 0.8784313725);
  transition: all 0.3s;
  display: flex;
  visibility: hidden;
}

#modal_case .modal_container {
  padding-top: 20px;
  position: relative;
  width: -webkit-fill-available;
}

#modal_case .modal_container .modal_header {
  text-align: center;
  margin-bottom: 30px;
}

#modal_case .modal_container .modal_header h1 {
  color: #5aed5a;
}

#modal_case .modal_container .modal_header span {
  text-align: center;
  color: var(--color-dark);
}

#modal_case .modal_container .modal_buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

#modal_case .modal_container .modal_buttons a {
  margin-top: 40px;
  color: #fff;
  padding: 14px;
  font-weight: bold;
  background: var(--span-color-back);
  cursor: pointer;
  width: max-content;
  display: block;
  border-radius: 6px;
}

#modal_case .modal_container .modal_buttons a i {
  margin-right: 10px;
}

#modal_case .modal_container .modal_buttons .button-close {
  margin-top: 40px;
  padding: 14px 35px;
  font-weight: bold;
  cursor: pointer;
  width: max-content;
  display: block;
  border: 2px solid rgba(255, 255, 255, 0.1882352941);
  color: rgba(255, 255, 255, 0.4784313725);
  display: flex;
  background: transparent;
  border-radius: 6px;
  align-items: baseline;
  transition: 0.3s;
}

#modal_case .modal_container .modal_buttons .button-close i {
  margin-right: 10px;
}

#modal_case .modal_container .modal_buttons .button-close:hover {
  color: #fff;
  border: 2px solid var(--span-color);
}

#modal_case .modal_container .modal_buttons a.button-sell {
  background: linear-gradient(45deg, rgba(45, 153, 87, 0.4705882353), rgba(45, 153, 87, 0.5803921569));
  border: 3px solid rgba(64, 219, 124, 0.8588235294);
  transition: all 0.3s;
}

#modal_case .modal_container .modal_buttons a.button-sell:hover {
  background-color: rgba(64, 219, 124, 0.8588235294);
  transition: all 0.3s;
}

#modal_case .modal_container .modal_buttons button.button-inventory {
  background: linear-gradient(45deg, rgba(68, 68, 68, 0.5411764706), rgba(116, 114, 114, 0.5294117647));
  border: 3px solid #6c6c6c;
  transition: all 0.3s;
}

#modal_case .modal_container .modal_buttons button.button-inventory:hover {
  background-color: #6c6c6c;
  transition: all 0.3s;
}

#modal_case.in_animation {
  transition: all 0.3s;
  top: 0;
  visibility: visible;
  opacity: 1;
}

i.close-modal_body {
  display: none;
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
  font-size: 25px;
  color: rgba(255, 255, 255, 0.2705882353);
  transition: 0.3s;
}

i.close-modal_body:hover {
  color: #fff;
  transition: 0.3s;
}

.case-item-bottom[data-showing] {
  padding-bottom: 10px;
}

.modal_body_more>div {
  display: flex;
  flex-direction: column;
  padding: 15px;
  margin-bottom: 10px;
  gap: 15px;
}

.modal_body_more img {
  width: 110px !important;
}

.modal_body_more .case-item-name {
  position: relative;
  bottom: 0;
  margin-left: 25px;
}

.cases_line {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow: hidden;
  width: 10000px;
}

.cases_line_item {
  position: relative;
  display: block;
  width: 160px;
  height: 104px;
  overflow: hidden;
  background: radial-gradient(101.95% 157% at 50% -23%, rgba(191, 198, 201, 0.4) 0, rgba(169, 175, 176, 0.316) 31.63%, rgba(67, 75, 77, 0) 100%), #21222b;
  border-radius: 6px;
}

.cases_line_item>img {
  width: 130px;
  max-width: 100%;
}

.cases_line_item>.line_winner {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.cases_line_item>.line_winner>img {
  width: 25px;
  border-radius: 6px;
  opacity: 0.6;
  transition: 0.3s;
  margin-right: 10px;
}

.cases_line_item>.line_winner>.line_name {
  color: #cbbde2;
  font-weight: bold;
  transition: 0.3s;
  opacity: 0.6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cases_line_item+.cases_line_item {
  margin-left: 2px;
}

.input-form {
  margin-bottom: 15px;
}

.input-form .border-checkbox-label {
  position: relative;
  width: 100%;
  cursor: pointer;
  line-height: 22px;
  margin-top: 4px;
  padding-left: 30px;
  color: var(--top-text-color);
  font-size: 12px;
  font-weight: var(--font-weight-2);
  margin-bottom: 15px;
}

.input-form .border-checkbox-label:after {
  content: "";
  display: block;
  width: 5px;
  height: 13px;
  opacity: 0.15;
  border-right: 2px solid var(--default-text-color);
  border-top: 2px solid var(--default-text-color);
  position: absolute;
  left: 5px;
  top: 13px;
  -webkit-transform: scaleX(-1) rotate(135deg);
  transform: scaleX(-1) rotate(135deg);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.input-form .border-checkbox-label:before {
  content: "";
  display: block;
  border: 2px solid #3a3a3a;
  width: 23px;
  height: 23px;
  position: absolute;
  left: 0;
}

.border-checkbox {
  display: none;
}

.border-checkbox:checked+.border-checkbox-label:after {
  -webkit-animation: check linear 0.5s;
  animation: check linear 0.5s;
  opacity: 1;
  border-color: var(--span-color);
}

.border-checkbox:disabled~.border-checkbox-label {
  cursor: no-drop;
  color: #ccc;
}


.store-info {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 10px;
  width: 100%;
  padding: 15px;
  min-height: 40px;
  border-radius: 6px;
  color: #ffdb5c;
  background: #ffdb5c10;
  margin: 0 0 30px 0;
}

.store-info > svg {
  height: 20px;
  fill: #ffdb5c;
}

.store-flex-wrap {
  background-color: var(--navbar-color);
  border-radius: 6px;
  min-height: 46px;
  overflow: hidden;
  padding: 8px;
  margin-bottom: 15px;
}

.store-tovar-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.knopka-tovar-type {
  display: flex;
  gap: 5px;
  position: relative;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
  color: var(--color-dark);
  height: 30px;
  padding: 0px 15px;
  border-radius: 6px;
  background: var(--fon);
  transition: .5s;
}

.knopka-tovar-type svg {
  width: 12px;
  height: 12px;
  fill: var(--color-dark);
  transition: .5s;
}

.knopka-tovar-type:hover svg {
  fill: var(--span-color);
}

.knopka-tovar-type:hover {
  color: var(--span-color);
  background: var(--tablcolor);
}

.knopka-active-type {
  color: var(--span-color);
  background: var(--tablcolor);
}

.knopka-active-type:hover {
  color: var(--span-color);
  background: var(--tablcolor);
}

.knopka-active-type svg {
  fill: var(--span-color);
}

.knopka-active-type:hover svg {
  fill: var(--span-color);
}

.knopka-tovar-type-name {
  margin-top: 2px;
}

.store-type-tovar {
  position: absolute;
  right: 15px;
  top: 15px;
  background: rgb(246 185 73 / 11%);
  padding: 3px 11px;
  text-transform: uppercase;
  color: rgb(246 185 73);
  backdrop-filter: blur(20px);
  font-weight: 500;
  font-size: 10px;
  border-radius: 8px;
  z-index: 2;
}

@media (max-width: 700px) {
  .blocks-store-1 {
      grid-template-columns:1fr;
  }

  .store-flex {
      display: grid;
  }
}

@media (min-width: 701px) and (max-width:1080px) {
  .blocks-store-1 {
      grid-template-columns:1fr 1fr;
  }

  .store-flex {
      display: flex;
  }
}

@media (min-width: 1081px) and (max-width:1369px) {
  .blocks-store-1 {
      grid-template-columns:1fr 1fr;
  }

  .store-flex {
      display: flex;
  }
}

@media (min-width: 1370px) {
  .blocks-store-1 {
      grid-template-columns:1fr 1fr 1fr;
  }

  .store-flex {
      display: flex;
  }
}

.store-flex {
  gap: 15px;
  margin-bottom: 15px;
}

.store-block-info {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 10px;
  width: 100%;
  padding: 15px;
  min-height: 40px;
  border-radius: 6px;
  color: #ffdb5c;
  background: #ffdb5c10;
}

.store-block-info > svg {
  height: 30px;
  width: 100%;
  max-width: 30px;
  fill: #ffdb5c;
}

#store_bonuses .input-start-1 {
  margin-bottom: 15px;
}

.case-header__back-wrapper {
  left: 0;
  position: absolute;
  top: 5px;
}

.case__footer {
  background: var(--navbar-first-color);
  padding: 20px;
}

fieldset {
  display: block;
  margin-inline-start: 2px;
  margin-inline-end: 2px;
  padding-block-start: 0.35em;
  padding-inline-start: 0.75em;
  padding-inline-end: 0.75em;
  padding-block-end: 0.625em;
  min-inline-size: min-content;
  border-width: 2px;
  border-style: groove;
  border-color: rgb(192, 192, 192);
  border-image: initial;
}

.case__consumer {
  border: 4px solid #fcac62;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  max-width: 590px;
}

legend {
  display: block;
  padding-inline-start: 2px;
  padding-inline-end: 2px;
  unicode-bidi: isolate;
  border-width: initial;
  border-style: none;
  border-color: initial;
  border-image: initial;
}

.case__consumer-title {
  color: #fcac62;
  font-size: 16px;
  font-weight: 900;
  padding: 0 10px;
  text-align: center;
  text-transform: uppercase;
}
legend {
  border: 0;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

.case__consumer-text {
  color: #cdcdcd;
  font-size: 14px;
  line-height: 1.3;
  padding: 25px 15px;
  text-align: center;
}

.box_limits__Cu7\+\+ {
  background: #1d1d26;
  border-radius: 100px;
  overflow: hidden;
  padding: 1px;
  position: absolute;
}

.box_limitInner__aebQ9 {
  background: var(--navbar-first-color);
  border-radius: 100px;
  color: var(--color-dark);
  display: block;
  font-size: 12px;
  padding: 8px 13px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.box_limitsBar__YLqR- {
  background: var(--span-color);
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 0;
  width: var(--progress-width, 0);
}