.fondo {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  max-width: 35vw;
  max-height: 35vh;
  padding: 40px;
  opacity: 1 !important;
  background-color: #231f20;
  transition: 300ms;
  transform-origin: right bottom;
}

.cookieConsentToggle:hover {
  color: #fff;
  background: #231f20; }

.cookieConsentToggle * {
  fill: currentColor; 
}

.cookieConsentToggle {
  fill: currentColor; 
  height: 40px;
  width: 40px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 9px;
  border: none;
  background-color: white;
  border-radius: 20px;
  transition: 200ms;
  z-index: 9999;
}

.cookieConsentWrapper {
  z-index: 99990;
  position: fixed;
  height: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);  
  color: #fff;
  transition: 200ms; 
}

.cookieConsent {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
}

.cookieConsent__Content {
  text-align: justify;
}

.cookieConsent__Title {
  margin: 0;
  font-size: 2rem;
  font-weight: 400; 
  display: none;
}

.cookieConsent__Description {
  line-height: 1.5em;
  font-size: 1rem;
  color: #A3A3A3
}

.cookieConsent__Description a {
  color: #fff;
  text-decoration: underline; 
}

.cookieConsent__Description a:hover {
  text-decoration: none; 
}

.cookieConsent__Right {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-top: 20px; 
}

.cookieConsentOperations {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  transition: 300ms;
  will-change: transform;
  z-index: 99999; }

.cookieConsentOperations .cookieConsentOperations__List {
  transform: scale(1); }

.cookieConsentOperations__List {
  background: #fff;
  color: #231f20;
  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); }

.cookieConsentOperations__Item {
  display: block;
  padding-left: 60px;
  margin-bottom: 20px; }

.cookieConsentOperations__Item.disabled {
  color: #999; }

.cookieConsentOperations__Item.disabled label::after {
  opacity: 0.6;
  background: #2ED8C3;
}

.cookieConsentOperations__Item input {
  display: none; }

.cookieConsentOperations__Item label {
  align-items: center;
  font-size: 22px;
  font-weight: bold;
  display: block;
  position: relative;
  margin: 0 0 10px;
}

.cookieConsentOperations__Item label::before {
  content: "";
  display: block;
  left: -60px;
  background: #eee;
  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: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -58px;
  transition: 200ms; }

.cookieConsentOperations__Item:not(.disabled) input:checked + label::before {
    background: #2ED8C3;
}

.cookieConsentOperations__Item input:checked + label::after {
  transform: translate(20px, -50%);
}

.cookieConsent__Button {
  padding: 15px;
  display: block;
  background: #2ED8C3;
  white-space: nowrap;
  border: 0;
  font-size: 0.8rem;
  font-weight: bolder;
  margin: 10px;
  cursor: pointer;
  transition: 200ms; 
}

.cookieConsent__Button--Close {
  background: #231f20;
  color: #fff;
  margin: 40px 0 0 60px;
  padding: 15px 60px; }

.cookieConsent__Button:hover {
  transition: 200ms;
  opacity: 0.6; }

@media only screen and (max-width: 600px) {
  .fondo{
    max-width: 98vw;
    right: 1vw;
    bottom: 1vh;
    max-height: 100vh;
    overflow: scroll;
  }
}
