@font-face {
    font-family: 'SF Pro Display';
    src: url('./fonts/SFProDisplay-Semibold.eot');
    src: local('./fonts/SF Pro Display Semibold'), local('SFProDisplay-Semibold'),
        url('./fonts/SFProDisplay-Semibold.eot?#iefix') format('embedded-opentype'),
        url('./fonts/SFProDisplay-Semibold.woff2') format('woff2'),
        url('./fonts/SFProDisplay-Semibold.woff') format('woff'),
        url('./fonts/SFProDisplay-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'SF Pro Display';
    src: url('./fonts/SFProDisplay-Regular.eot');
    src: local('SF Pro Display Regular'), local('SFProDisplay-Regular'),
        url('./fonts/SFProDisplay-Regular.eot?#iefix') format('embedded-opentype'),
        url('./fonts/SFProDisplay-Regular.woff2') format('woff2'),
        url('./fonts/SFProDisplay-Regular.woff') format('woff'),
        url('./fonts/SFProDisplay-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "SF Pro Text", "Helvetica", "Arial", sans-serif;
    color: #ffffff;
    background: linear-gradient(180deg, #B70002 0%, #000000 30%, #342A2C 100%);
}

body, html, .wrapper { 
    width: 100%; 
    height: 100%; 
}

a {
    text-decoration: none;
    color: inherit;
}

.wrapper {
    position: relative;
    z-index: 9;
    background: linear-gradient(180deg, #B70002 0%, #000000 30%, #342A2C 100%);
    display: table;
    height: 100%;
    width: 100%;
}
.content {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.title,
.text {
    text-align: center;
    margin-bottom: 24px;
}
.title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
}
.text {
    font-size: 16px;
    line-height: 1.4;
}

#slider {
    position: relative;
    width: 180px;
    height: 42px;
    margin: 0 auto;
    border-radius: 64px;
    background: #494646;
    cursor: pointer;
    animation: pulse 1.5s infinite;
    animation-timing-function: ease-in-out;
}
.slider__btn {
    position: absolute;
    width: 42px;
    height: 42px;
    border-radius: 42px;
    background: #B60003;
    text-align: center;
    line-height: 44px;
    font-size: 11px;
}
.slider__text {
    position: absolute;
    width: 100%;
    height: 100%;
    font-size: 14px;
    line-height: 42px;
    text-align: center;
    padding-left: 30px;
}


@keyframes pulse {
	0% {transform: scale(0.9)  }
	50% { transform: scale(1) }
    100% { transform: scale(0.9) }
}





.track_drag {
    width: 250px;
    height: 64px;
    margin: 0 auto;
    border-radius: 64px;
    background: #494646;

    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;

    touch-action: none;
  }
  
  #item {
    width: 64px;
    height: 64px;
    border-radius: 42px;
    background: #B60003;
    text-align: center;
    line-height: 64px;
    font-size: 13px;
    justify-self: flex-start;
    touch-action: none;
    user-select: none;
    z-index: 999;
 }
  
  .track_text {
    position: absolute;
    width: 100%;
    height: 100%;
    font-size: 16px;
    line-height: 64px;
    text-align: center;
    padding-left: 45px;
  }
  
  .animate {
    transition: 
      transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
      opacity 0.5s ease-in,
      background-color 0.5s ease-in;
  }