/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 17 2024 | 10:33:53 */
/* Base container styling for both elements */
.cookie-consent-container, .disclaimer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 10px;
	padding-top: 10px;
	padding-right: 10px;
    position: fixed;
    left: 0;
    bottom: 0; /* Initially set to 0, adjust with JS as necessary */
    width: 60%;
    background-color: #f4f4f4; /* Matched to disclaimer */
    color: #333; /* Matched to disclaimer */
    border-radius: 10px;
    box-shadow: 0px -2px 5px rgba(0,0,0,0.2);
    z-index: 1000; /* Ensuring visibility */
    box-sizing: border-box;
}

/* Text container for cookie policy for alignment, similar to disclaimer */
.cookie-text-container {
    flex: 1;
    margin-right: 10px;
}

/* Button styling unified */
.cookie-consent-button, .disclaimer-close {
    padding: 7px 14px;
    background-color: #008cba; /* Making the background color identical */
    color: white;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    border-radius: 10px; /* Ensuring rounded corners */
}

@media (max-width: 768px) {
    .cookie-consent-container, .disclaimer-container {
        width: 100%; /* Full width on smaller screens */
        bottom: 0; /* Adjust dynamically with JS if needed */
    }
}
