#form-wrap {
    width:100%;
    max-width:500px;
    margin:auto;
    padding: 20px;
}
#form label {

}
#form {
    padding-bottom: 10px;
}
input,textarea {
    width:100%;
    padding:10px 11px;
    margin-top: 10px;
    margin-bottom:10px;
    border-radius: 5px;
    border:none;
        font-size: 16px;
}
input[name='pot'] {
    display: none;
}
.popup {
    background: #000;
    background: #0097b1;
    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;
    border:4px solid #f2f2f2;
    outline:2px solid #000;
}
.opacity {

    opacity: 1 !important;
}
.popup-inner {
    padding: 30px;
    font-size:30px;
    text-align:center;
}
#closer {
    position: absolute;
    background: #000;
    color: #fff;
    width: 40px;
    height: 40px;
    right: -20px;
    top: -20px;
    border-radius: 50%;
    line-height: 37px;
    font-size: 40px;
    text-align: center;
    cursor: pointer;
}
.bg-underlay {
    position:fixed;
    width:100%;
    height:100%;
    left:0;
    top:0;
    cursor:pointer;
}
#submit {
    background:#0097b1;
    width: fit-content;
    color:#fff;
    padding: 10px 20px;
    cursor: pointer;
    border-radius:5px;
}
input[type="checkbox"] {
    width: fit-content;
    position: relative;
    padding: 0;
    margin: 5px 8px 2px 3px;
}
label[for="agb"] {
    line-height:1.4;
}
#submit {
    margin-top:10px;
}
.check {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    flex-direction: row-reverse;
}
#form a {
    color:#c6c0cb !important;
    text-decoration: none;
}
.stop-scrolling {
    width: 100%;
    height: 100%;
    position: fixed;    
}