:root {
  --background-color: #1c1c22;
  --main-color: #d01b1f;
  --main-text-color: #ffffff;
  --secondary-color: #242639;
}

.skeleton {
  animation: skeleton-loading 1s linear infinite alternate;
  pointer-events: none;
}

.play-icon {
  width: 20px;
  height: 20px;
  margin-right: 15px;
  display: inline-block;
}

.application-hint {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--background-color);
  padding: 15px;
  border-radius: 6px 0 0 0;
  display: flex;
  align-items: center;
  color: var(--main-text-color);
  font-size: 16px;
  font-weight: 600;
  z-index: 101;
}

.application-hint__box {
  margin-right: 10px;
  width: 30px;
  height: 30px;
  background-color: rgb(184, 0, 0);
  border-radius: 4px;
}

@keyframes skeleton-loading {
  0% {
    background-color: #49494c;
  }
  100% {
    background-color: #323234;
  }
}
