
  .turkey-popup {
    display: none;
    position: fixed;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 1rem;
    width: 50vw;
    left: 25vw;
    height: 50vh;
    top: 25vh;
    background-color: white;
	box-shadow: 0px 0px 400px 400px rgba(0,0,0,0.5);
  }
  .turkey-popup.turkey-popup--show {
  	display: flex;
  }
  .turkey-popup > * + {
    margin-top: 1rem;
  } 
