/* POPUP STYLE */
body .spb-popup-main-wrapper{
    background-color: transparent;
    border: none;
}
body .spb_center {
    animation-name: slideUpPopinCenter;
    animation-duration: 3s;
    animation-timing-function: ease-in;
    transform: translate(-50%, -50%);
    margin-left: 0!important;
}
.simple-popup-blocks-global .spb_close{
    background: transparent;
}
.simple-popup-blocks-global .popin-shadow{
  box-shadow: 0rem 0.2rem .5rem rgba(0, 0, 0, .15) !important;
}
@keyframes slideUpPopinCenter {
    0%,
    50% {
      transform: translate(-50%, 100%);
      opacity: 0;
    }
     
    60%,
    100% {
      transform: translate(-50%, -50%);
      opacity: 1;
    }
}
@media screen and (max-width: 769px) {
    body .spb_center {
        bottom: 0;
        top: auto;
        padding-bottom: 0;
        transform: translate(-50%, 0);
        max-width: 100%;
        padding: 0;
    }
    .spb-popup-main-wrapper.spb_center{
        overflow: auto;
        max-height: 100%;
    }
    #block-popinform form .row{
        margin-left: 0;
        margin-right: 0;
    }
    @keyframes slideUpPopinCenter {
        0%,
        50% {
          transform: translate(-50%, 100%);
          opacity: 0;
        }
         
        60%,
        100% {
          transform: translate(-50%, 0);
          opacity: 1;
        }
    }
}