:root {
  --shproxy-white: #fff;
  --shproxy-green: #00a443;
  --shproxy-green-1: #007f33;
  --shproxy-green-2: #008C39;
  --shproxy-sand: #fff5ec;
  --shproxy-sand-1: #fffeff;
  --shproxy-sand-3: #D8CFC7;
  --shproxy-sand-6: #615D5A;
  --shproxy-sand-7: #3A3735;
  --shproxy-forest: #00402a;
  --shproxy-forest-1: #DCEBE1;
  --shproxy-sunset: #FF9C1A;
  --shproxy-sunset-2: #E3850D;
}

#shproxy {
  width: 100%;
  max-width: 980px;
  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(--shproxy-sand-3);
  background: var(--shproxy-white);
  padding: 32px 20px;
}

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

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

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

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

#shproxy ul li:before {
  content: none !important;
  display: none !important;
}

#shproxy img {
  display: block;
  width: 100%;
  height: auto;
}

#shproxy button {
  appearance: none;
  border-radius: 0;
}

/* Tabs */

#shproxy .shproxy_tabs {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  width: 100%;
  margin-bottom: 32px;
  border: 1px solid var(--shproxy-sand-3);
  border-radius: 15px;
  background: var(--shproxy-white);
  /* overflow: hidden; */
}

#shproxy .shproxy_tab {
  flex: 1;
  min-height: 50px;
  cursor: pointer;
  border: 0;
  border-radius: 15px;
  background: transparent;
  color: var(--shproxy-sand-6) !important;
  padding: 10px 12px;
  font-size: 15px;
  line-height: 1.35;
  text-align: center;
  font-family: "IberPangeaText" !important;
  font-weight: normal;
  font-style: normal;
}

#shproxy .shproxy_tab.is-active {
  background: var(--shproxy-forest);
  color: var(--shproxy-sand-1) !important;
  font-family: "IberPangeaText Bold" !important;
  font-weight: normal;
  font-style: normal;
}

#shproxy .shproxy_tab:focus {
  outline: 2px solid var(--shproxy-green-1);
}

#shproxy .shproxy_panel {
  display: none;
  width: 100%;
}

#shproxy .shproxy_panel.is-active {
  display: block;
}

/* Title */

#shproxy .shproxy_title {
  color: var(--shproxy-green-1) !important;
  font-size: 28px;
  line-height: 1.13;
  font-style: normal;
  font-weight: normal;
  font-family: "IberPangea" !important;
  text-align: left;
  margin-bottom: 24px;
  max-width: 430px;
}

#shproxy .shproxy_title span {
  display: block;
}

#shproxy .shproxy_title em {
  color: var(--shproxy-forest) !important;
  font-style: normal;
  font-weight: normal;
  font-family: "IberPangea Medium" !important;
}

#shproxy .shproxy_title strong {
  font-style: normal;
  font-weight: normal;
  font-family: "IberPangea Medium" !important;
}

/* Accordions */

#shproxy .shproxy_accordions {
  display: flex;
  flex-direction: column;
  width: 100%;
}

#shproxy .shproxy_accordion {
  width: 100%;
  margin-bottom: 0;
}

#shproxy .shproxy_accordion + .shproxy_accordion {
  margin-top: 16px;
}

#shproxy .shproxy_accordion-trigger {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  width: 100%;
  min-height: 76px;
  cursor: pointer;
  border-radius: 15px;
  background: transparent;
  border: 1px solid var(--shproxy-green-1);
  background-color: var(--shproxy-white);
  color: var(--shproxy-forest) !important;
  padding: 16px 39px 16px 16px;
  font-family: "IberPangea Medium" !important;
  font-size: 18px;
  line-height: 1.22;
  font-weight: normal;
  font-style: normal;
  text-align: left;
  position: relative;
  text-wrap: balance;
}

#shproxy .shproxy_accordion-number,
#shproxy .shproxy_accordion-label {
  display: block;
}

#shproxy .shproxy_accordion-number {
  flex: 0 0 auto;
  white-space: nowrap;
}

#shproxy .shproxy_accordion-label {
  flex: 1 1 auto;
  min-width: 0;
}

#shproxy .shproxy_accordion.is-open .shproxy_accordion-trigger {
  background: var(--shproxy-green-1);
  color: var(--shproxy-sand-1) !important;
  margin-bottom: 16px;
}

#shproxy .shproxy_accordion-trigger:after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
}

#shproxy .shproxy_accordion.is-open .shproxy_accordion-trigger:after {
  transform: translateY(-35%) rotate(225deg);
}

