@charset "UTF-8";

body.no_scroll {
  overflow: hidden;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10000;
  background-color: lightgrey;
  opacity: 0.8;
}

.cookie_policy_outer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100vw;
  max-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 11000;
}

#cookie_policy {
  width: 80vw;
  z-index: 11000;
  background-color: #fff;
  padding: 50px;
  line-height: 175%;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
  max-height: 90vh;
  background: #fff;
}

@media all and (max-width: 740px),
print {
  #cookie_policy {
    padding: 20px;
    line-height: 110%;
    font-size: smaller;
  }

  #cookie_policy h2 {
    font-size: smaller;
    line-height: 110%;
  }
}

#cookie_policy h2 {
  font-size: 23px;
  font-weight: bold;
  margin-bottom: 10px;
}

#cookie_policy a {
  text-decoration: none;
  font-weight: bold;
  transition: all 0.4s ease 0s;
  color: #708090;
}

#cookie_policy a:hover {
  color: #dd0000;
}

#cookie_policy ul.cookie_checkbox_list {
  list-style: none outside;
  padding-inline-start: 0 !important;
}

#cookie_policy ul.cookie_checkbox_list>li {
  display: inline-block;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: large;
  font-weight: normal;
  cursor: pointer;
}

#cookie_policy ul.cookie_checkbox_list>li:not(:last-child) {
  margin-right: 1.5rem;
}

#cookie_policy ul.cookie_checkbox_list>li .cookie_option_checkbox {
  vertical-align: middle;
  width: 30px;
  height: 30px;
  transition: all 0.15s ease-out 0s;
  color: #ffffff;
  background-color: #dcdcdc;
  border: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

#cookie_policy ul.cookie_checkbox_list>li.disabled {
  opacity: 0.7;
  cursor: default;
}

#cookie_policy ul.cookie_checkbox_list>li.disabled label {
  cursor: default;
}

#cookie_policy ul.cookie_checkbox_list>li input {
  margin-right: 1rem;
  margin-bottom: 0.5rem;
}

#cookie_policy ul.cookie_checkbox_list>li .cookie_option_checkbox:hover {
  background-color: #708090;
}

#cookie_policy ul.cookie_checkbox_list>li .cookie_option_checkbox:checked {
  background-color: #000066;
}

#cookie_policy ul.cookie_checkbox_list>li .cookie_option_checkbox::before {
  position: absolute;
  content: "";
  font-size: 20px;
  line-height: 30px;
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
}

@media all and (max-width: 740px),
print {
  #cookie_policy ul.cookie_checkbox_list>li {
    display: block;
    font-size: normal;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  #cookie_policy ul.cookie_checkbox_list>li .cookie_option_checkbox {
    width: 20px;
    height: 20px;
  }

  #cookie_policy ul.cookie_checkbox_list>li .cookie_option_checkbox::before {
    font-size: 10px;
    line-height: 20px;
    display: inline-block;
    width: 20px;
    height: 20px;
  }
}

#cookie_policy ul.cookie_checkbox_list>li .cookie_option_checkbox:checked::before {
  content: "✔";
}

#cookie_policy ul.cookie_checkbox_list>li .cookie_option_checkbox:checked::after {
  position: relative;
  display: block;
  content: "";
  -webkit-animation: click-wave 0.65s;
  animation: click-wave 0.65s;
  background-color: #000055;
}

#cookie_policy ul.cookie_checkbox_list>li .cookie_option_checkbox.radio {
  border-radius: 50%;
}

#cookie_policy ul.cookie_checkbox_list>li .cookie_option_checkbox.radio::after {
  border-radius: 50%;
}

#cookie_policy ul.cookie_checkbox_list>li .cookie_option_checkbox:checked:disabled {
  background-color: #b8b7b7;
}

#cookie_policy ul.cookie_checkbox_list>li .cookie_option_checkbox::before:disabled {}

#cookie_policy #detailsWrapper {
  height: 0;
  overflow-y: hidden;
  transition: height 0.3s cubic-bezier(0.75, 0.25, 0.25, 0.75) 0s;
}

#cookie_policy #details {}

#cookie_policy #details p {
  padding-bottom: 1em;
}

#cookie_policy #hide_details {
  margin: 40px 0 20px 0;
}

@media all and (max-width: 740px),
print {
  #cookie_policy #hide_details {
    margin: 15px 0 10px 0;
  }
}

#cookie_policy .notification_box_wrapper {
  height: 0;
  overflow-y: hidden;
  transition: height 0.3s cubic-bezier(0.75, 0.25, 0.25, 0.75) 0s;
}

#cookie_policy .notification_box {
  display: inline-block;
  border: 1px solid #5c5d5e;
  padding: 0.5rem 1rem;
}

#cookie_policy #hide_details_link:after {
  font-family: Conv_CONDENSEicon;
  content: "û";
  margin: 0 3px;
}

#cookie_policy #hide_details_link.open:after {
  font-family: Conv_CONDENSEicon;
  content: "ü";
  margin: 0 3px;
}

@media all and (min-width: 740px),
print {
  #cookie_policy .buttons {
    text-align: right;
  }

  #cookie_policy .submit_button {
    display: inline-block;
    padding: 1em 1em;
    margin-right: 20px;
    border: solid 2px;
    border-radius: 3px;
    transition: 0.4s;
  }

  #cookie_policy .submit_button:hover {
    background: #000;
    color: white;
  }

  #cookie_policy #all_selected.submit_button {
    border-color: #ff0000;
    background: #ff0000;
    color: white;
  }

  #cookie_policy #all_selected.submit_button:hover {
    background: #ffffff;
    color: #ff0000;
  }
}

