/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    max-height: 100%;
}
/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 20px auto; /* 15% from the top and centered */
    padding: 20px;
    border: 2px solid #888;
    width: 95%;
    max-width: 800px;
}
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.close:hover, .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.email-modal{
    width: 100%;
    margin: 5px 0;
}

.sendEmail h2 {
    font-size: 18px;
    color: #333;
}

.sendEmail img {
    float: left;
    margin-right: 10px;
}

.sendEmail textarea {
    max-height: 150px;
    margin-bottom: 10px;
    overflow: auto;
}

.sendEmail .disclaimer p {
    font-size: 12px;
    padding-top: 10px;
    border-top: 1px #e5e5e5 solid;
}

/* Recommended Therapists section of email-thank-you view */
.recTherapists {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 5px;
    overflow-y: auto;  /* Needed to get height of div to match contents so bottom padding works */
}

.col.recTherapistContents {
    padding-bottom: 10px;
}

.recTherapists figure {
    margin-right: 10px;
}

.recTherapists a, .recTherapists i {
    text-decoration: none;
}

.recTherapistInfo {
    overflow: hidden;
    height: 80px;
}

.recTherapistInfo p {
    margin: 0;
    font-size: 12px;
    line-height: 20px;
}

.recTherapistInfo p.recTherapistName {
    color: #a2ad1a;
    font-weight: bold;
    font-size: 14px;
    line-height: 22px;
}

.recTherapistInfo p.recTherapistCreds {
    font-weight: bold;
}

.emailSentLinks {
    padding-top: 15px;
}

.emailSentLinks a {
    margin-right: 20px;
}