/*
    ---------------------------------------------------------
    Homepage only CSS Styles
    ----------------------------------------------------------
*/



/* ======================================================

    Styles related to our Custom GDPR Inactive users system

====================================================== */

#inactive_account_container {
    overflow-y: auto;
    display: flex;
    display: none;
    position: fixed;
    z-index: 999999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0.625em;
    overflow-x: hidden;
    transition: background-color .1s;
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: transparent;
    background: rgba(0,0,0,.4);
}
#inactive_account_popup {
    width: 90%;
    display: flex;
    position: relative;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: center;
    max-width: 800px;
    border: none;
    border-radius: 5px;
    background: #fff;
    font-family: inherit;
    font-size: 1rem;
}
#inactive_account_popup .close {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    padding: 0;
    overflow: hidden;
    transition: color .1s ease-out;
    border: none;
    border-radius: 5px;
    background: 0 0;
    color: #ccc;
    font-family: serif;
    font-size: 60px;
    line-height: 60px;
    cursor: pointer;
}
#inactive_account_popup .close:hover,
#inactive_account_popup .close:focus,
#inactive_account_popup .close:active {
    box-shadow: none;
    border: 0px;
    color: #d14529;
}
#inactive_account_popup #popup_heading {
    text-align: center;
    margin-bottom: 20px;
    padding-top: 22px;
    padding-bottom: 22px;
    padding-left: 24px;
    padding-right: 24px;
    font-family: Open Sans;
    font-size: 32px;
    line-height: 32px;
    font-weight: 500;
    background: #0072CF;
    color: #fff;
    letter-spacing: 0.5px;
}
#inactive_account_popup .popup_content {
    padding: 22px;
    text-align: center;
}