@media all and (max-width: 740px),
print {
  #cookie_policy .buttons {
    text-align: center;
  }

  #cookie_policy .buttons a {}

  #cookie_policy .submit_button {
    display: block;
    padding: 1em 1em;
    margin-bottom: 10px;
    text-decoration: none;
    text-align: center;
    border: solid 2px;
    border-radius: 3px;
    transition: 0.4s;
  }

  #cookie_policy .submit_button:active {
    background: #5c5d5e;
    color: white;
  }

  #cookie_policy #all_selected.submit_button {
    border-color: #ff0000;
    background: #ff0000;
    color: white;
  }

  #cookie_policy #all_selected.submit_button:active {
    background: #ffffff;
    color: #ff0000;
  }
}

a#only_selected {
  color: #000;
}

#change_cookie_setting {
  display: inline-block;
  color: white;
  text-align: center;
  text-decoration: unset;
  margin-bottom: 10px;
  padding: 1em 1em;
  background-color: #000000;
  border: #000000 solid 2px;
  border-radius: 3px;
  transition: 0.4s;
}

#change_cookie_setting:after {
  content: "";
  width: 8px;
  height: 8px;
  margin: 0 5px;
  display: inline-block;
  border-top: 1px solid #ff0000;
  border-right: 1px solid #ff0000;
  transform: rotate(45deg);
}

#change_cookie_setting:hover {
  background: #ffffff;
  color: #000000;
}

/*** Privacy Policy ***/
.privacy-policy {
  line-height: 200%;
}

.privacy-policy b {
  font-weight: bold;
}

.privacy-policy .paragraph {
  margin-bottom: 1em;
  padding: 0;
  line-height: 200%;
  word-break: keep-all;
}

.privacy-policy .paragraph b:first-child {
  font-size: 2.25rem;
}

.privacy-policy .line-box {
  display: inline-block;
  border: #464646 solid 1px;
  padding-left: 0.5em;
  padding-right: 0.5em;
}

.privacy-policy .privacy-policy-head {
  margin-top: 1em;
  margin-bottom: 1em;
  font-weight: bold;
}

.privacy-policy .privacy-policy-h2 {
  font-size: 2.75rem;
}

.privacy-policy .privacy-policy-h3 {
  font-size: 2.25rem;
}

.privacy-policy .privacy-policy-gdpr-list {
  list-style: disc outside;
  margin-left: 1.5em;
  margin-bottom: 1em !important;
  /**
   * IE doesn't support these properties, which is, however, useful for the coming www without IE,
   * and fix here then.
   * @see https://developer.mozilla.org/en-US/docs/Web/CSS/padding-inline-start
   */
  padding-inline-start: 0;
  margin-block-start: 0;
  margin-block-end: 0;
}

.privacy-policy .privacy-policy-cookie-type-table {
  border-collapse: collapse;
  margin-bottom: 2em;
}

.privacy-policy .privacy-policy-cookie-type-table>thead {
  background-color: #e6e6e6;
}

.privacy-policy .privacy-policy-cookie-type-table>thead th {
  text-align: center;
  font-weight: bold;
}

.privacy-policy .privacy-policy-cookie-type-table th,
.privacy-policy .privacy-policy-cookie-type-table td {
  border: #464646 solid 1px;
  padding: 1rem 1.25rem;
  word-break: break-all;
}

.privacy-policy .privacy-policy-cookie-type-table th {}

.privacy-policy .privacy-policy-cookie-type-table td {}

.privacy-policy .privacy-policy-cookie-type-table tbody tr> :nth-child(2n-1) {
  width: 22.5%;
}

.privacy-policy .submit_button:hover {
  cursor: pointer;
}

.privacy-policy .ga-toggle-opt-out-button {
  position: relative;
  display: inline-block;
  color: #464646;
}

*::-ms-backdrop,
.privacy-policy .ga-toggle-opt-out-button {
  border-top: none;
}

.privacy-policy .ga-toggle-opt-out-button:hover {
  cursor: pointer;
}

.privacy-policy .ga-toggle-opt-out-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  border-top: #464646 solid 1px;
  transition: all 0.25s cubic-bezier(1, 0.1, 0.2, 1.5) 0s;
  transform: translateY(calc(1em * 1.5));
  cursor: pointer;
}

*::-ms-backdrop,
.privacy-policy .ga-toggle-opt-out-button::before {
  border-top: none;
}

.privacy-policy .ga-toggle-opt-out-button:hover::before {
  border-top-style: double;
  border-top-width: 3px;
  transform: translateY(calc(1em * 1.5 - 0.5em - 1px));
}

*::-ms-backdrop,
.privacy-policy .ga-toggle-opt-out-button:hover::before {
  border-top: none;
}

.privacy-policy .ga-toggle-opt-out-button.ga-disabled {
  text-decoration: none;
  cursor: unset;
}

.privacy-policy .ga-toggle-opt-out-button.ga-disabled::before {
  border-top: #f00 double 3px;
  transform: translateY(calc(1em * 1.5 - 0.5em - 1px));
  cursor: text;
}
