.popup-loading-wrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1100;
    background: rgba(0, 0, 0, .95)
}

.popup-loading-wrapper .popup {
    min-width: 300px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.popup-loading-wrapper .popup h2 {
    width: 300px;
    font-size: 32px;
    color: #e5f3fc;
    line-height: 36px;
    letter-spacing: -1px;
    padding: 0 0 20px;
    margin: 0
}

.popup-loading-wrapper .popup h3 {
    line-height: 26px;
    letter-spacing: -1px;
    padding: 0 0 24px;
    margin: 0;
    color: #fff
}

.popup-loading-wrapper .popup p {
    font-size: 18px;
    color: #e5f3fc;
    padding: 8px 0 3px;
    opacity: .5
}

.popup-loading-wrapper .popup .product-image {
    width: 250px;
    height: 110px;
    margin: 0 auto 15px;
    position: relative;
    background: url("../images/1pk.html") no-repeat left top;
    background-size: 100% auto
}

.popup-loading-wrapper .popup .lock-image {
    width: 90px;
    margin: 0 auto 3px
}

.popup-loading-wrapper .popup .loading-image {
    width: 70px;
    height: 70px;
    margin: auto;
    -webkit-animation: spin 3s linear infinite;
    -moz-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}