*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.sf-cookies {
  position: fixed;
  bottom: 0px;
  margin: auto;
  max-width: 935px;
  background-color: #5a5a5a;
  padding: 1.125rem;
  font-size: 10pt;
  line-height: 16px;
  font-family: Trebuchet MS, Arial, Helvetica, Sans-Serif;
    
}

.sf-cookies > p {
  margin: 0 0 25px 0;
  padding: 0;
  color:#d1d1d1;
}

.sf-cookies a {
    text-decoration:none;
}
  
.sf-cookies > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 10pt;
}

.sf-cookies > div .checkbox-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sf-cookies > div .checkbox-container .sf-checkbox-wrapp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 1.2rem;
  position: relative;
}

.sf-cookies > div .checkbox-container .sf-checkbox-wrapp .sf-checkbox {
  position: absolute;
  opacity: 0;
}

.sf-cookies > div .checkbox-container .sf-checkbox-wrapp .sf-checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
  color: #fff;
}

.sf-cookies > div .checkbox-container .sf-checkbox-wrapp .sf-checkbox + label:before {
  content: "";
  margin-right: 5px;
  display: inline-block;
  vertical-align: text-top;
  width: 15px;
  height: 15px;
  background: transparent;
  border: 1px solid #000;
  z-index: 1;
  -webkit-transition: .2s;
  transition: .2s;
}

.sf-cookies > div .checkbox-container .sf-checkbox-wrapp .sf-checkbox:hover + label:before {
  background: #3d3d3d;
}

.sf-cookies > div .checkbox-container .sf-checkbox-wrapp .sf-checkbox:checked + label:before {
  background: #74bc1f;
}

.sf-cookies > div .checkbox-container .sf-checkbox-wrapp .sf-checkbox:disabled + label {
  color: #b8b8b8;
  cursor: auto;
}

.sf-cookies > div .checkbox-container .sf-checkbox-wrapp .sf-checkbox:disabled + label:before {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #ddd;
}

.sf-cookies > div .checkbox-container .sf-checkbox-wrapp .sf-checkbox:checked + label:after {
  content: "";
  position: absolute;
  left: 2.7px;
  top: 7px;
  background: white;
  width: 2px;
  height: 2px;
  -webkit-box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white,
 4px -8px 0 white;
          box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white,
 4px -8px 0 white;
  -webkit-transform: rotate(45deg) scale(0.9);
          transform: rotate(45deg) scale(0.9);
}

.sf-cookies > div .btn-container .sf-btn {
  background: #b0b0b0;
  padding: 3px 12px;
  color: #000;
  cursor: pointer;
  -webkit-transition: .2s;
  transition: .2s;
  border: 1px solid #3d5119;
}

.sf-cookies > div .btn-container .sf-btn:hover {
  background: #cacaca;
}

.sf-cookies > div .btn-container .sf-btn.primary {
  background: #74bc1f;
  margin-left: 10px;
}

.sf-cookies > div .btn-container .sf-btn.primary:hover {
  background: #81d620;
}