#shproxy .shproxy_accordion-trigger:focus {
  outline: 2px solid var(--shproxy-forest);
}

#shproxy .shproxy_accordion-content {
  display: block;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    max-height 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.24s ease,
    transform 0.32s ease;
}

#shproxy .shproxy_accordion.is-open .shproxy_accordion-content {
  max-height: var(--shproxy-accordion-height, 2000px);
  opacity: 1;
  transform: translateY(0);
}

#shproxy .shproxy_accordion-content > p {
  border-radius: 15px;
  background: var(--shproxy-sand);
  padding: 16px;
  color: var(--shproxy-forest) !important;
  font-family: "IberPangeaText" !important;
  font-size: 16px;
  line-height: 1.25;
  font-style: normal;
  font-weight: normal;
  text-align: left;
}

/* Swiper base */

#shproxy .shproxy_swiper {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  background: var(--shproxy-sand);
  border-radius: 14px;
  padding: 16px 0;
}

#shproxy .shproxy_swiper + .shproxy_swiper {
  margin-top: 24px;
}

#shproxy .swiper-autoheight,
#shproxy .swiper-autoheight .swiper-slide {
  height: auto;
}

#shproxy .swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

#shproxy .swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

#shproxy .swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

#shproxy .swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
  opacity: 0 !important;
  position: absolute;
}

#shproxy .swiper-fade .swiper-slide-active {
  pointer-events: auto;
  opacity: 1 !important;
  position: relative;
}

#shproxy .swiper-wrapper {
  position: relative;
  width: auto;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

#shproxy .swiper-android .swiper-slide,
#shproxy .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

#shproxy .swiper-pointer-events {
  touch-action: pan-y;
}

#shproxy .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition-property: transform;
}

#shproxy .swiper-slide-invisible-blank {
  visibility: hidden;
}

#shproxy .swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#shproxy .swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

#shproxy .swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

#shproxy .swiper-button-lock {
  display: none;
}

/* Slide content */

#shproxy .shproxy_slide-card {
  width: 100%;
  padding: 0 16px;
}

#shproxy .shproxy_slide-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

#shproxy .shproxy_slide-icon {
  width: 42px;
  max-width: 42px;
  flex: 0 0 42px;
  margin-right: 16px;
}

#shproxy .shproxy_slide-title,
#shproxy .swiper-slide h4 {
  color: var(--shproxy-forest) !important;
  font-family: "IberPangeaText Bold" !important;
  font-size: 18px;
  line-height: 1.22;
  font-style: normal;
  font-weight: normal;
  text-align: left;
  text-wrap: balance;
  margin-bottom: 0;
  width: 100%;
}

#shproxy .shproxy_slide-body {

}

#shproxy .shproxy_slide-image {
  width: 100%;
  max-width: 160px;
  margin: 0 auto 16px;
}

#shproxy .shproxy_slide-image img {
  width: 100%;
  height: auto;
}

#shproxy .shproxy_slide-text {
  color: var(--shproxy-forest) !important;
}

#shproxy .shproxy_slide-text p {
  color: var(--shproxy-forest) !important;
  font-family: "IberPangeaText" !important;
  font-size: 16px;
  line-height: 1.25;
  font-style: normal;
  font-weight: normal;
  text-align: left;
  margin-bottom: 0 !important;
}

#shproxy .shproxy_slide-text p a {
  color: var(--shproxy-forest) !important;
  font-family: "IberPangeaText" !important;
  font-size: 16px;
  line-height: 1.25;
  font-style: normal;
  font-weight: normal;
  text-align: left;
  text-decoration: underline;
}

#shproxy .shproxy_slide-text p em {
  font-style: italic;
}

#shproxy .shproxy_slide-text-line {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

#shproxy .shproxy_slide-text-marker {
  flex: 0 0 auto;
  white-space: nowrap;
  min-width: 12px;
  align-items: center;
}

#shproxy .shproxy_slide-text-copy {
  flex: 1 1 auto;
  min-width: 0;
}


#shproxy .shproxy_slide-text strong,
#shproxy .swiper-slide strong {
  color: var(--shproxy-forest) !important;
  font-family: "IberPangeaText Bold" !important;
  font-style: normal;
  font-weight: normal;
}

#shproxy .shproxy_slide-button {
  color: var(--shproxy-white) !important;
  font-family: "IberPangea Bold" !important;
  font-size: 16px;
  line-height: 1.25;
  font-style: normal;
  font-weight: normal;
  border-radius: 50px;
  text-align: center;
  background: var(--shproxy-green-1);
  padding: 16px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  text-decoration: none;
}

