/* Bootstrap Modal Overrides */

.pf-modal-popup-bootstrap { }

.pf-modal-popup-bootstrap .modal-content {
    border-radius : 0;
}

.pf-modal-popup-bootstrap .modal-header {
    border-bottom : none;
}

.pf-modal-popup-bootstrap .modal-title {
    text-align : center;
}

/* Fission Modal */

.pf-modal-popup-fission, .pf-modal-popup-fission-followup {
    background: rgba(0,0,0,0.5);
    position: fixed;
    z-index: 20000;
    height: 100%;
    width: 100%;
    display:none;
}

.pf-modal-center {
    width: 50%;
    margin: auto;
    display: block;
}

.pf-modal-content {
    background: #fff;
    padding: 6px 12px 12px 12px;
    margin-top: 25px;
    width: 100%;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,.5);
}

.pf-modal-close {
    cursor: pointer;
    float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .2;
    padding:2px;
}

.pf-modal-header {}
.pf-modal-body {}

@media (max-width: 992px) {
    .pf-modal-body {
        min-height: auto;
        padding:30px 30px
    }
    .pf-modal-center {
        width:80%;
    }
}

/* Footer Modal */

.pf-modal-popup-footer, .pf-modal-popup-footer-followup {
    display:none;
}

.footer-site-alert {
    color:#fff;
    position: fixed;
    z-index: 1000;
    border-radius: 0;
    bottom: 0;
    left: 0;
    margin: 0;
    width: 100%;
    flex-direction: column;
    padding-bottom:25px;
    padding:15px;
}
  
.alert-topbar {
    display:flex;
    justify-content:space-between;
    align-items : center;
    
}

.alert-topbar > div {
    width:auto;
    margin-bottom:5px;
}


.footer-site-alert .description p {
    margin: 0;
    line-height: 1;
}

.footer-site-alert .title {
    line-height: 1;
    font-weight:bold;
    font-size: large;
    text-transform:uppercase;
}

.footer-site-alert .pf-modal-close {
    text-shadow: none;
    cursor: pointer;
    text-align: right;
    color: inherit;
    opacity: 75%;
}

.footer-site-alert .pf-modal-close .fa {
    transition: opacity .1s ease-in-out;
}

.footer-site-alert .pf-modal-close .fa:hover {
    opacity: 100%;
}