.modal {
    width: 100vw;
    height: 100%;
    position: fixed;
    display: none;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 9;
    top: 0;
    left: 0;
    background-color: rgba(255,255,255,.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.modal-dialog {
    max-width: 1280px;
    width: 100%;
    height: calc(100% - 176px);
    margin-left: 80px;
    margin-right: 80px;
    display: flex;
    position: relative;
    box-shadow: 0 0 15px 0;
}

.modal-brand {
    background-color: #43a04c;
    width: 33.3333333333%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 64px 48px 48px 48px;
}

.modal-brand-links a:link,
.modal-brand-links a:visited,
.modal-brand-links a:hover,
.modal-brand-links a:active {
  color: white;
}

.modal-content {
    width: 67%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    position: relative;
}

.modal-content-top {
    height: 30px;
}

.modal-content-body {
    overflow-y: auto;
    padding: 64px 48px 48px 64px;
}

h3.title {
    text-transform: uppercase;
    font-family: "Open Sans", sans-serif;
    font-size: 28px;
    line-height: 1.3;
    letter-spacing: 1.9px;
    font-weight: 300;
    color: #2186c5;
    margin-bottom: 20px;
}

.modal-content-body p {
    padding: 0;
    margin: 16px 0;
    line-height: 1.4;
    color: #333;
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
}

.modal-content-body p {
    padding: 0;
    margin: 16px 0;
    line-height: 1.4;
    color: #333;
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
}

.modal-content-footer {
    padding: 0 48px 0 64px;
    height: 157px;
    display: flex;
    align-items: center;
    flex-shrink: 0;    
}

button.accept-button {
    font: 16px/24px FortExtraBold,Arial,sans-serif;
    background-color: #43a04c;
    padding: 11px 24px 10px 24px;
    color: #fff;
    cursor: pointer;
    border: 0;
}