.cookie-pop {
    background-color: #1C1C1C;
    color: #fff;
    position: relative;
    /*position: fixed; */
    text-align: center;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    font-weight: 300;
    font-size: 12px;
    line-height: 1.4;
    padding: 24px 100px 24px 36px;
    
    z-index: 9999;
}



.cookie-pop__wrapper {
    position: relative;
    background-color: red;
}

.cookie-pop--fixed-top {
    position: fixed;
    top:0;
}
.cookie-pop--fixed-bottom {
    position: fixed;
    top: auto;
    bottom:0;
} 
.cookie-pop button {
    margin: 0 10px;
    background: #FEEE8A;
    color: #1C1C1C;
    font-family: inherit;
    font-weight: 500;
}


.cookie-pop a,
.cookie-pop a:hover {
     color: #fff;
     text-decoration: underline;
}


[class*='close-'] {
    color: #777;
    text-decoration: none !important;
    font-size: 0.65rem;
    line-height: 1.9rem;
    border-radius: 50%;
    display: block;
    width:42px;
    height: 42px;
    border:1px white solid;
    position: absolute;
    right: 24px;
    text-decoration: none;
    top: 12px; /*calc(50% - 1.1rem); */
    
}

.close-classic:after {
    content: 'X'; /* ANSI X letter */
    line-height: 38px;
    font-size: 10px;
    display: block;
}