/* General */

html {
  height: 100%;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  position: relative;
  margin: 0;
  padding-bottom: 6rem;
  min-height: 100%;
  font-family: 'Open Sans', sans-serif;
}

p {
  color: #333;
  margin-top: 8px;
  margin-bottom: 50px;
  width: 872px;
  text-align: justify;
}

h1 {
  font-size: 26px;
  font-weight: 300;
  margin-bottom: 8px;
}

ul {
  padding-left: 26px;
}


/* Page layout */

.page-container {
  margin: 0 auto;
  padding-top: 4px;
  width: 960px;
  font-size: 16px;
}

.bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  text-align: center;
  color: #333;
  background-color: #fff;
  font-size: 14px;
}


/* Logos */

.logo-container {
  position: relative;
  margin-top: 35px;
  height: 100px;
}

.company-logo {
  height: 60px;
  position: absolute;
  top: 0;
  left: 0;
}

.bd4-logo {
  height: 45px;
  position: absolute;
  top: 0;
  right: 0;
}


/* Content styles */

.option-block {
  color: #333;
  margin-top: 38px;
}

.option-block .privacy-option-desc {
  margin-top: 16px;
  margin-left: 26px;
}

.option-block button,
.option-block button:active,
.option-block button:visited {
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  width: 150px;
  border: 0;
  border-radius: 5px;
  background-color: #009687;
  color: #fff;
  padding: 10px;
  text-align: center;
  outline: 0;
}

.option-block button:hover {
  background-color: #00d0bb;
}


/* Popup layer */

.popup-layer {
  position: fixed;
  width: 360px;
  height: auto;
  padding: 15px 35px 35px 35px;
  box-shadow: 0 8px 13px 0 rgba(0, 0, 0, 0.2),
  0 0 6px 0 rgba(0, 0, 0, 0.08);
  background-color: #fff;
  left: 50%;
  top: 50%;
  margin-left: -215px;
  margin-top: -103px;

  display: none;
}

.popup-layer p {
  width: auto;
  margin: 0;
}

