
    .yes_no_body {
       
        position: relative;
        width:100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
   }

   .pointer{
       cursor: pointer;
   }
    .yes_no_body .pointer {
        position: absolute;
        left: calc(50% - 33px);
        top: calc(50% - 30px);
        background: url(https://i.ibb.co/0ykmX2B/pointer.png) no-repeat center center;
        z-index: 99;
        height: 64px;
        width: 64px;
        border-radius: 100%;
   }
    @media screen and (max-height: 500px) {
        .yes_no_body .pointer {
            top: calc(219px - 32px);
            left: calc(50% - 32px);
       }
   }
    .yes_no_body .pointer.animation {
        transform: rotate(3600deg);
        transition: transform 3000ms cubic-bezier(0.1, 0.2, 0.5, 0.9) 0s;
   }
  .swal-title{
    font-size: 48px;
    margin:0px auto;
    color: black;
    text-transform: uppercase;
  }
  .swal-modal{
    width: 30%;
  }