@import url('https://v1.fontapi.ir/css/SFProDisplay');
@import url('https://fonts.cdnfonts.com/css/inter');

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style-type: none;
  outline: none;
  font-family: 'SF Pro Display', sans-serif;
}

html{
  height: 100%;
}

body{
  display: flex;
  flex-direction: column;
  background: #fFF;
  height: 100%;
}

svg{
  display: block;
}

.wrapper{
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}

.content{
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-radius: 32px;
  box-shadow: 0 2px 20px 0 rgba(23, 23, 23, 0.12);
  background: #fff;
  padding: 20px;
  text-align: center;
}

.title{
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.02em;
  color: #ff3b30;
  text-align: center;
}

.title svg{
  flex-shrink: 0;
}

.content__text{
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.01em;
  text-align: center;
  color: #000;
}

.content__text.bold{
  font-weight: 700;
}

.time-block__i img{
  width: 64px;
}

.apps-list{
  display: flex;
  justify-content: space-between;
  margin: 6px 0;
}

.apps-list__el{
  width: 48px;
}

.apps-list__el img{
  display: block;
  width: 100%;
}

.swipe-button {
  width: 244px;
  height: 54px;
  backdrop-filter: blur(50px);
  background: rgba(255, 133, 133, 0.26);
  border-radius: 30px;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
  line-height: 117%;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 auto;
}

.swipe-circle {
  width: 58px;
  height: 58px;
  background-color: #bb281b;
  border-radius: 50%;
  position: absolute;
  top: -2px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 131%;
  letter-spacing: -0.03em;
  color: #fff;
  transition: left 0.3s;
  z-index: 10;
}

.swipe-text {
  margin-left: 80px;
  font-size: 18px;
  font-weight: 600;
  color: #ff3b30;
  letter-spacing: 0.02em;
}

.swipe-button.active {
  background: rgba(255, 133, 133, 0.26);
}

.swipe-button.active .swipe-text{
  color: transparent;
}

.swipe-button.active .swipe-text {
  opacity: 0;
}

.blue{
  color: #007aff;
}