:root {
  --cloudc-white: #fff;
  --cloudc-border: #d8cfc7;
  --cloudc-green: #00a443;
  --cloudc-green-1: #007f33;
  --cloudc-forest: #00402a;
  --cloudc-black: #3a3735;
  --cloudc-sand-1: #fffeff;
  --cloudc-sand: #fff5ec;
  --cloudc-sunset: #ff9c1a;
}

#cloudc {
  width: 100%;
  max-width: 980px;
  padding: 24px 16px;
  margin: 20px auto;
  text-align: left;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  border: 1px solid var(--cloudc-border);
  background: var(--cloudc-white);
}

#cloudc * {
  font-family: "IberPangeaText" !important;
  font-style: normal;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#cloudc strong {
  font-family: "IberPangeaText Bold" !important;
  font-weight: normal;
}

#cloudc h2,
#cloudc h3,
#cloudc h4 {
  margin-top: 0 !important;
}

#cloudc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#cloudc ul li:before {
  content: none !important;
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

#cloudc img,
#cloudc svg {
  display: block;
  width: 100%;
}

#cloudc .cloudc_header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 16px;
}

#cloudc .cloudc_icon {
  max-width: 96px;
  margin-left: 9px;
}

#cloudc .cloudc_title {
  color: var(--cloudc-green-1) !important;
  font-size: 30px;
  line-height: 1.13;
  font-style: normal;
  font-weight: normal;
  font-family: "IberPangea" !important;
  text-align: left;
  text-wrap: balance;
  margin-bottom: 24px;
}

#cloudc .cloudc_title strong {
  font-weight: normal;
  font-family: "IberPangea Bold" !important;
}

#cloudc .cloudc_accordion {
  border-radius: 15px;
  border: 1px solid var(--cloudc-green);
  background-color: var(--cloudc-white);
  margin-bottom: 16px;
  overflow: hidden;
}

#cloudc .cloudc_accordion:last-child {
  margin-bottom: 0;
}

#cloudc .cloudc_accordion_header {
  cursor: pointer;
  display: block;
  background: var(--cloudc-green-1);
  padding: 8px;
  position: relative;
}

#cloudc .cloudc_accordion_header:after {
  content: "";
  display: block;
  width: 32px;
  min-width: 32px;
  height: 32px;
  background-image: url("/wcorp/gc/prod/es_ES/estaticos/huella-carbono/images/ico-mas.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 1;
}

#cloudc .cloudc_accordion:not(.active) .cloudc_accordion_header:hover:after {
  background-image: url("/wcorp/gc/prod/es_ES/estaticos/huella-carbono/images/ico-mas-hover.svg");
}

#cloudc .cloudc_accordion.active .cloudc_accordion_header:after {
  background-image: url("/wcorp/gc/prod/es_ES/estaticos/huella-carbono/images/ico-cerrar.svg");
}

#cloudc .cloudc_accordion_number {
  display: flex;
  width: 32px;
  height: 32px;
  padding: 10px 13px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100%;
  background: var(--cloudc-forest);
  color: var(--cloudc-sand-1) !important;
  text-align: center;
  font-size: 18px;
  line-height: 1;
  font-style: normal;
  font-weight: normal;
  font-family: "IberPangea" !important;
  margin-bottom: 8px;
}

#cloudc .cloudc_accordion_title {
  color: var(--cloudc-sand-1) !important;
  font-size: 18px;
  line-height: 1.33;
  font-style: normal;
  font-weight: normal;
  font-family: "IberPangeaText Bold" !important;
  text-align: left;
  text-wrap: balance;
  word-break: break-word;
}

#cloudc .cloudc_accordion_content {
  padding: 16px;
}

#cloudc .cloudc_accordion_content_inner {
  max-height: 0;
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
  overflow: hidden;
}

#cloudc .cloudc_accordion.active .cloudc_accordion_content_inner {
  max-height: 1000px;
  transition: max-height 0.5s ease-in-out;
}

#cloudc .cloudc_accordion_text {
  color: var(--cloudc-forest) !important;
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.25;
  text-align: left;
  margin-bottom: 16px;
}

#cloudc .cloudc_accordion_text a {
  color: var(--cloudc-green-1) !important;
  font-family: "IberPangeaText Bold" !important;
  font-weight: normal;
  text-decoration: none;
}

#cloudc .cloudc_accordion_image {
  width: 100%;
  max-width: 471px;
  margin: 0 auto;
}

@media (min-width: 700px) {
  #cloudc {
    padding: 31px;
  }

  #cloudc .cloudc_title {
    font-size: 32px;
    line-height: 1.125;
  }

  #cloudc .cloudc_accordion_header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
  }

  #cloudc .cloudc_accordion_number {
    margin-bottom: 0;
  }
}
