@import url('https://fonts.googleapis.com/css2?family=Convergence&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Convergence&family=Noto+Sans+TC:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

.cookie_modal {
    display: block;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.cookie_content {
    background-color: #252525;
    margin: 15% auto;
    padding: 20px;
    /*border: 1px solid #888;*/
    border-radius: 10px;
    width: 100vh;
    display: flex;
    flex-direction: column;
}

.cookie_content h1 {
    font-family: "Roboto", 'Noto Sans TC',sans-serif;
    text-align: center;
    color: #ffffff;
}

.cookie_info {
    font-family: "Roboto", 'Noto Sans TC',sans-serif;
    color: #ffffff;
    margin: 20px auto 0;
    padding: 10px;
    width: 85%;
    font-size: 16px;
    font-weight: bold;
    /*background-color: #424242;*/
    border-radius: 10px;
}

.cookie_item_container {
    margin-top: 10px;
    border-radius: 10px;
    /*border: 2px solid #575757;*/
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    background-color: #252525;
    width: 100%;
    flex-direction: column;
}

.cookie_item {
    margin: 20px;
    background-color: #2c2c2c;
    width: 85%;
    min-height: 80px;
    border-radius: 10px;
    display: flex;
    /*justify-content: center;*/
    align-items: center;
}

.cookie_item p {
    font-family: "Roboto", 'Noto Sans TC',sans-serif;
    color: #ffffff;
    padding: 20px;
    font-weight: bold;
    font-size: 20px;
    white-space: normal;
}

