input,textarea {
    width:100%;
    padding:5px 5px;
}
input {
    margin-bottom:5px;
}
input[type='submit'] {
    display: inline-block;
    max-width: 100px;
}
input[name='pot'] {
    display: none;
}
.popup {
    background: #c42f0f;
    color:#fff;
    position: fixed;
    left:50%;
    top:50%;
    max-width: 551px;
    min-height: 100px;
    width: calc(100% - 40px);
    transform: translate(-50%,-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    opacity:0;
   transition:opacity 0.4s;
   cursor: auto;
}
.opacity {
 
    opacity: 1 !important; 
}
.popup-inner {
    padding: 30px;
    font-size:30px;
    text-align:center;
}
#closer,#closer2 {
    position: absolute;
    background: #000;
    color: #fff;
    width: 40px;
    height: 40px;
    right: -20px;
    top: -20px;
    border-radius: 50%;
    line-height: 44px;
    font-size: 40px;
    text-align: center;
    cursor: pointer;
}
.bg-underlay {
    position:fixed;
    width:100%;
    height:100%;
    left:0;
    top:0;
    cursor:pointer;
}