/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
/*
body {
    min-height: 100vh;
    background-color: #4070f4;
}
*/

.cookie_wrapper {
    position: fixed;
    bottom: 50px;
    right: -370px;
    max-width: 345px;
    z-index: 9999;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    padding: 15px 25px 22px;
    transition: right 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.cookie_wrapper.show {
    right: 20px;
}
.cookie_wrapper header {
    display: flex;
    align-items: center;
    column-gap: 15px;
}
header i {
    color: #4070f4;
    font-size: 32px;
}
header h2 {
    color: #4070f4;
    font-weight: 500;
}
.cookie_wrapper .cookie_data {
    margin-top: 16px;
}
.cookie_wrapper .cookie_data p {
    color: #333;
    font-size: 16px;
}
.cookie_data p a {
    color: #4070f4;
    text-decoration: none;
}
.cookie_data p a:hover {
    text-decoration: underline;
}
.cookie_wrapper .cookie_buttons {
    margin-top: 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cookie_buttons .cookie_button {
    border: none;
    color: #fff;
    padding: 8px 0;
    border-radius: 4px;
    background: #4070f4;
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    transition: all 0.2s ease;
}
.cookie_buttons #acceptBtn:hover {
    background-color: #034bf1;
}
#declineBtn {
    border: 2px solid #4070f4;
    background-color: #fff;
    color: #4070f4;
}
#declineBtn:hover {
    background-color: #4070f4;
    color: #fff;
}




/* Apply dark mode only to .cookie_wrapper */
.cookie_wrapper.dark {
    background: #1e1e1e;
    box-shadow: 0 5px 10px rgba(255, 255, 255, 0.1);
}

/* Header text and icon */
.cookie_wrapper.dark header i {
    color: #86d9fc;
}
.cookie_wrapper.dark header h2 {
    color: #86d9fc;
}

/* Cookie data text */
.cookie_wrapper.dark .cookie_data p {
    color: #ddd;
}

/* Links */
.cookie_wrapper.dark .cookie_data p a {
    color: #86d9fc;
}
.cookie_wrapper.dark .cookie_data p a:hover {
    text-decoration: underline;
}

/* Buttons */
.cookie_wrapper.dark .cookie_buttons .cookie_button {
    background: #86d9fc;
    color: #121212;
}
.cookie_wrapper.dark .cookie_buttons #acceptBtn:hover {
    background-color: #86d9fc;
}
.cookie_wrapper.dark #declineBtn {
    border: 2px solid #86d9fc;
    background-color: #1e1e1e;
    color: #86d9fc;
}
.cookie_wrapper.dark #declineBtn:hover {
    background-color: #86d9fc;
    color: #1e1e1e;
}





/*

.dark {
    background-color: #121212;
    color: #f1f1f1;
}

.dark .cookie_wrapper {
    background: #1e1e1e;
    box-shadow: 0 5px 10px rgba(255, 255, 255, 0.1);
}

.dark header i {
    color: #bb86fc;
}
.dark header h2 {
    color: #bb86fc;
}

.dark .cookie_wrapper .cookie_data p {
    color: #ddd;
}

.dark .cookie_data p a {
    color: #bb86fc;
}
.dark .cookie_data p a:hover {
    text-decoration: underline;
}

.dark .cookie_buttons .cookie_button {
    background: #bb86fc;
    color: #121212;
}
.dark .cookie_buttons #acceptBtn:hover {
    background-color: #9a67ea;
}
.dark #declineBtn {
    border: 2px solid #bb86fc;
    background-color: #1e1e1e;
    color: #bb86fc;
}
.dark #declineBtn:hover {
    background-color: #bb86fc;
    color: #1e1e1e;
}*/
