.moby {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    opacity: 0;
    background: #fff;
    -webkit-overflow-scrolling: touch;
    transform: scale(0.9);
    transition: all 0.4s ease;
}

.moby.show {
    transform: scale(1);
    opacity: 1;
    transition-delay: .20s;
}

.moby.hide {
    opacity: 0;
}

.popup {
    background: rgba(20, 20, 20, 0.5);
    transform: scale(1);
    opacity: 1;
}

.popup .popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    background: url(../images/bkgd-pattern.gif) left top repeat;
    transition: all 0.4s ease;
    background: #fff;
    width: 700px;
    padding: 20px;
}

.popup .popup-content .close {
    position: absolute;
    right: 11px;
    top: 10px;
    font-size: 20px;
    border: none;
    background: none;
    z-index: 999;
    cursor: pointer;
}

.popup-content input {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    border-radius: 0;
    color: #8d8d8d;
    border-color: #d9d9d9;
}

/*Splash PopUp*/

.popup-content .col-left, .popup-content .col-right {
    position: relative;
    padding-top: 60px;
    box-sizing: border-box;
}

.popup-content .col-left {
    text-align: center;
    width: 249px;
}

.popup-content .col-right {
    text-align: left;
    width: 449px;
    padding: 60px 38px 0 20px;
}

.popup-content .col-left:before,
.popup-content .col-left:after {
    content: "";
    position: absolute;
    display: block;
    right: 0;
    width: 2px;
    height: 50%;
}

.popup-content .col-left:before {
    top: 0;
    background: linear-gradient(to top, #d9d9d9 0%, transparent 100%);
}

.popup-content .col-left:after {
    bottom: 0;
    background: linear-gradient(to bottom, #d9d9d9 0%, transparent 100%);
}

.popup-content h2 {
    font-size: 25px;
    font-weight: bold
}

.popup-content .col-left p {
    font-size: 50px;
    font-weight: bold;
    text-transform: uppercase;
    color: #e92a31;
}

.popup-content .col-right p {
    font-size: 15px;
    padding: 21px 0;
}

.popup-content .form-subscribe .v-fix, .popup-content .form-subscribe input.input-text {
    width: 100%;
    box-sizing: border-box;
}

.popup-content .form-subscribe button.button {
    position: static;
    height: 43px;
    width: 195px;
    border-radius: 0;
    margin-top: 20px;
}

.popup-content .form-subscribe button.button span {
    font: 15px/15px Arial, Helvetica, sans-serif;
    width: auto;
    text-transform: uppercase;
    vertical-align: middle;
}

.popup-content li {
    margin-bottom: 20px;
}

.popup-content input.input-text {
    font-size: 15px;
    padding: 15px;
}


