
@media all and (min-width: 800px) {
    #omnium-subscription-modal {
        display: none; /* Hidden by default */
        position: fixed; /* Stay in place */
        z-index: 9999; /* Sit on top */
        padding-top: 100px; /* Location of the box */
        left: 0;
        top: 0;
        width: 100%; /* Full width */
        height: 100%; /* Full height */
        overflow: auto; /* Enable scroll if needed */
        background-color: rgb(0,0,0); /* Fallback color */
        background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    }

    #omnium-subscription-modal-content {
        background-color: #fefefe;
        margin: auto;
        padding: 20px;
        border: 1px solid #888;
        width: 50%;
    }

    #omnium-subscription-update-btn {
        background-color: #4CAF50; /* Green */
        border: 2px solid #4caf50;
        color: white;
        padding: 15px 32px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
        cursor: pointer;
    }
    #omnium-subscription-consents-section{
        float:left;
        width: 50%;
    }
    #omnium-subscription-interests-section{
        float:left;
        width: 50%;
    }
}

@media all and (max-width: 799px) {
    #omnium-subscription-modal {
        display: none; /* Hidden by default */
        position: fixed; /* Stay in place */
        z-index: 9999; /* Sit on top */
        padding-top: 50px; /* Location of the box */
        left: 0;
        top: 0;
        width: 100%; /* Full width */
        height: 100%; /* Full height */
        overflow: auto; /* Enable scroll if needed */
        background-color: rgb(0,0,0); /* Fallback color */
        background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    }

    #omnium-subscription-modal-content {
        background-color: #fefefe;
        margin: auto;
        padding: 20px;
        border: 1px solid #888;
        width: 80%;
    }

    h2 {
        font-size: 20px;
    }

    div {
        font-size: 14px;
    }
    
    #omnium-subscription-update-btn {
        background-color: #4CAF50; /* Green */
        border: 2px solid #4caf50;
        color: white;
        padding: 12px 28px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 14px;
        cursor: pointer;
    }
}


/* Modal Content */

.omnium-subscription-modal-heading-content {
    padding-bottom: 10px;
}

.omnium-subscription-modal-heading {
    width: 100%;
    text-align: center;
    margin: auto;
}
#omnium-subscription-info-section{
    padding-bottom: 10px;
}
#omnium-subscription-bottom-section{
    padding-top: 10px;
}
#omnium-subscription-loading {
    width: 100%;
    text-align: center;
    margin: auto;
    padding-top: 30px;
    padding-bottom: 30px;

    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: omniumSpin 2s linear infinite; /* Safari */
    animation: omniumSpin 2s linear infinite;
}
/* Safari */
@-webkit-keyframes omniumSpin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes omniumSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.omnium-close-btn {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.omnium-close-btn:hover, .omnium-close-btn:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.omnium-unsubscribe-row {
    display: table;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
}



#omnium-unsubscribe-btn:hover, #omnium-unsubscribe-btn:focus {
    background: #ffffff;
    color: #000000;
}
