/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */


 #gdpr-confirm-wrapper {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000000;
  background: rgba( 204, 204, 204, 0.6 );
  display: none;
  transition: opacity 0.2s ease-in;
}

#confirm-box {
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px 0;
}

#confirm-buttons {
  width: 100%;
  text-align: center;
  padding-bottom: 1em;
}

#confirm-buttons button {
  display: inline-block;
  background: transparent;
  color: #000;
  font-size: 1em;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
  border: 2px solid;
  margin: 0 0.5em;
  padding: 0.6em 0;
  width: 120px;
}

#confirm-header {
  text-align: center;
  font-size: 1em;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0 0 1.5em 0;
}
#confirm-content{
  padding: 0 22px;
}
#confirm-content table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 10px 10px;
}
#confirm-content td{
  vertical-align: middle;
  font-size: 14px;
  border: 0;
}
#confirm-content .switcher .text{
  overflow: inherit;
  float: inherit;
}


