.modal_container_for_cookie_notification {
    display: block; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: #0000001c; /* Black w/ opacity */    
}

.modal_content_div_for_cookie_notification {
    background-color: #fefefe;    
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    margin: 6% auto;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;    
    box-sizing: border-box;
    min-height: 200px;    
}

.close_button_for_cookie_notification_modal {
    margin-left: auto;
    margin-right: 0;
    color: rgb(33, 33, 33);
    font-family: 'Times New Roman', Times, serif;
    font-size: 40px;
    font-weight: 400;
    padding: 10px 22px 0 0;
}

.close_button_for_cookie_notification_modal:hover {
    cursor: pointer; 
}

.modal_content_div_for_cookie_notification {
    width: clamp(280px,60vw,700px);    
}

.modal_text_content_div_for_cookie_notification {
    padding: 0 clamp(10px, 7vw, 80px) clamp(40px, 8vw, 80px) clamp(10px, 7vw, 80px);
}