.cookie_box {
    position: fixed;
    right: 20px;
    bottom: 60px;
    width: 500px;
    padding: 20px 30px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    background-color: #fff;
    border: 1px solid;
    border-color: #f4f4f4;
    border-radius: 6px;
    z-index: 9999;
}

.cookie_box h3 {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #212121;
}

.cookie_box p {
    font-size: 14px;
    margin: 10px 0;
    font-weight: 400px;
    color: #212121;
    text-align: justify;
}

#cookie_box.hide { 
    opacity: 0; 
    pointer-events: none; 
    transform: scale(0.8); 
    transition: all 0.3s ease; 
} 

.cookie_box button {
    padding: 8px 25px;
    background: #fff;
    color: #333;
    font-size: 16px;
    border: 2px solid #027cb7;
    outline: 0;
    cursor: pointer;
    border-radius: 26px;
}

.cookie_box button:hover {
    background-color: #027cb7;
    color: #fff;
}

.btn-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.cookie_box button:focus {
    background: #054d6f;
}

#customizationOptions {
    position: fixed;
    bottom: 10px;
    right: 20px;
    width: 600px;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    border: 1px solid;
    border-color: #f4f4f4;
    border-radius: 6px;
}

#customizationOptions input {
    margin-right: 10px;
}

#customizationOptions h2 {
    margin: 10px 0;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

#customizationOptions label {
    display: block;
    margin-bottom: 10px;
}

#customizationOptions span {
    font-size: 14px;
    font-weight: 400;
    color: #998D8B;
}

#customizationOptions button {
    margin-top: 10px;
    padding: 6px 20px;
    background-color: #fff;
    border-radius: 26px;
    color: #333;
    /* border-radius: 26px; */
    text-align: center;
    border: 2px solid #027cb7;
}

#customizationOptions button:hover {
    background-color: #027cb7;
    color: #fff;
}

@media (max-width: 767px) {
    .cookie_box {
        position: fixed;
        right: 30px;
        bottom: 20px;
        width: 300px;
        padding: 10px 20px;
    }

    .cookie_box h3 {
        font-size: 16px;
    }

    .cookie_box p {
        font-size: 12px;
    }

    .cookie_box button {
        padding: 4px 8px;
        font-size: 12px;
        cursor: pointer;
        border-radius: 26px;
    }

    #customizationOptions {
        top: 110px;
        right: 30px;
        width: 300px;
        max-height: calc(100vh - 150px); /* Adjust as needed */
        overflow-y: auto;
        padding: 20px;
        border-radius: 6px;
        z-index: 9999;
    }
}