@charset "UTF-8";
.cookie-bar,
.cookie-dialog {
  position: fixed;
  right: 15px;
  bottom: 0;
  width: calc(100% - 30px);
  max-width: 400px;
  height: auto;
  max-height: 100vh;
  overflow-y: auto;
  font-size: 0.875rem;
  padding: 30px 20px;
  z-index: 100;
  background: #f1f1f1;
}
.cookie-bar form .row.cookie-row-buttons > .form-group,
.cookie-dialog form .row.cookie-row-buttons > .form-group {
  margin-bottom: 0px;
}

.cookie-bar .cta-settings-open {
  color: #000000;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.cookie-bar .cta-settings-open-icon {
  margin-right: 10px;
  font-size: 1.7em;
  line-height: 1;
  margin-top: -2px;
}
.cookie-bar .cookie-decline {
  display: flex;
  align-items: center;
}
.cookie-bar .cookie-decline .cta-settings-close {
  cursor: pointer;
}

.cookie-dialog .cookie-type-title {
  margin-bottom: 5px !important;
}
.cookie-dialog .cookie-type-title.cookie-type-disabled .switch {
  opacity: 0.5;
}
.cookie-dialog .cookie-type-description {
  margin-bottom: 20px !important;
}
.cookie-dialog .cookie-row-buttons {
  justify-content: space-between;
}
.cookie-dialog .cookie-row-buttons .form-group {
  flex: 0 0 auto !important;
  width: auto;
  max-width: 100%;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-dialog .cookie-row-buttons .cta-settings-close {
  cursor: pointer;
  text-decoration: underline;
  color: #000000;
}

.custom-toggle {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
}
.custom-toggle .custom-control-label {
  flex: 1;
  width: 100%;
  font-weight: bold;
  font-size: 1rem;
  line-height: 24px;
  margin-right: 15px;
}
.custom-toggle .switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex: 0 0 auto;
  margin-left: auto;
  order: 1;
}
.custom-toggle .switch.disabled {
  opacity: 0.5;
}
.custom-toggle .switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  border: 2px solid #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 34px;
  border-color: red;
}
.custom-toggle .switch .slider:before {
  position: absolute;
  content: "";
  height: 17px;
  width: 17px;
  left: 2px;
  bottom: 2px;
  background-color: red;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50%;
  font-family: "icomoon";
  font-size: 12px;
  text-align: center;
  color: #fff;
  line-height: 17px;
}
.custom-toggle .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.custom-toggle .switch input:checked + .slider, .custom-toggle .switch.disabled .slider {
  border-color: green;
}
.custom-toggle .switch input:checked + .slider:before, .custom-toggle .switch.disabled .slider:before {
  -webkit-transform: translateX(19px);
  -ms-transform: translateX(19px);
  transform: translateX(19px);
  background: green;
  content: "✓";
}