.modal-title {
    font-size: 25px;
    text-transform: uppercase;
}

.invite_form form h5 {
    font-size: 16px;
    text-transform: uppercase;
}

.invite_form form .form-group label {
    color: #24292e;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.invite_form form .form-group .form-control {
    height: 40px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #24292e;
}


.invite_form form button {
    background: linear-gradient(3deg, #9e6213 2.77%, #dcba63 97.78%);
    border: 0px;
    padding: 0px 30px;
    border-radius: 100px;
    height: 40px;
    color: #fff;
    text-transform: uppercase;
}

.invite_service {
    margin-top: 20px;
}

.invite_service .invite__text {
    color: #24292e;
    font-size: 12px;
    text-transform: uppercase;
    margin-top: 5px;
    display: flex;
    align-items: center;
}

.invite_service .invite__text:before {
    height: 5px;
    width: 5px;
    max-width: 5px;
    flex: 0 0 5px;
    background-color: #dcba63;
    border-radius: 10px;
    margin-right: 5px;
    content: '';
}

#myModal {
        display: none;     
        position: fixed;       
        z-index: 10000;  
        left: 0;
        top: 0;
        width: 100%;     
        height: 100%;       
        overflow: auto;       
        background-color: rgb(0, 0, 0, 1);     
    }

    #myModal .modal-dialog {
        margin: 0px auto;
        height: 100%;
        display: flex;
        align-items: center;
    }

    /* Modal Content */
    #myModal .modal-content {
        background-color: #fefefe;
        margin: 15% auto;
        /* 15% from the top and centered */
        padding: 20px;
        border: 1px solid #888;
        width: 100%;
        /* Could be more or less, depending on screen size */
    }

    /* The Close Button */
     #myModal .close {
        color: #aaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
    }

     #myModal .close:hover,
     #myModal .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }