#gdpr-popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    z-index: 999999999;
}
#gdpr-popup-modal .static_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #fff;
    box-shadow: 3px 3px 10px rgba(0,0,0,0.6);
    width: 80%;
    max-width: 600px;
    padding: 20px;
    max-height: 85vh;
    overflow: hidden;
    overflow-y: auto;
}
#permission-settings-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    z-index: 999999999;
}
#permission-settings-modal .static_content {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #fff;
    box-shadow: 3px 3px 10px rgba(0,0,0,0.6);
    width: 80%;
    max-width: 600px;
    padding: 20px;
    max-height: 85vh;
    overflow: hidden;
    overflow-y: auto;
}
.checks-holder {
    text-align: left;
}
.fixed-icon{
    position: fixed;
    top: 60%;
    left: 0;
    width: 50px;
    background: #1979c3;
    padding: 10px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    cursor: pointer;
    box-shadow: 4px 4px 15px rgba(0,0,0,0.6);
    z-index: 9999;
    transition: all 500ms;
}
.fixed-icon img{
    filter: brightness(0) invert(1);
    vertical-align: middle;
}
.close-popup{
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 10px;
    font-weight: bold;
}
/* side popup */
.side-popup {
    background: #2b79c3;
    width: calc(50% - 80px);
    height: calc(100vh - 80px);
    position: fixed;
    bottom: 0;
    left: -50%;
    z-index: 9999;
    transition: all 500ms;
    padding: 40px;
}
.side-popup.active {
    left: 0;
    box-shadow: 4px 4px 15px rgba(0,0,0,0.6);
}
.fixed-icon.active {
    left: 50%;
    box-shadow: none;
}
@media screen and (max-width: 767px) {
    .fixed-icon {
        width: 30px;
    }
    /* side-popup */
    .side-popup {
        width: calc(80% - 80px);
        left: -80%;
    }
    .fixed-icon.active {
        left: 80%;
    }
}
/* FOOTER FIXED BAR */
.footer-fixed-bar {
    padding: 20px;
    background: #fff;
    text-align: center;
    position: fixed;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 999999999;
    border-top: 1px solid #333;
    box-shadow: 0px -3px 10px rgba(0,0,0,0.5);
}
.footer-fixed-bar .checks-holder {
    width: 70%;
    float: left;
    text-align: left;
}
.footer-fixed-bar .accept-holder {
    width: 30%;
    float: left;
}
@media screen and (max-width: 767px) {
    .footer-fixed-bar .checks-holder {
        width: 100%;
    }
    .footer-fixed-bar .accept-holder {
        width: 100%;
    }
}
