/*
Modified by Marshall Clemens 10/20/2016
Removed most everything we don't need – so it doesn't interfere with our CSS.
*/

.alert-dismissible .closeModal {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit;
}

.closeModal {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
    float: right;
    opacity: .2;
    color: #000;
    text-shadow: 0 1px 0 #fff;
}

.closeModal:focus,
.closeModal:hover {
    cursor: pointer;
    text-decoration: none;
    opacity: .5;
    color: #000;
}

button.closeModal {
    padding: 0;
    cursor: pointer;
    border: 0;
    background: transparent;
    -webkit-appearance: none;
}

.close-btn {
    font-size: 13px;
    font-weight: bold;
    color: dimgrey;
    line-height: 1.5;
    display: inline-block;
    padding: 8px 20px;
    cursor: pointer;
    user-select: none;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    border-color: #ccc;
    border: 1px solid;
    border-radius: .25rem;
    background-color: #eee;
}


.modal-open {
    overflow: hidden;
}

.modal {
    position: fixed;
    z-index: 1050;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow: hidden;
    outline: 0;
    -webkit-overflow-scrolling: touch;
}

.modal.fade .modal-dialog {
    transition: transform .3s ease-out;
    transform: translate(0, -25%);
}

.modal.in .modal-dialog {
    transform: translate(0, 0);
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog {
    position: relative;

    width: auto;
    margin: 10px;
}

.modal-content {
    position: relative;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: .3rem;
    outline: 0;
    background-color: #fff;
    background-clip: padding-box;
}

.modal-backdrop {
    position: fixed;
    z-index: 1040;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    opacity: 0.5;
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.in {
    opacity: .5;
}

.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.modal-header::after {
    display: table;
    clear: both;
    content: '';
}

.modal-header .closeModal {
    margin-top: -2px;
}

.modal-title {
    line-height: 1.5;
    margin: 0;
}

.modal-body {
    position: relative;
    padding: 15px;
}

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}

.modal-footer::after {
    display: table;
    clear: both;
    content: '';
}

.modal-footer .btn + .btn {
    margin-bottom: 0;
    margin-left: 5px;
}

.modal-footer .btn-group .btn + .btn {
    margin-left: -1px;
}

.modal-footer .btn-block + .btn-block {
    margin-left: 0;
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    overflow: scroll;
    width: 50px;
    height: 50px;
}

@media (min-width: 544px) {
    .modal-dialog {
        width: 600px;
        margin: 30px auto;
    }

    .modal-sm {
        width: 300px;
    }
}

@media (min-width: 768px) {
    .modal-lg {
        width: 900px;
        margin: 30px auto;
    }
}
