.promo-modal {
    /* display: none; */
    position: fixed;
    top: 0;
    left: 0;
    max-width: 100%;
    max-height: 345px;
    width: 800px;
    background: rgb(255, 255, 255);
    z-index: 102;
    right: 0;
    padding-bottom: 0;
    margin: auto;
    bottom: 0;
}

.promo-modal .text-center {
    padding: 0 50px;
}

.close-promo {
    position: absolute;
    top: 0;
    margin: 0 !important;
    right: 14px;
    z-index: 1;
}

.promo-overlay {
    /* display: none; */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 101;
}

.promo-modal form {
    width: 100% !important;
}
.promo-modal form .form-control {
    display: block;
    width: 100%;
    padding: 0 10px;
    font-size: 15px;
    line-height: 35px;
    color: #212121;
    background-color: #fff;
    border: 1px solid #212121;
    border-radius: 0;
}
.promo-modal form button {
    display: block;
    width: 100%;
    line-height: 35px;
    border: none;
    font-weight: 600;
    color: #ffffff;
    font-size: 16px;
    background: #f68121;
}
.promo-modal h1 {
    float: left;
    display: block;
    width: 100%;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 20px;
    color: #000000;
    margin-top: 35px;
    margin-bottom: 20px;
}
.promo-modal p{
    margin-bottom: 3rem;
}
@media (max-width: 991px){
    .promo-modal {
        top: 2.5vh;
        bottom: 2.5vh;
        left: 5vw;
        right: 5vw;
        width: 90vw;
        height: 85vh;
        max-height: 435px;
    }
    .promo-modal h1 {
        text-align: center;
    }
    .promo-modal p {
        margin-bottom: 1rem;
        text-align: center;
    }
    .promo-modal form {
        width: 100% !important;
        margin: 0;
    }
}