.popup input{position: relative;background:#fff;width:90%;height:65px;line-height:65px;padding-left:25px;font-size:22px;}
.popup button{font-size:18px;height:65px;width: 100px; position: absolute; border:none;outline: none;right: 0px;top:0px;color:#ccc;font-size:16px;background: url(../images/ss2.png) center center no-repeat;}
.sub_btn.active.focus, .sub_btn.active:focus, .sub_btn.focus, .sub_btn:active.focus, .sub_btn:active:focus, .sub_btn:focus{outline: none;}
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 50%;
    height: auto;
    min-width: 320px;
    max-width: 100%;
    max-height: 100%;
    visibility: hidden;
    opacity: 0;
    overflow: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
			background:#fff;
			border-radius:4px;
			
}

.popup,
.popup-overlay {
    z-index: 0;
    -webkit-transform-style: flat;
    transform-style: flat;
    -webkit-transition: opacity .3s ease,left .5s,top .5s,transform .5s,-webkit-transform .5s;
    -ms-transition: opacity .3s ease,left .5s,top .5s,transform .5s,-ms-transform .5s;
    -o-transition: opacity .3s ease,left .5s,top .5s,transform .5s,-o-transform .5s;
     transition: opacity .3s ease,left .5s,top .5s,transform .5s,-webkit-transform .5s,-ms-transform .5s,-o-transform .5s;
}

.popup-content {
    position: relative;line-height: 65px;
}

.popup-overlay {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    top: -25%;
    left: 0;
    width: 100%;
    height: 150%;
    background: rgba(0,0,0,.7);
}

.popup-show {
    visibility: visible;
    opacity: 1;
    z-index: 2000;
}

/** 
 * Effects:  
 * .effect-fade-scale, .effect-slide-left, .effect-slide-right, 
 * .effect-slide-top, .effect-newspaper, .effect-sticky 
 */

.popup.effect-fade-scale {
    -webkit-transform: scale(0.7);
        -ms-transform: scale(0.7);
         -o-transform: scale(0.7);
            transform: scale(0.7);
}

.popup-show.effect-fade-scale {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
}

.popup.effect-slide-left {
    left: 20%;
}

.popup.effect-slide-right {
    left: 80%;
}

.popup-show.effect-slide-right,
.popup-show.effect-slide-left {
    left: 50%;
}

.popup.effect-slide-top {
    top: 20%;
}

.popup-show.effect-slide-top {
    top: 50%;
}

.popup.effect-newspaper {
    -webkit-transform: scale(0) rotate(720deg);
        -ms-transform: scale(0) rotate(720deg);
         -o-transform: scale(0) rotate(720deg);
            transform: scale(0) rotate(720deg);
}

.popup-show.effect-newspaper {
    -webkit-transform: scale(1) rotate(0deg);
        -ms-transform: scale(1) rotate(0deg);
         -o-transform: scale(1) rotate(0deg);
            transform: scale(1) rotate(0deg);
}

.popup.effect-sticky {
    top: -100%;
}

.popup-show.effect-sticky {
    top: 0;
    margin-top: 0 !important;
}