/* The Modal (background) */
.modal {
  font-family: Arial, Helvetica, sans-serif;
  position: fixed;
  /* Stay in place */
  z-index: 20000;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: #000000;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
  /* Modal Content/Box */
}
.modal .modal-content {
  background-color: #fefefe;
  margin: 8% auto;
  /* 15% from the top and centered */
  padding: 20px;
  font-size: 12px;
  width: 90%;
  /* Could be more or less, depending on screen size */
  text-align: left;
  /*https://codepen.io/Vestride/pen/dABHx*/
  /*https://jsonformatter.org/scss-to-css*/
  /*.styled-checkbox:hover + label:before {
        background: rgba(0, 130, 243, 1);
    }
    .styled-checkbox:focus + label:before {
        box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
    }*/
}
.modal .modal-content #hidden {
  display: none;
}
.modal .modal-content a {
  color: #3e2b1d;
  font-size: 12px;
}
.modal .modal-content section {
  padding-bottom: 25px;
}
.modal .modal-content p {
  padding-bottom: 10px;
}
.modal .modal-content .btn-red {
  background-color: #BD1101;
  color: #FFFFFF;
  font-size: 12px;
  border: none;
  padding: 5px 10px 5px 10px;
  cursor: pointer;
  width: 180px;
  margin-bottom: 10px;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
.modal .modal-content .btn-gray {
  background-color: #E4E4E4;
  color: #666666;
  font-size: 12px;
  border: none;
  padding: 5px 10px 5px 10px;
  cursor: pointer;
  width: 180px;
  margin-bottom: 10px;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
.modal .modal-content .styled-checkbox {
  position: absolute;
  opacity: 0;
}
.modal .modal-content .styled-checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
}
.modal .modal-content .styled-checkbox + label:before {
  content: '';
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 20px;
  height: 20px;
  background: #e4e4e4;
}
.modal .modal-content .styled-checkbox:checked + label:before {
  background: #0082f3;
}
.modal .modal-content .styled-checkbox:disabled + label {
  color: #b8b8b8;
  cursor: auto;
}
.modal .modal-content .styled-checkbox:disabled + label:before {
  box-shadow: none;
  background: #ddd;
}
.modal .modal-content .styled-checkbox:checked + label:after {
  content: '';
  position: absolute;
  left: 5px;
  top: 9px;
  background: white;
  width: 2px;
  height: 2px;
  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;
  transform: rotate(45deg);
}
@media (min-width: 768px) {
  .modal .modal-content {
    width: 60%;
    font-size: 16px;
  }
  .modal .modal-content a {
    font-size: 16px;
  }
  .modal .modal-content .btn-red,
  .modal .modal-content .btn-gray {
    font-size: 16px;
  }
}
@media (min-width: 1160px) {
  .modal .modal-content {
    width: 40%;
  }
}
/*# sourceMappingURL=cookiebanner.css.map */