.cookie-popup {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #FFFFFF;
    z-index: 999999;
    padding: 40px 0;
    max-height: 45vh;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
}

.cookie-popup-bottom {
    display: table;
    width: 100%;
}

.cookie-popup-bottom-left {
    display: table-cell;
    vertical-align: middle;
}

.cookie-popup-bottom-left .component {
    display: inline-block;
    vertical-align: middle;
}

.cookie-popup-bottom-right {
    display: table-cell;
    vertical-align: middle;
    width: 330px;
    text-align: right;
}

.input-row-check-disabled {
    opacity: 0.5;
}

.input-row-check-disabled label {
    cursor: not-allowed !important;
}

.cookie-tabs {
    display: none;
    font-size: 0.9em;
    margin-top: 20px;
}

.cookie-tabs-top {
    border-bottom: 1px solid #ccc;
    height: 35px;
}

.cookie-tabs-top div {
    display: block;
    float: left;
    line-height: 35px;
    height: 35px;
    padding: 0px 10px;
    margin-right: 0px;
    cursor: pointer;
}

.cookie-tabs-top div.active {
    border: 1px solid #ccc;
    border-bottom: 1px solid #fff;
}

.cookie-tabs-bottom [data-tab] {
    padding-top: 10px;
    display: none;
}

.cookie-tabs-bottom [data-tab].active {
    display: block;
}

.cookies-info-in {
    display: table;
    width: 100%;
}

.cookies-info-left, .cookies-info-right {
    display: table-cell;
    vertical-align: top;
}

.cookies-info-left {
    width: 160px;
}

.cookies-info-left div {
    cursor: pointer;
    padding: 5px 0px;
    border-bottom: 1px solid #ccc;
    color: #999;
}

.cookies-info-left div.active {
    color: #000 !important;
}

.cookies-info-right {
    border-left: 1px solid #ccc;
    padding-left: 20px;
    padding-top: 5px;
}

.cookies-info-left div:last-child {
    border-bottom: 0px;
}

.cookie-tabs-bottom p {
    margin-bottom: 10px;
}

.cookie-tabs-bottom p:last-child {
    margin-bottom: 0px !important;
}

.cookie-tabs-bottom .btn {
    display: inline-block;
    text-decoration: none;
}

.cookies-info-right [data-cookieinfo-tab] {
    display: none;
}

.cookies-info-right [data-cookieinfo-tab].active {
    display: block;
}

.cookies-info-right .title {
    font-weight: 600;
    font-size: 1em;
    color: #000;
    margin-bottom: 0.25em;
}

.cookie-table-row {
    display: table;
    width: 100%;
    table-layout: fixed;
    margin-bottom: 5px;
}

.cookie-table-column {
    display: table-cell;
    vertical-align: top;
    padding: 3px 10px;
}

.cookie-table-column.remove-overflow {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cookie-table-row:first-child {
    background: #f1f1f1;
    font-weight: 600;
}

.cookies-info-right .title {
    display: none;
}

.cookie-popup.show-info .cookie-tabs {
    display: block;
}

.toggle-cookie-information .less {
    display: none;
}

.cookie-popup.show-info .toggle-cookie-information .more {
    display: none;
}

.cookie-popup.show-info .toggle-cookie-information .less {
    display: block;
}

.cookie-notice-links .toggle-cookie-information,
.cookie-notice-links > a {
    display: inline-block;
    vertical-align: middle;
}

.cookie-notice-links > a {
    float: right;
}


/** FONT SIZES **/
.cookie-tabs {
    font-size: 0.75em;
    line-height: 1.5em;
}

.cookie-notice-links .toggle-cookie-information {
    color: #999;
}

.cookie-notice-links .toggle-cookie-information span {
    cursor: pointer;
}

/** RESPONSIVE **/
/************* MAX TABLET-PORTRAIT *************/
@media screen and (max-width: 768px) {
    .cookie-popup {
        max-height: 100vh;
        padding: 20px 0;
    }
    
    .cookie-popup-bottom {
        display: block;
    }
    
    .cookie-popup-bottom-left {
        display: block;
        vertical-align: middle;
        margin-bottom: 20px;
    }
    
    .cookie-popup-bottom-right {
        display: block;
        width: auto;
        text-align: left;
    }
    
    .cookie-tabs-top {
        height: 32px;
    }
    
    .cookie-tabs-top div {
        line-height: 32px;
        height: 32px;
        padding: 0px 7px;
    }
    
    .cookie-tabs-bottom p {
        margin-bottom: 6px;
    }
    
    .cookies-info-left {
        width: 100px;
    }
    
    .cookie-table-row:first-child {
        display: none;
    }
    
    .cookie-table-row,
    .cookie-table-column {
        display: block;
    }
    
    .cookie-table-column {
        padding: 2px 0px;
    }
    
    .cookie-table-row {
        border-top: 1px solid #ccc;
        padding-top: 5px;
    }
    
    .cookies-info-right .title {
        display: block;
    }
}