
.pop-up-button {
    color: #fff;
    text-align: center;
    background-color: #2c5ca8;
    border-radius: 30px;
    flex: none;
    margin-bottom: 8px;
    padding: 8px 32px;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    transition: opacity .2s;
}

.pop-up-button:hover {
    opacity: .8;
}

.pop-up-button:active {
    opacity: 1;
}

.pop-up-text-box {
    max-width: 650px;
}

.pop-up-box {
    cursor: auto;
    background-color: #fff;
    border-radius: 8px;
    max-width: 460px;
    padding: 40px 40px 32px;
    position: relative;
}

.form {
    margin-bottom: 8px;
}

.pop-up-text-input {
    background-color: #f7f9fa;
    border: 1px solid #eff1f3;
    border-radius: 3px;
    height: 44px;
    margin-bottom: 16px;
    padding: 10px 16px;
    font-family: Montserrat, sans-serif;
    font-size: 15px;
    line-height: 1.4px;
}

.pop-up-text-input::placeholder {
    color: #c2cdd8;
}

.pop-up-wrapper {
    z-index: 300;
    justify-content: center;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    position: fixed;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    overflow: hidden;
}

.pop-up-form {
    text-align: left;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    align-items: stretch;
    margin-top: 24px;
    display: flex;
}

.pop-up-exit-button {
    opacity: .2;
    cursor: pointer;
    transition: opacity .2s;
    position: absolute;
    top: 20px;
    bottom: auto;
    left: auto;
    right: 20px;
}

.pop-up-exit-button:hover {
    opacity: .8;
}

.pop-up-form-success {
    color: #33383f;
    background-color: #e9e9e9;
    border-radius: 4px;
    padding: 32px;
    font-size: 16px;
    line-height: 1.4em;
}

.pop-up-back {
    background-color: rgba(32, 32, 32, .6);
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.popup-form-error {
    color: #444;
    background-color: #dee5eb;
    border-radius: 6px;
    padding: 16px;
}

.instructions {
    z-index: 9999999;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0);
    align-items: flex-start;
    transition: opacity .2s;
    display: flex;
    position: absolute;
    top: 0%;
    left: auto;
    right: 0%;
    overflow: auto;
}

.instructions:hover {
    opacity: .8;
}

.instructions-tab {
    cursor: pointer;
    width: 50px;
    margin-top: 10px;
}

.pop-up-header {
    color: #2c5ca8;
    font-family: Montserrat, sans-serif;
    font-size: 30px;
    font-weight: 600;
}

.pop-up-paragraph {
    margin-bottom: 10px;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    line-height: 1.4em;
}

.text-block, .text-block-2 {
    font-family: Montserrat, sans-serif;
}

@media screen and (max-width: 991px) {
    .pop-up-button {
        position: relative;
    }
}

@media screen and (max-width: 767px) {
    .pop-up-form {
        flex-direction: column;
    }
}

@media screen and (max-width: 479px) {
    .pop-up-button {
        width: 100%;
        font-size: 16px;
    }

    .pop-up-box {
        padding: 48px 24px 16px;
    }

    .pop-up-text-input {
        width: 100%;
    }

    .pop-up-form-success {
        padding-left: 20px;
        padding-right: 20px;
    }

    .instructions-tab {
        width: 40px;
    }
}
.textarea {
    background-color: #f7f9fa;
    border: 1px solid #eff1f3;
    border-radius: 3px;
    font-family: Montserrat, sans-serif;
    font-size: 15px;
}