.cookie_modal {
  display: none; 
  position: fixed; 
  z-index: 999; 
  padding-top: 100px; 
  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, .cookie_content2 {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 580px;
}

.cookie_content2 {
    display: none; 
}


.cookie_accept {
  background-color: #ff0000;
  border: none;
  float: left;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  padding: 15px;
  cursor: pointer;
}

.cookie_settings {
   background-color: #f5f5f5;
  border: none;
  float: right;
  font-size: 13px;
  font-weight: bold;
  color: #000;
  padding: 15px;
  cursor: pointer;
}

.cookie_table {
    text-align: left;
}

.cookie_table td.chk {
    width: 70px;
}

.cookie_table td {
    padding: 15px 0px 15px 0px;
}

.cookie_table span.desc {
    font-style: italic;
    font-size: 85%;
}

.cookie_table strong {
   
    font-size: 110%;
}


.ck_container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 25px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.ck_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  right: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border: 1px solid #ddd;
}


.ck_container:hover input ~ .checkmark {
  background-color: #ccc;
}


.ck_container input:checked ~ .checkmark {
  background-color: #2196F3;
}


.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}


.ck_container input:checked ~ .checkmark:after {
  display: block;
}


.ck_container .checkmark:after {
  left: 8px;
  top: 4px;
  width: 7px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}



