.selection_bg {
  @apply relative w-52 h-52 flex items-center max-w-[250px] justify-center aspect-square mx-auto rounded-full;
  background: #f1f1f1;
  box-shadow:-5px -4px 10px -5px #ffffff, 0px 0px 9px #ebebeb, inset -19px -21px 18px #ebebeb, inset 21px 21px 18px #ffffff
}

.selected_ratio {
  @apply w-4/5 aspect-square rounded-full;
}

.fade_in_animation {
  animation: fade-in 1s ease-in-out;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
