#_pnp_loading_modal {
    position: fixed;
    -webkit-transform: translate3d(0, 0, 0);
    top: 0;
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 111111;
    -webkit-overflow-scrolling: touch;
    background: rgba(52,63,74,.75);
    height: 100%;
}

.pnp-close-modal-cart { position: fixed; top: 20px; right: 20px; font-size: 25px; cursor: pointer; z-index: 9999 }

.pnp-cart-loader { position: fixed; top: 50%; left: 50%; width: 164px; height: 164px; transform: translate(-50%, -50%); background-color: white; border-radius: 50px 0 50px 0; box-shadow: 0px 3px 8px rgba(22,86,160,0.2) }
.pnp-cart-loading-animation { width: 64px; height: 64px; margin: 50px; position: relative }
.pnp-cart-loading-animation div { position: absolute; top: 27px; width: 12px; height: 12px; border-radius: 50%; background: #466AFC; animation-timing-function: cubic-bezier(0, 1, 1, 0) }
.pnp-cart-loading-animation div:nth-child(1) { left: 6px; animation: pnp-loading-anim1 0.6s infinite }
.pnp-cart-loading-animation div:nth-child(2) { left: 6px; animation: pnp-loading-anim2 0.6s infinite }
.pnp-cart-loading-animation div:nth-child(3) { left: 36px; animation: pnp-loading-anim2 0.6s infinite }
.pnp-cart-loading-animation div:nth-child(4) { left: 66px; animation: pnp-loading-anim3 0.6s infinite }
@keyframes pnp-loading-anim1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pnp-loading-anim3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes pnp-loading-anim2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(30px, 0);
  }
}

#pnp_main_modal_cell { font-family: "Open Sans", sans-serif; font-size: 16px; font-weight: 400; line-height: 1.2; color: #646698; overflow-x: hidden }
