body.cookie-opened {
    left: 0;
    overflow: hidden !important;
    position: fixed;
    right: 0;
}
            
#cookie-container * {
    pointer-events: auto;
    
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#cookie-container *::-webkit-scrollbar {
    background: transparent;
    height: 4px;
    width: 4px;
}

#cookie-container *::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.08);
}

#cookie-container *::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

#cookie-container {
    background: rgba(0, 0, 0, .5);
    bottom: 0;
    color: #000000;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999999;
    
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    transition: all 200ms ease;
}

#cookie-container.closing {
    opacity: 0;
}

#cookie-container.closed {
    display: none;
}

.cookie-window {
    background: #fefefe;
    height: 100%;
    max-width: 600px;
    overflow-y: auto;
    padding: 20px;
    position: absolute;
    right: 0;
    width: 100%;
}

.cookie-window-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.cookie-window-close-button {
    cursor: pointer;
    height: 16px;
    width: 16px;
    position: relative;
}

.cookie-window-close-button:before,
.cookie-window-close-button:after {
    background: #000000;
    content: ' ';
    height: 20px;
    left: 7px;
    position: absolute;
    top: -2px;
    width: 2px;

    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    transition: all 200ms ease;
}

.cookie-window-close-button:before {
    transform: rotate(45deg);
}

.cookie-window-close-button:after {
    transform: rotate(-45deg);
}

.cookie-window-close-button:hover::before,
.cookie-window-close-button:hover::after {
    opacity: .8;
}

.cookie-window-introduction {
    font-size: 12px;
}

.cookie-window-content {
    font-size: 12px;
    margin-bottom: 20px;
    position: relative;
    width: 100% !important;
}

.cookie-window-content-scrollable {
    max-height: 75px;
    overflow-y: scroll;
    margin-bottom: 10px;
}

.cookie-window-image {
    height: 15px;
    margin-left: 5px;
    vertical-align: middle;
    width: 15px;
}

.cookie-settings-table {
    margin-bottom: 10px;
    padding: 0;
    table-layout: initial;
}

.cookie-settings-table .input-container {
    margin: 0;
}

.cookie-window-ending {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 12px;
    padding-top: 20px;
}

.cookie-window-footer {
    display: flex;
    justify-content: space-between;
}