.modal-open {
    overflow: hidden;
    .modal {
        overflow-x: hidden;
        overflow-y: auto;
    }
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}

.modal-header .close {
    float: right;
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
    padding: 0.5rem 0.5rem;
    margin: -0.5rem -0.5rem -0.5rem auto;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 2rem auto 0 auto;
    pointer-events: none;
    background: #fff;
    border-radius: 10px;
    max-width: 968px;
    .modal.show & {
        transform: none;
    }
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: #000;
    pointer-events: auto;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    outline: 0;
}

.btn--pill svg {
    background: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    padding: 6px;
    color: #fff;
    position: absolute;
    right: 7px;
}

.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: .3rem;
    border-top-right-radius: .3rem;
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}

.modal-title {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    color: #002b3d;
}

.modal-title span {
    color: #f3723e;
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem 1rem;
}

.modal.fade.in {
    background: rgba(0, 43, 61, 0.9);
}