/* Swiper controls */

#shproxy .swiper-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-top: 16px;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

#shproxy .swiper-progressbar {
  grid-column: 1 / -1;
  width: 100%;
  height: 11px;
  border: 1px solid var(--shproxy-green-1);
  border-radius: 999px;
  overflow: hidden;
  background: transparent;
}

#shproxy .swiper-progressbar-fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--shproxy-green-1);
  transition: width 0.3s ease;
}

#shproxy .swiper-button-prev,
#shproxy .swiper-button-next {
  width: 32px;
  height: 32px;
  display: block !important;
  border: none;
  border-radius: 50%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent !important;
  cursor: pointer;
  text-align: left;
  text-indent: -9999px;
  overflow: hidden;
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  margin: 0 !important;
  z-index: 2;
}

#shproxy .swiper-button-prev {
  order: 3;
  background-image: url("/wcorp/gc/prod/es_ES/estaticos/JGA26-accionistas-representantes/images/ico-prev.svg");
  margin-left: auto !important;
}

#shproxy .swiper-button-next {
  order: 4;
  background-image: url("/wcorp/gc/prod/es_ES/estaticos/JGA26-accionistas-representantes/images/ico-next.svg");
  margin-left: 16px;
}

#shproxy .swiper-button-prev:after,
#shproxy .swiper-button-next:after {
  content: none !important;
}

#shproxy .swiper-button-prev.swiper-button-disabled,
#shproxy .swiper-button-next.swiper-button-disabled {
  border-color: var(--shproxy-sand-6) !important;
  opacity: 0.65;
  cursor: default;
  pointer-events: none;
}

#shproxy .swiper-button-prev:focus,
#shproxy .swiper-button-next:focus {
  background-color: var(--shproxy-forest-1) !important;
  outline: none !important;
}

#shproxy .swiper-pagination {
  order: 1;
  border-radius: 999px;
  border: 1px solid var(--shproxy-forest);
  padding: 5px 16px;
  color: var(--shproxy-forest) !important;
  font-size: 16px;
  line-height: 1;
  font-style: italic;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: none;
  min-width: 68px;
  min-height: 32px;
  width: fit-content;
  margin: 0;
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  background-color: transparent !important;
  gap: 4px;
  white-space: nowrap;
}

#shproxy .swiper-pagination .swiper-pagination-current {
  font-style: italic;
  color: var(--shproxy-green-1) !important;
}

#shproxy .swiper-pagination .swiper-pagination-total {
  font-style: italic;
}

/* Responsive */

@media (min-width: 700px) {
  #shproxy {
    padding: 40px 32px;
  }

  #shproxy .shproxy_tabs {
    flex-direction: row;
  }

  #shproxy .shproxy_tab {
    flex-direction: 1;
    min-height: 55px;
    font-size: 17px;
  }

  #shproxy .shproxy_title {
    font-size: 32px;
    line-height: 1.125;
    margin-bottom: 32px;
  }

  #shproxy .shproxy_accordion-trigger {
    gap: 8px;
    min-height: 74px;
    padding: 18px 58px 18px 38px;
    font-size: 18px;
    align-items: center;
    border-radius: 60px;
  }

  #shproxy .shproxy_accordion-trigger:after {
    right: 30px;
  }

  #shproxy .shproxy_accordion-content > p {
    padding: 24px;
  }

  #shproxy .shproxy_swiper {
    padding: 24px 0;
  }

  #shproxy .shproxy_slide-card {
    padding: 0 24px;
  }

  #shproxy .shproxy_slide-header {
    margin-bottom: 32px;
  }

  #shproxy .shproxy_slide-body {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }

  #shproxy .shproxy_slide-text {
    max-width: 274px;
  }

  #shproxy .shproxy_slide-image {
    max-width: 198px;
    margin: 0;
  }

  #shproxy .swiper-controls {
    margin-top: 32px;
    padding: 0 24px;
  }

  #shproxy .swiper-button-prev:hover {
    background-image: url("/wcorp/gc/prod/es_ES/estaticos/JGA26-accionistas-representantes/images/ico-prev-hover.svg");
  }
  
  #shproxy .swiper-button-next:hover {
    background-image: url("/wcorp/gc/prod/es_ES/estaticos/JGA26-accionistas-representantes/images/ico-next-hover.svg");
  }

}

#shproxy [hidden] {
  display: none !important;
}
