#cookie-consent-top {
    position: fixed;
    
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
    z-index: 1000;
}

#cookie-consent-top.cookie-consent-bar.top{
    top: 0;
}
#cookie-consent-top.cookie-consent-bar.bottom{
    bottom: 0;
}

.popup-content {
    text-align: center;
}

#cookie-consent-bar {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: #333;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    z-index: 1000;
}

#cookie-consent-top .cookie-consent-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
}

#cookie-consent-top .cookie-consent-btn:hover {
    background-color: #45a049;
}
.custom-redirect-btn {
    background-color: #2196F3; 
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer; 
    text-decoration: none; 
}
.custom-redirect-btn:hover {
    background-color: #0b7dda;
}
.cookie-consent-popup {
    position: fixed;
    z-index: 1001;
    padding: 20px;
    max-width: 300px;
}

.cookie-consent-popup.top-left {
    top: 20px;
    left: 20px;
}
.cookie-consent-popup.top-right {
    top: 20px;
    right: 20px;
}
.cookie-consent-popup.bottom-left {
    bottom: 20px;
    left: 20px;
}
.cookie-consent-popup.bottom-right {
    bottom: 20px;
    right: 20px;
}
.cookie-consent-popup.middle {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}