.cookie_info_wrapper {
    position: fixed;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.8);
    margin: auto;
    width: 100%;
    color: #fff;
    font-size: 14px;
    z-index: 2147483647;
}

/*COMPACT LAYOUT*/
.cookie_info_wrapper.compact .flex-container {
    display: none;
}
.cookie_info_wrapper.compact #cookie_content_wrapper {
    max-width: 600px;
}

/*RESPONSIVE OVERFLOW HELPER*/
.overflow_cookie_info_wrapper {
    bottom: 0%;
    top: 0%;
}
.overflow_container {
    overflow-y: scroll;
    height: 100%;
}

/*POSTIITON BOTTOM*/
.cookie_info_wrapper.cookie_wrapper-bottom {
    bottom: 0;
    background-color: rgba(112, 121, 131, 1);
    -webkit-box-shadow: 0px 0px 17px 0px rgba(0,0,0,0.70);
    -moz-box-shadow: 0px 0px 17px 0px rgba(0,0,0,0.70);
    box-shadow: 0px 0px 17px 0px rgba(0,0,0,0.70);
}

/*POSITION TOP*/
.cookie_info_wrapper.cookie_wrapper-top {
    top: 0;
    background-color: rgba(112, 121, 131, 1);
    -webkit-box-shadow: 0px 0px 17px 0px rgba(0,0,0,0.70);
    -moz-box-shadow: 0px 0px 17px 0px rgba(0,0,0,0.70);
    box-shadow: 0px 0px 17px 0px rgba(0,0,0,0.70);
}

/*FULLSCREEN*/
.cookie_info_wrapper.cookie_wrapper-fullscreen {
    top: 0;
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.cookie_info_wrapper.cookie_wrapper-fullscreen .container {
    background-color: rgba(112, 121, 131, 0.9);
    border: 2px solid rgba(182, 197, 213, 0.9);
    padding: 15px;
    -webkit-box-shadow: 0px 0px 17px 0px rgba(0,0,0,0.30);
    -moz-box-shadow: 0px 0px 17px 0px rgba(0,0,0,0.30);
    box-shadow: 0px 0px 17px 0px rgba(0,0,0,0.30);
}


.cookie_info_wrapper {
    line-height: 1.1;
}

.cookie_info_wrapper .headline {
    font-size: 15px;
    color: #fff;
    margin-top: 0;
}

.cookie_info_wrapper .flex-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.cookie_info_wrapper .form-group {
    margin-right: 25px;
    margin-bottom: 0;
    min-width: 100px;
    flex: 1 0 20%;
}

.cookie_info_wrapper .submit_cookies {
    max-height: 40px;
    align-self: center;
    margin-bottom: 7px;
    margin-top: 7px;
    font-weight: bold;
    text-transform: uppercase;
}
.cookie_info_wrapper .btn-xs {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.71);
    background-color: rgba(255, 255, 255, 0.3);
}

.cookie_info_wrapper .cat_checkbox {
    margin-top: 0;
    margin-bottom: 5px;
}

.cookie_info_wrapper hr {
    margin-top: 10px;
    margin-bottom: 10px;
    border-top: 1px solid rgba(238, 238, 238, 0.50);
}

.cookie_info_wrapper .required {
    color: inherit;
}
.cookie_info_wrapper .required .tracking_name, .cookie_info_wrapper .required .headline {
    border-bottom: 1px dotted #fff;
}
.cookie_info_wrapper .required .tracking_name.danger, .cookie_info_wrapper .required .headline.danger {
    border-bottom: 1px dotted red;
}
.cookie_info_wrapper .required .tracking_name.danger:before, .cookie_info_wrapper .required .headline.danger:before {
    content: "x ";
    color: red;
}

.cookie_info_wrapper .well {
    border: 1px solid #7d7d7d;
    padding: 10px 15px;
    background-color: #444;
}

.no_lic {
    text-align: center;
    position: fixed;
    bottom: 0;
    padding: 15px;
    background-color: rgba(83, 83, 83, 0.95);
    margin: auto;
    width: 100%;
    color: #fff;
    font-size: 14px;
    z-index: 1000000;
}

@media (max-width: 767px) {
    .cookie_info_wrapper .flex-container {
        flex-direction: column;
    }
    #cookie_form {
        padding-bottom: 15px;
    }
    .cookie_info_wrapper .stop_cookies {
        margin-bottom: 5px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .cookie_info_wrapper .stop_cookies {
        margin-bottom: 5px;
    }
} 