/** ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 *
 * CookieNotice.css
 *
 * @category     Template
 * @copyright    Manuela v.d.Decken <manuela@isteam.de>
 * @author       Manuela v.d.Decken <manuela@isteam.de>
 * @license      http://www.gnu.org/licenses/gpl.html   GPL License
 * @version      0.0.1
 * @lastmodified 19.09.2015
 * @since        File available since 04.07.2015
 * @description  switch off the cookie notice for n days
    (by default after 7 days the cookie will be removed again)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    format the cookie notice
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
#CookieNotice {
    box-sizing: border-box;
    position: fixed;
    left: 0; top: 0; right: 0; bottom: 0;
    padding: 0px;
    background-color: rgba(217, 206, 160, 0.4);
    display: none;
    z-index: 9999;
}
#CookieNoticeBar {
    position: relative;
    top: 0%;
    background-color: #2c1e10;
    text-align: left;
    color: #fff;
    font-size: 16px;
    width: 100%;
    /*height: 100px;
    padding: 16px 0;
    border-radius: 6px;*/
    border: solid 1px #2c1e10;
}
#CookieNoticeClose {
    /*float:right;*/
    background: #8ec760;
    color: #404040;
    font-weight: bold;
    font-size: 16px;
    width: 120px;
    /*height: 100%;*/
    cursor: pointer;
    border-radius: 4px;
    text-align: center;
    padding: 10px 10px;
}
table.coockie {
	  width: 100%;
    /*height: 110px;*/
    border: solid 1px #2c1e10;
    padding: 1em 2em 3em 4em;
}
td.coockie1 {
    padding: 0em 0em 0em 0.5em;
    border: solid 1px #2c1e10;
}
td.coockie2 {
    padding: 1em 1em 1em 0.5em;
    /*padding: 15px 15px;*/
    text-align: center;
    /*height: 3.5em;*/
}
#CookieNoticeInfo {}
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/