.cookieConsentToggle {
  width: 40px;
  height: 40px;
  position: fixed;
  will-change: transform;
  padding: 9px;
  border: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background: white;
  border-radius: 50%;
  bottom: 20px;
  right: 20px;
  transition: 200ms;
  opacity: 1;
  z-index: 99980;
}

.cookieConsentToggle:hover {
  color: white;
  background: black;
}

.cookieConsentToggle * {
  fill: currentColor;
}

.cookieConsentWrapper {
  z-index: 99999;
  position: fixed;
  right: 40px;
  bottom: 40px;
  background: inherit;
  color: inherit;
  font-family: inherit;
  transition: 200ms;
  border-radius: 6px;
  box-sizing: border-box;
  max-width: 450px;
}

@media screen and (max-width: 490px) {
    .cookieConsentWrapper {
        right: 0;
        left: 0;
        bottom: 0;
    }
}

.cookieConsent {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  border: 1px solid;
  border-color: #f4f4f4;
  padding: 20px 26px;
  box-shadow: 0 -1px 10px 0 #acabab4d;
  border-radius: 6px;
  flex-direction: column;
}

.cookieConsent__Content {
  margin-right: 40px;
}

.cookieConsent__Title {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 12px 0;
}

.cookieConsent__Description {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
}

.cookieConsent__Description a {
  color: white;
  text-decoration: underline;
}

.cookieConsent__Description a:hover {
  text-decoration: none;
}

.cookieConsent__Right {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  margin-top: 16px;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  color: #212121;
}

.cookieConsentOperations {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  transition: 300ms;
  will-change: transform;
  z-index: 99999;
}

.cookieConsentOperations .cookieConsentOperations__List {
  transform: scale(1);
}

.cookieConsentOperations__List {
  box-shadow: 0 32px 68px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  border-radius: 6px;
  z-index: 999999999;
  background: white;
  color: black;
  max-width: 500px;
  padding: 40px;
  margin: auto;
  overflow-y: auto;
  box-sizing: border-box;
  max-height: 100vh;
  transition: 200ms transform;
  will-change: transform;
  transform: scale(0.95);
  display: grid;
  justify-items: center;
}

.cookieConsentOperations__Item {
  display: block;
  padding-left: 60px;
  margin-bottom: 20px;
}

.cookieConsentOperations__Item.disabled {
  color: #999;
}

.cookieConsentOperations__Item.disabled label::after {
  opacity: 0.3;
}

.cookieConsentOperations__Item input {
  display: none;
}

.cookieConsentOperations__Item label {
  align-items: center;
  font-size: 22px;
  font-weight: bold;
  display: block;
  position: relative;
}

.cookieConsentOperations__Item label::before {
  content: "";
  display: block;
  left: -60px;
  background: #DEDEDE;
  height: 20px;
  border-radius: 20px;
  width: 40px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.cookieConsentOperations__Item label::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: black;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -58px;
  transition: 200ms;
}

.cookieConsentOperations__Item input:checked + label::after {
  transform: translate(20px, -50%);
}

.cookieConsentOperations__Buttons .cookieConsent__Button {
    padding: 8px 30px 8px 30px;
    margin-top: 10px;
    margin-left: 10px;
}

.cookieConsent__Button {
  flex: auto;
  max-width: 100%;
  font-size: 14px;
  font-family: inherit;
  line-height: 24px;
  padding: 8px;
  font-weight: 500;
  margin: 0 8px 0 0;
  border-radius: 2px;
  cursor: pointer;
  text-align: center;
  text-transform: none;
  min-height: 0;
  color: #FFF;
  background-color: #006341;
  border-color: #006341;
  text-shadow: none;
  box-shadow: none;
}

.cookieConsent__Button--Close {
  background-color: #006341;
  color: #FFF;
  padding: 8px;
}

.cookieConsent__Button:hover {
  opacity: 0.6;
}

@media only screen and (max-width: 900px) {
  .cookieConsent {
    display: block;
  }
  .cookieConsent__Right {
    margin-top: 20px;
  }
  .cookieConsent__Button {
    margin: 0 10px 10px 0;
  }
  .cookieConsent__Button--Close {
    margin: 40px 0 0;
  }
}

/*# sourceMappingURL=cookies-consent.css.map*/