.modal-dialog{
    width: 270px;
    margin: 0 auto; 
  }
  .modal-content{
    border-radius: 0.75rem !important;
  }
  .modal-body{
    padding: 25px 20px;
  }
  .modal-footer{
    padding: 0
  }
  .modal-footer .btn{
    height: 48px;
    width: 50%;
    margin: 0;
    padding: 0;
    text-align: center;
    border-radius: 0;
  }
  .modal-footer .btn-confirm{
    border-left: 1px solid #CED6DE
  }
  .modal-backdrop {
    position: fixed;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 1040;
    background-color: #121212;
    opacity: 0;
    visibility: hidden;
    /* transition: all 0.25s; */
  }
  .modal{
    display: flex;
    align-items: center;
    visibility: hidden;
  }
  .open-modal .modal-backdrop{
    opacity:0.5;
    visibility: visible;
    display: block !important;
  }
  .open-modal .modal{
    visibility: visible;
  }
/* spin wheel */
  .promo-modal .modal-backdrop{
    opacity:0.7;
    visibility: visible;
    display: block !important;
  }
  .promo-modal .modal{
    visibility: visible;
  }
  .modal.modal-ios{
    padding-bottom: 80px
  }
  .modal .promo-main{
    opacity: 0;
    z-index:1050;
    width:100%;
    position: relative;
    border-radius: 24px;
    background: var(--Linear, linear-gradient(180deg, #1F1F1F 0%, #2B1A74 100%));
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.12), 0px 0px 1px 0px rgba(0, 0, 0, 0.12);
  }
  .promo-modal .modal .show{
    opacity: 1;
    animation: fadeIn 0.5s;
  }
  .modal .promo-main .wheel-section{
    z-index: 1060;
    background: url('../img/promo-wheel.svg') no-repeat center center;
    background-size: contain;
    padding: 5.067vw 4vw 4vw 4vw;
    position: relative;
    width: 80.533vw;
    height: 84.533vw;
  }
  .modal .promo-main .wheel-section .arrow{
    position: absolute;
    top: 0;
    left: 4.8vw;
    width: 61.18vw;
    /* background: url('../img/promo-wheel-arrow.svg') no-repeat center center */
  }
  .modal .promo-main .wheel-section .wheel-img{
    animation-name: spin;
    animation-duration: 0.9s;
    animation-iteration-count: infinite;
    animation-timing-function:linear;
    animation-play-state: paused;
    width: 100%;
    object-fit: contain;
    border-radius: 37.07vw;
  }
  .modal .promo-main .confirm-btn{
    background: var(--theme-color);
    border-radius: 4px;
    padding: 0.75rem 1.5rem;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.24);
  }
  .modal .promo-main .item-img{
    background: #fff;
    border-radius: 5rem;
    width: 10rem;
    height: 10rem;
    overflow: hidden;
  }
  .modal .promo-main .item-img img{
    max-width: 100%;
    max-height: 100%;
    border-radius: 5rem;
  }
  .modal .promo-main .close-btn{
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #30187B;
    padding: 0.75rem;
    border-radius: 1.5rem;
    line-height: 12px;
    z-index: 1080;
  }
  .modal .promo-main .close-btn img{
    width: 12px;
    height: 12px;
  }