sb-popup .popup-container {
    z-index: 1003;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.5);
}

sb-popup .popup {
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: rgba(0,0,0,0.5);
    transform: translate(-50%,-50%);
    background-color: white;
    max-width: min(95%, 700px);

    margin: auto;
    border-radius: 10px;
    padding:20px;
    padding-top:40px;
    transition: height 1s;
    transition: width 1s;
}

sb-popup .popup .close-button {
    position: absolute;
    top: 8px;
    right: 8px;
    color: #A4A4A4;
    font-size: 1.9em;
}

sb-popup h2 {
    font-family: Fabrikat-Black;
    font-size: 2.2em;
    color: #2F2F2F;
    letter-spacing: 0;
    padding-bottom: 18px;
}

sb-popup input[type=email] {
    margin-top: 7px;
    padding: 5px;
    border: 1px solid #D1CFCF;
    border-radius: 3px;
    width: 100%;
    height: 35px;
}

sb-popup input[type=submit] {
    margin-top: 10px;
}

sb-popup textarea {
    max-width: 100%;
}
