
.leglpay-modal-backdrop_leathesprior {
    z-index: 100000000;
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, .85);
    opacity: 0;
    transform: translate3D(0, -100vh, 0);
    transition: opacity .5s ease-in-out;
    /* display: none; */
}

.leglpay-modal-backdrop_leathesprior.open {
    opacity: 1;
    transform: translate3D(0, 0, 0);
    cursor: pointer;
    /* display: block; */
}

.leglpay-modal_leathesprior {
    z-index: 100000000;
    position: fixed;
    top: 50vh;
    left: 50vw;
    width: 100%;
    height: 100%;
    max-width: 800px;
    max-height: 900px;
    background: #fff;
    transform: translate3D(-50%, -150vh, 0);
    /* display: none; */
}

.leglpay-modal_leathesprior.open {
    transform: translate3D(-50%, -50%, 0);
    transition: transform .5s ease-in-out;
    /* display: block; */
}

.leglpay-modal_leathesprior::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3D(-50%, -50%, 0);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: transparent;
    border-color: #ccc #ccc #ccc #fff;
    border-width: 2px;
    border-style: solid;
    -webkit-animation: rotating_leathesprior 1s linear infinite;
    -moz-animation: rotating_leathesprior 1s linear infinite;
    -ms-animation: rotating_leathesprior 1s linear infinite;
    -o-animation: rotating_leathesprior 1s linear infinite;
    animation: rotating_leathesprior 1s linear infinite;

}

.leglpay-modal-close_leathesprior {
    position: absolute;
    top: -16px;
    right: -14px;
    display: block;
    border: none;
    background: #45435d;
    color: #fff;
    line-height: 0;
    border-radius: 0.3rem;
    vertical-align: middle;
    display: flex;
    justify-content: center;
    align-content: center;
    padding: .8rem 0rem .9rem .3rem;
    cursor: pointer;
}
.leglpay-modal-close_leathesprior:focus{
  outline: 0;
}

.leglpay-modal-close_leathesprior::before {
    content: "\00D7";
    vertical-align: middle;
    display: inline-block;
    font-size: 1.9rem;
    padding: 0;
    margin: 0 .25rem 0 0;
}

@-webkit-keyframes rotating_leathesprior /* Safari and Chrome */ {
    from {
      -webkit-transform: translate3D(-50%, -50%, 0) rotate(0deg);
      -o-transform: translate3D(-50%, -50%, 0) rotate(0deg);
      transform: translate3D(-50%, -50%, 0) rotate(0deg);
    }
    to {
      -webkit-transform: translate3D(-50%, -50%, 0) rotate(360deg);
      -o-transform: translate3D(-50%, -50%, 0) rotate(360deg);
      transform: translate3D(-50%, -50%, 0) rotate(360deg);
    }
  }
  @keyframes rotating_leathesprior {
    from {
      -ms-transform: translate3D(-50%, -50%, 0) rotate(0deg);
      -moz-transform: translate3D(-50%, -50%, 0) rotate(0deg);
      -webkit-transform: translate3D(-50%, -50%, 0) rotate(0deg);
      -o-transform: translate3D(-50%, -50%, 0) rotate(0deg);
      transform: translate3D(-50%, -50%, 0) rotate(0deg);
    }
    to {
      -ms-transform: translate3D(-50%, -50%, 0) rotate(360deg);
      -moz-transform: translate3D(-50%, -50%, 0) rotate(360deg);
      -webkit-transform: translate3D(-50%, -50%, 0) rotate(360deg);
      -o-transform: translate3D(-50%, -50%, 0) rotate(360deg);
      transform: translate3D(-50%, -50%, 0) rotate(360deg);
    }
  }

.leglpay-iframe_leathesprior {
    border: none;
    position: relative;
    width: 100%;
    height: 100%;
    background: transparent;
    padding: 0;
}