#_cc_m_root,
body,
html {
   height: 100%;
   width: 100%;
}

body,
html {
   position: relative;
}

#_cc_m_root {
   --p: rgb(60, 60, 60);
   --l: rgb(100, 100, 100);
   background-color: rgba(0, 0, 0, 0.8);
   display: flex;
   align-items: center;
   justify-content: center;
   position: fixed;
   z-index: 9999999999;
}

#_cc_m_container {
   box-sizing: border-box;
   width: 500px;
   height: 350px;
   background-color: #fff;
   border-radius: 15px;
   border: 1px solid #fff;
   padding: 20px;
   position: relative;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   align-items: flex-start;
   font-family: Arial, Helvetica, sans-serif;
   color: var(--p);
   font-size: 0.8rem;
}

#_cc_m_container a {
   color: var(--p);
   text-decoration: underline;
}

#_cc_m_container img {
   height: 50px;
   width: 50px;
}

#_cc_m_container p {
   text-align: justify;
   line-height: 1rem;
   margin: 0;
}

#_cc_m_container p._cc_m_head {
   font-weight: 700;
   font-size: 1rem;
}

#_cc_m_links a {
   color: var(--l);
   text-decoration: none;
   margin-right: 10px;
}

#_cc_m_links a:hover {
   text-decoration: underline;
}

#_cc_m_buttons {
   display: flex;
   width: 100%;
   justify-content: space-around;
}

#_cc_m_buttons button {
   color: black;
   box-sizing: border-box;
   flex: 1 0 calc(50% - 10px);
   font-weight: 700;
   border: 1px solid transparent;
   background-color: #d2d2d2;
   padding: 10px;
   font-size: 0.8rem;
   border-radius: 10px;
   cursor: pointer;
   transition: filter 0.5s;
}

#_cc_m_buttons button:first-child {
   margin-right: 20px;
}

#_cc_m_buttons button:hover {
   filter: brightness(0.9);
   border-color: var(--p);
}

#_cc_m_buttons button._cc_m_accept {
   background-color: var(--c, #0dbdff);
   color: var(--t, black);
}
