
   .wa-popup {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 20000;
            visibility: hidden;
            opacity: 0;
            background-color: rgba(0, 0, 0, 0.4);
        }

        .wa-popup.short-wrapper {
            width: calc(100% - 540px);
            left: inherit;
        }

        .wa-popup--active {
            visibility: visible;
            opacity: 1;
        }

        .wa-popup__table {
            width: 100%;
            height: 100%;
            display: table;
            table-layout: fixed;
        }

        .wa-popup__cell {
            display: table-cell;
            vertical-align: middle;
            width: 100%;
        }

        .wa-popup__dialog {
            width: 530px;
            max-width: 90%;
            margin: 0 auto;
        }

        .wa-popup__content {
            border-radius: 4px;
            will-change: transform, opacity;
            position: relative;
            padding: 15px;
            background: #fff;
            background-clip: padding-box;
            box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.4);
            opacity: 1;
        }

        .wa-popup__content img {
            max-width: 100%;
        }

        .wa-popup__close {
            position: absolute;
            opacity: 1;
            cursor: pointer;
            width: 32px;
            height: 32px;
            background: rgb(51, 51, 51);
            padding: 0;
            color: #FFF;
            text-align: center;
            right: -16px;
            top: -16px;
            border: 2px solid #fff;
            border-radius: 50%;
            -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,0.7);
            -moz-box-shadow: 0 0 10px 0 rgba(0,0,0,0.7);
            box-shadow: 0 0 10px 0 rgba(0,0,0,0.7);
        }

        .wa-popup__close:after, .wa-popup__close:before {
            content: '';
            position: absolute;
            top: 6px;
            right: 13px;
            width: 2px;
            height: 16px;
            border-radius: 2px;
            background-color: #fff;
            opacity: 0.8;
        }

        .wa-popup__close:before {
            transform: rotate(45deg);
        }

        .wa-popup__close:after {
            transform: rotate(-45deg);
        }
  