.cookieConsentToggle {
  width: 40px;
  height: 40px;
  will-change: transform;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  bottom: 1.25rem;
  right: 1.25rem;
  transition: 200ms;
  z-index: 9950; }

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

.cookieConsentToggle * {
  fill: currentColor; }

.cookieConsentWrapper {
  font-family: 'Poppins', sans-serif;
  z-index: 99990;
  transition: 200ms; }

.cookieConsentOperations {
  transition: 300ms;
  will-change: transform;
  z-index: 99999; }

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

.cookieConsentOperations__List {
  border-radius: 1em;
  box-shadow: 0px 3px 40px #77777729;
  transition: 200ms transform;
  will-change: transform;
  transform: scale(0.95); }

.cookieConsentOperations__Item {
  display: block;
}

.cookieConsentOperations__Item.disabled {
  /*color: #999;*/
  opacity: 0.3;}

.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;
  opacity: 0.5;
}

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

.cookieConsent__Button {
  width: 18rem;
  white-space: nowrap;
  border: white 3px solid;
  border-radius: 1rem;
  transition: 200ms; }

.cookieConsent__Button:hover {
  opacity: 0.6; }

@media only screen and (max-width: 600px) {
  .cookieConsent {
    display: block; }
  .cookieConsent__Right {
    margin-top: 2rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    margin-bottom: 1rem;
  }
  .cookieConsent__Button {
    flex-direction: column;
    width: 100%;
    margin-left: 0;
    margin-bottom: 1rem; }
  .cookieConsent__Button--Close {
    margin: 40px 0 0; } }

