#cookies-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    filter:alpha(opacity=50);
    -moz-opacity:0.5;
    -khtml-opacity: 0.5;
    opacity: 0.5;
    z-index: 10000;
    display: none;
}
 #cookies-window {
    position: fixed; background: rgba(86,86,86,0.95); left:50px; right: 50px; bottom: 50px; padding: 25px; color: #fff;
    z-index: 10001;
    display: none;
 }

 #cookies-window > div:first-child {
   padding-bottom: 20px;
   font-family: 'Roboto', sans-serif;
 }

 #cookies-window > div:last-child {
   padding-top: 20px;
   display: none;
 }

 .cookie-config {
     width: 100%;
     padding-bottom: 20px;
     display: none;
 }
 .cookie-config > table > thead {
     background-color: #da0c1d;
     color: #fff;
 }

 .cookie-config > table > tbody {
     background-color: gray;
 }
 .cookie-config > table > thead > tr > th:first-child {
     width: auto;
 }

 .cookie-config > table > thead > tr > th:nth-child(2) {
     width: 50%;
 }

 .cookie-config > table > thead > tr > th {
    font-weight: bold;
    padding: 10px;
 }

 .cookie-config > table > tbody > tr > td {
    padding: 10px;
 }
 
 .cookie-buttons-container {
    width: auto; padding-top:inherit; font-size:inherit; margin:auto; padding-bottom: inherit;
 }

 .cookie-buttons {
    padding-bottom: 10px;
    margin-top: 20px;
 }

 .cookie-buttons a {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    background-color: #da0c1d;
    padding: 13px;
    text-transform: uppercase;
    color: #fff;
    border: none;
    width: 352px;
    margin-left: 109px;
    margin-top: 20px;
    cursor: pointer;
    font-size: 14px;
    border: 3px solid #da0c1d;
    -webkit-transition: 0.3s background-color ease, 0.3s box-shadow ease;
    transition: 0.3s background-color ease, 0.3s box-shadow ease;
 }

 #cookies-window a:link {
   color: #fff;
   font-weight: bold;
 }
 #cookies-window a:hover {
   text-decoration: underline;
 }
 .cookie-buttons a:first-child {
   margin-top:unset;
 }
 .cookie-switch-td {
     text-align: center;
 }
 .cookie-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.cookie-switch > input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-switch > .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.cookie-switch > .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

.cookie-switch   input:checked + .slider {
  background-color: #2196F3;
}

.cookie-switch input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

.cookie-switch input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.cookie-switch > .slider.round {
  border-radius: 34px;
}

.cookie-switch > .slider.round:before {
  border-radius: 50%;
}

 @media (max-width: 1120px) {
    .cookie-buttons-container {
        padding-bottom: 0px;
        padding-top: 0px;
     }
    .cookie-config {
        padding-bottom: 0px;
    } 
    .cookie-buttons {
        display: inline-grid;
        width: 100%;
    }
 }