.body {
    font-family: 'SF-Pro-Display', sans-serif;
    color: #222A34;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.swipe {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.image-back {
  margin-top: 14px;
}

.link {
  cursor: pointer;
  display: inline-block;
  margin-top: 10px;
  min-width: 44px;
  height: 44px;
  background-color: #F4F5FA;
  border-radius: 50%;
}

.phantom {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #333;
  z-index: 2000 !important;
}

.checkbox-wrapper-31 {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
}

.checkbox-wrapper-31 input[type=checkbox] {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.checkbox-wrapper-31 svg {
  width: 100%;
  height: 100%;
  display: block;
}

.checkbox-wrapper-31 .background {
  fill: #ccc;
  transition: ease all 0.6s;
}

.checkbox-wrapper-31 .stroke {
  fill: none;
  stroke-miterlimit: 10;
  stroke-width: 2px;
  stroke-dashoffset: 100;
  stroke-dasharray: 100;
  transition: ease all 0.6s;
}

.checkbox-wrapper-31 .check {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3px;
  stroke-dashoffset: 22;
  stroke-dasharray: 22;
  transition: ease all 0.6s;
}

.checkbox-wrapper-31 input[type=checkbox]:checked + label svg .background {
  fill: #00A3FF;
}

.checkbox-wrapper-31 input[type=checkbox]:checked + label svg .stroke {
  stroke-dashoffset: 0;
}

.checkbox-wrapper-31 input[type=checkbox]:checked + label svg .check {
  stroke-dashoffset: 0;
}

.button {
  color: white;
  background: linear-gradient(120.04deg, #7442C8 0%, #6659DC 50%, #3EB4F0 100%);
  height: 52px;
  border: none;
  border-radius: 999px;
}

@font-face {
  font-family: 'SF-Pro-Display';
  src: url('./SFProDisplay-Medium.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-content {
  background: white;
  padding: 40px;
  max-width: 400px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 0 20px;
  border-radius: 32px !important;
}

.search-icon {
  width: 16px;
  height: 16px;
  margin-right: 14px;
}