/*@font-face {
  font-family: 'IberPangea';
  src: url('/o/iberdrola-corporativo-theme/fonts/iberpangea/IberPangea-Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'IberPangea';
  src: url('/o/iberdrola-corporativo-theme/fonts/iberpangea/IberPangea-BoldItalic.woff2') format('woff2');
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: 'IberPangea';
  src: url('/o/iberdrola-corporativo-theme/fonts/iberpangea/IberPangea-Italic.woff2') format('woff2');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'IberPangea';
  src: url('/o/iberdrola-corporativo-theme/fonts/iberpangea/IberPangea-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'IberPangea';
  src: url('/o/iberdrola-corporativo-theme/fonts/iberpangea/IberPangea-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'IberPangea';
  src: url('/o/iberdrola-corporativo-theme/fonts/iberpangea/IberPangea-LightItalic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'IberPangea';
  src: url('/o/iberdrola-corporativo-theme/fonts/iberpangea/IberPangea-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'IberPangea';
  src: url('/o/iberdrola-corporativo-theme/fonts/iberpangea/IberPangea-SmBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'IberPangea';
  src: url('/o/iberdrola-corporativo-theme/fonts/iberpangea/IberPangea-SmBoldItalic.woff2') format('woff2');
  font-weight: 600;
  font-style: italic;
}*/

:root {
  --hydropumped-white: #FFFEFF;
  --hydropumped-green: #00A443;
  --hydropumped-green-light: #DCEBE1;
  --hydropumped-dark: #00402A;
  --hydropumped-black: #3A3735;
  --hydropumped-brown: #615D5A;
  --hydropumped-border: #D8CFC7;
  --hydropumped-orange: #FF9C1A;
  --hydropumped-orange-light: #FFF5EC;
}

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

#hydropumped * {
  font-family: 'IberPangea' !important;
  font-style: normal;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#hydropumped h2 {
  margin-top: 0 !important;
}

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

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

#hydropumped img {
  display: block;
  width: 100%;
}

#hydropumped .hydropumped_title {
  color: var(--hydropumped-green) !important;
  font-size: 30px;
  line-height: 1.13;
  font-style: normal;
  font-weight: 400;
  text-align: left;
  text-wrap: balance;
  width: 100%;
  margin-right: auto;
  margin-bottom: 24px;
}

#hydropumped .hydropumped_title strong {
  font-weight: 600;
}

#hydropumped .hydropumped_media {
    position: relative;
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
    padding: 70px 0 110px;
}

#hydropumped .hydropumped_list {
    list-style: none;
    counter-reset: item;
}

#hydropumped .hydropumped_list li {
    counter-increment: item;
    color: var(--hydropumped-brown);
    font-size: 16px;
    line-height: 1.25;
    font-style: normal;
    font-weight: 400;
    text-align: left;
    display: flex;
    align-items: center;
    position: absolute;
}

#hydropumped .hydropumped_list li span {
    opacity: 0;
    transition: opacity 0.75s;
}

#hydropumped .hydropumped_list li:before {
    content: counter(item);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: var(--hydropumped-green);
    color: var(--hydropumped-white);
    font-size: 16px;
    line-height: 1;
    font-style: normal;
    font-weight: 600;
    padding: 4px;
    min-width: 24px;
    height: 24px;
    margin-right: 8px;
    opacity: 0;
    transition: opacity 0.75s;
}

#hydropumped .hydropumped_list li:after {
    content: '';
    display: block;
    background-repeat: no-repeat;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0;
    transition: height 0.75s;
}

#hydropumped.viewport .hydropumped_list li span {
    opacity: 1;
}

#hydropumped.viewport .hydropumped_list li:before {
    opacity: 1;
}

#hydropumped .hydropumped_list li:nth-of-type(1) span {
    transition-delay: 0.3s;
}

#hydropumped .hydropumped_list li:nth-of-type(2) span {
    transition-delay: 0.6s;
}

#hydropumped .hydropumped_list li:nth-of-type(3) span {
    transition-delay: 0.9s;
}

#hydropumped .hydropumped_list li:nth-of-type(4) span {
    transition-delay: 1.2s;
}

#hydropumped .hydropumped_list li:nth-of-type(5) span {
    transition-delay: 1.5s;
}

#hydropumped .hydropumped_list li:nth-of-type(6) span {
    transition-delay: 1.8s;
}

#hydropumped .hydropumped_list li:nth-of-type(7) span {
    transition-delay: 2.1s;
}

#hydropumped .hydropumped_list li:nth-of-type(8) span {
    transition-delay: 2.4s;
}

#hydropumped .hydropumped_list li:nth-of-type(9) span {
    transition-delay: 2.7s;
}

#hydropumped .hydropumped_list li:nth-of-type(10) span {
    transition-delay: 3.1s;
}

#hydropumped .hydropumped_list li:nth-of-type(11) span {
    transition-delay: 3.4s;
}

#hydropumped .hydropumped_list li:nth-of-type(1):before {
    transition-delay: 0.1s;
}

#hydropumped .hydropumped_list li:nth-of-type(2):before {
    transition-delay: 0.4s;
}

#hydropumped .hydropumped_list li:nth-of-type(3):before {
    transition-delay: 0.7s;
}

#hydropumped .hydropumped_list li:nth-of-type(4):before {
    transition-delay: 1.0s;
}

#hydropumped .hydropumped_list li:nth-of-type(5):before {
    transition-delay: 1.3s;
}

#hydropumped .hydropumped_list li:nth-of-type(6):before {
    transition-delay: 1.6s;
}

#hydropumped .hydropumped_list li:nth-of-type(7):before {
    transition-delay: 1.9s;
}

#hydropumped .hydropumped_list li:nth-of-type(8):before {
    transition-delay: 2.2s;
}

#hydropumped .hydropumped_list li:nth-of-type(9):before {
    transition-delay: 2.5s;
}

#hydropumped .hydropumped_list li:nth-of-type(10):before {
    transition-delay: 2.8s;
}

#hydropumped .hydropumped_list li:nth-of-type(11):before {
    transition-delay: 3.1s;
}

#hydropumped .hydropumped_list li:nth-of-type(1):after {
    transition-delay: 0.2s;
}

#hydropumped .hydropumped_list li:nth-of-type(2):after {
    transition-delay: 0.5s;
}

#hydropumped .hydropumped_list li:nth-of-type(3):after {
    transition-delay: 0.8s;
}

#hydropumped .hydropumped_list li:nth-of-type(4):after {
    transition-delay: 1.1s;
}

#hydropumped .hydropumped_list li:nth-of-type(5):after {
    transition-delay: 1.4s;
}

#hydropumped .hydropumped_list li:nth-of-type(6):after {
    transition-delay: 1.7s;
}

#hydropumped .hydropumped_list li:nth-of-type(7):after {
    transition-delay: 2.0s;
}

#hydropumped .hydropumped_list li:nth-of-type(8):after {
    transition-delay: 2.3s;
}

#hydropumped .hydropumped_list li:nth-of-type(9):after {
    transition-delay: 2.6s;
}

#hydropumped .hydropumped_list li:nth-of-type(10):after {
    transition-delay: 2.9s;
}

#hydropumped .hydropumped_list li:nth-of-type(11):after {
    transition-delay: 3.2s;
}

@media (max-width: 699px) {

    #hydropumped .hydropumped_list li:nth-of-type(1):before,
    #hydropumped .hydropumped_list li:nth-of-type(3):before,
    #hydropumped .hydropumped_list li:nth-of-type(6):before,
    #hydropumped .hydropumped_list li:nth-of-type(7):before {
        order: 1;
        margin-right: 0;
        margin-left: 8px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(1) {
        top: 414px;   
        right: 76px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(1):after {
        background-image: url('/wcorp/gc/prod/es_ES/estaticos/hidroelectrica-bombeo/images/line-1-m.svg');
        background-position: calc(100% - 15px) top;
        background-size: 61px auto;
        left: 4px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(2) {
        top: 365px;
        left: 0;
    }

    #hydropumped .hydropumped_list li:nth-of-type(2):after {
        background-image: url('/wcorp/gc/prod/es_ES/estaticos/hidroelectrica-bombeo/images/line-2-m.svg');
        background-position: calc(0% + 15px) top;
        background-size: 53px auto;
        left: -4px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(3) {
        top: 45px;
        right: 5px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(3):after {
        background-image: url('/wcorp/gc/prod/es_ES/estaticos/hidroelectrica-bombeo/images/line-3-m.svg');
        background-position: calc(100% - 15px) top;
        background-size: 44px auto;
        left: 3px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(4) {
        top: 6px;
        left: 0;
    }

    #hydropumped .hydropumped_list li:nth-of-type(4):after {
        background-image: url('/wcorp/gc/prod/es_ES/estaticos/hidroelectrica-bombeo/images/line-4-m.svg');
        background-position: calc(0% + 15px) top;
        background-size: 72px auto;
        left: -4px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(5) {
        top: 267px;
        left: 24px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(5):after {
        background-image: url('/wcorp/gc/prod/es_ES/estaticos/hidroelectrica-bombeo/images/line-5-m.svg');
        background-position: calc(0% + 15px) bottom;
        background-size: 100px auto;
        top: auto;
        bottom: calc(100% - 5px);
        width: 115px;
        left: -4px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(6) {
        top: 303px;
        right: 117px;
        max-width: 96px;
        text-align: right;
    }

    #hydropumped.hydropumped-en .hydropumped_list li:nth-of-type(6) {
        width: 100%;
        max-width: 160px;
    }

    #hydropumped.hydropumped-pt .hydropumped_list li:nth-of-type(6) {
        width: 100%;
        max-width: 110px;
        right: 100px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(6):after {
        background-image: url('/wcorp/gc/prod/es_ES/estaticos/hidroelectrica-bombeo/images/line-6-m.svg');
        background-position: calc(100% - 15px) bottom;
        background-size: 35px auto;
        top: auto;
        bottom: calc(100% - 10px);
        left: 56px;
    }

    #hydropumped.hydropumped-pt .hydropumped_list li:nth-of-type(6):after {
        left: 38px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(7) {
        bottom: 90px;
        right: -3px;
        max-width: 97px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(7):after {
        background-image: url('/wcorp/gc/prod/es_ES/estaticos/hidroelectrica-bombeo/images/line-7-m.svg');
        background-position: calc(100% - 15px) bottom;
        background-size: 49px auto;
        top: auto;
        bottom: calc(100% - 9px);
    }

    #hydropumped .hydropumped_list li:nth-of-type(8) {
        bottom: 50px;
        left: 140px;
    }

    #hydropumped.hydropumped-en .hydropumped_list li:nth-of-type(8) {
        width: 100%;
        max-width: 140px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(8):after {
        background-image: url('/wcorp/gc/prod/es_ES/estaticos/hidroelectrica-bombeo/images/line-8-m.svg');
        background-position: center bottom;
        background-size: 6px auto;
        top: auto;
        bottom: calc(100% - 1px);
        width: 32px;
        left: -4px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(9) {
        bottom: 8px;
        left: 120px;
    }

    #hydropumped.hydropumped-pt .hydropumped_list li:nth-of-type(9) {
        left: 125px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(9):after {
        background-image: url('/wcorp/gc/prod/es_ES/estaticos/hidroelectrica-bombeo/images/line-9-m.svg');
        background-position: center bottom;
        background-size: 6px auto;
        top: auto;
        bottom: calc(100% - 7px);
        width: 32px;
        left: -4px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(10) {
        bottom: 59px;
        left: 18px;
    }

    #hydropumped.hydropumped-pt .hydropumped_list li:nth-of-type(10) {
        bottom: 67px;
        left: 7px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(10):after {
        background-image: url('/wcorp/gc/prod/es_ES/estaticos/hidroelectrica-bombeo/images/line-10-m.svg');
        background-position: calc(0% + 15px) bottom;
        background-size: 95px auto;
        top: auto;
        bottom: calc(100% - 5px);
        left: -4px;
        width: 110px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(11) {
        bottom: 8px;
        left: -10px;
        max-width: 130px;
    }

    #hydropumped.hydropumped-en .hydropumped_list li:nth-of-type(11) {
        width: 100%;
        max-width: 140px;
        left: -20px;
        bottom: 14px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(11):after {
        background-image: url('/wcorp/gc/prod/es_ES/estaticos/hidroelectrica-bombeo/images/line-11-m.svg');
        background-position: calc(0% + 15px) bottom;
        background-size: 83px auto;
        top: auto;
        bottom: calc(100% - 10px);
        left: -4px;
    }

    #hydropumped.viewport .hydropumped_list li:nth-of-type(1):after {
        height: 108px;
    }

    #hydropumped.viewport .hydropumped_list li:nth-of-type(2):after {
        height: 94px;
    }

    #hydropumped.viewport .hydropumped_list li:nth-of-type(3):after {
        height: 102px;
    }

    #hydropumped.viewport .hydropumped_list li:nth-of-type(4):after {
        height: 114px;
    }

    #hydropumped.viewport .hydropumped_list li:nth-of-type(5):after {
        height: 87px;
    }

    #hydropumped.viewport .hydropumped_list li:nth-of-type(6):after {
        height: 120px;
    }

    #hydropumped.viewport .hydropumped_list li:nth-of-type(7):after {
        height: 270px;
    }

    #hydropumped.viewport .hydropumped_list li:nth-of-type(8):after {
        height: 130px;
    }

    #hydropumped.viewport .hydropumped_list li:nth-of-type(9):after {
        height: 173px;
    }

    #hydropumped.viewport .hydropumped_list li:nth-of-type(10):after {
        height: 90px;
    }

    #hydropumped.viewport .hydropumped_list li:nth-of-type(11):after {
        height: 134px;
    }

}

@media (min-width: 700px) {

    #hydropumped {
        padding: 32px;
    }

    #hydropumped .hydropumped_title {
        font-size: 32px;
        line-height: 1.125;
    }

    #hydropumped .hydropumped_media {
        max-width: 500px;
        padding: 70px 0 90px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(3):before {
        order: 1;
        margin-right: 0;
        margin-left: 8px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(1) {
        top: 71px;   
        left: 4px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(1):after {
        background-image: url('/wcorp/gc/prod/es_ES/estaticos/hidroelectrica-bombeo/images/line-1.svg');
        background-position: calc(0% + 15px) top;
        background-size: 142px auto;
        left: -4px;
    }

    #hydropumped.viewport .hydropumped_list li:nth-of-type(1):after {
        height: 199px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(2) {
        top: 110px;   
        left: 110px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(2):after {
        background-image: url('/wcorp/gc/prod/es_ES/estaticos/hidroelectrica-bombeo/images/line-2.svg');
        background-position: calc(0% + 15px) top;
        background-size: 6px auto;
        left: -7px;
    }

    #hydropumped.viewport .hydropumped_list li:nth-of-type(2):after {
        height: 87px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(3) {
        top: 33px;   
        right: 228px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(3):after {
        background-image: url('/wcorp/gc/prod/es_ES/estaticos/hidroelectrica-bombeo/images/line-3.svg');
        background-position: calc(100% - 14px) top;
        background-size: 6px auto;
        left: 5px;
    }

    #hydropumped.viewport .hydropumped_list li:nth-of-type(3):after {
        height: 122px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(4) {
        top: 0px;   
        left: 288px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(4):after {
        background-image: url('/wcorp/gc/prod/es_ES/estaticos/hidroelectrica-bombeo/images/line-4.svg');
        background-position: calc(0% + 15px) top;
        background-size: 74px auto;
        left: -4px;
    }

    #hydropumped.viewport .hydropumped_list li:nth-of-type(4):after {
        height: 144px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(5) {
        top: 51px;   
        left: 406px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(5):after {
        background-image: url('/wcorp/gc/prod/es_ES/estaticos/hidroelectrica-bombeo/images/line-5.svg');
        background-position: calc(0% + 15px) top;
        background-size: 63px auto;
        left: -66px;
        width: 82px;
    }

    #hydropumped.viewport .hydropumped_list li:nth-of-type(5):after {
        height: 142px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(6) {
        top: 310px;   
        left: 376px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(6):after {
        background-image: url('/wcorp/gc/prod/es_ES/estaticos/hidroelectrica-bombeo/images/line-6.svg');
        background-position: calc(0% + 15px) bottom;
        background-size: 105px auto;
        left: -107px;
        top: auto;
        bottom: calc(100% - 10px);
    }

    #hydropumped.viewport .hydropumped_list li:nth-of-type(6):after {
        height: 98px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(7) {
        top: 365px;   
        left: 310px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(7):after {
        background-image: url('/wcorp/gc/prod/es_ES/estaticos/hidroelectrica-bombeo/images/line-7.svg');
        background-position: calc(0% + 15px) bottom;
        background-size: 50px auto;
        left: -52px;
        top: auto;
        bottom: calc(100% - 5px);
    }

    #hydropumped.viewport .hydropumped_list li:nth-of-type(7):after {
        height: 124px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(8) {
        top: 399px;   
        left: 241px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(8):after {
        background-image: url('/wcorp/gc/prod/es_ES/estaticos/hidroelectrica-bombeo/images/line-8.svg');
        background-position: calc(0% + 15px) bottom;
        background-size: 42px auto;
        left: -44px;
        top: auto;
        bottom: calc(100% - 5px);
    }

    #hydropumped.viewport .hydropumped_list li:nth-of-type(8):after {
        height: 109px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(9) {
        bottom: 42px;
        left: 180px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(9):after {
        background-image: url('/wcorp/gc/prod/es_ES/estaticos/hidroelectrica-bombeo/images/line-9.svg');
        background-position: calc(0% + 15px) bottom;
        background-size: 6px auto;
        top: auto;
        bottom: calc(100% - 5px);
        left: -5px;
    }

    #hydropumped.viewport .hydropumped_list li:nth-of-type(9):after {
        height: 165px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(10) {
        bottom: 44px;
        left: 60px;
    }

    #hydropumped.hydropumped-pt .hydropumped_list li:nth-of-type(10) {
        left: 49px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(10):after {
        background-image: url('/wcorp/gc/prod/es_ES/estaticos/hidroelectrica-bombeo/images/line-10.svg');
        background-position: calc(0% + 15px) bottom;
        background-size: 114px auto;
        top: auto;
        bottom: calc(100% - 5px);
        width: 130px;
        left: -3px;
    }

    #hydropumped.viewport .hydropumped_list li:nth-of-type(10):after {
        height: 117px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(11) {
        bottom: 0px;
        left: 10px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(11):after {
        background-image: url('/wcorp/gc/prod/es_ES/estaticos/hidroelectrica-bombeo/images/line-11.svg');
        background-position: calc(0% + 15px) bottom;
        background-size: 55px auto;
        top: auto;
        bottom: calc(100% - 5px);
        left: -3px;
    }

    #hydropumped.viewport .hydropumped_list li:nth-of-type(11):after {
        height: 157px;
    }

}

@media (min-width: 1024px) {

    #hydropumped .hydropumped_media {
        max-width: 680px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(5):before,
    #hydropumped .hydropumped_list li:nth-of-type(4):before {
        order: 1;
        margin-right: 0;
        margin-left: 8px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(1) {
        top: 113px;
        left: 54px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(1):after {
        background-image: url('/wcorp/gc/prod/es_ES/estaticos/hidroelectrica-bombeo/images/line-1-d.svg');
        background-size: 143px auto;
        width: 165px;
    }

    #hydropumped.viewport .hydropumped_list li:nth-of-type(1):after {
        height: 248px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(2) {
        top: 162px;
        left: 139px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(3) {
        top: 70px;
        right: 305px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(4) {
        top: 23px;
        left: auto;
        right: 58px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(4):after {
        background-image: url('/wcorp/gc/prod/es_ES/estaticos/hidroelectrica-bombeo/images/line-4-d.svg');
        background-position: calc(100% - 15px) top;
        background-size: 63px auto;
        left: 4px;
    }

    #hydropumped.viewport .hydropumped_list li:nth-of-type(4):after {
        height: 144px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(5) {
        top: 10px;
        left: auto;
        right: 284px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(5):after {
        background-image: url('/wcorp/gc/prod/es_ES/estaticos/hidroelectrica-bombeo/images/line-5-d.svg');
        background-position: calc(100% - 15px) top;
        background-size: 78px auto;
        left: calc(100% - 14px);
        width: 93px;
    }

    #hydropumped.viewport .hydropumped_list li:nth-of-type(5):after {
        height: 227px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(6) {
        top: 440px;
        left: 465px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(6):after {
        background-image: url('/wcorp/gc/prod/es_ES/estaticos/hidroelectrica-bombeo/images/line-6-d.svg');
        background-size: 105px auto;
        bottom: calc(100% - 4px);
    }

    #hydropumped.viewport .hydropumped_list li:nth-of-type(6):after {
        height: 168px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(7) {
        top: 475px;
        left: 390px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(7):after {
        background-image: url('/wcorp/gc/prod/es_ES/estaticos/hidroelectrica-bombeo/images/line-7-d.svg');
        background-size: 40px auto;
        left: -41px;
    }

    #hydropumped.viewport .hydropumped_list li:nth-of-type(7):after {
        height: 185px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(8) {
        top: 527px;
        left: 321px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(8):after {
        background-image: url('/wcorp/gc/prod/es_ES/estaticos/hidroelectrica-bombeo/images/line-8-d.svg');
        background-size: 42px auto;
    }

    #hydropumped.viewport .hydropumped_list li:nth-of-type(8):after {
        height: 158px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(9) {
        bottom: 39px;
        left: 242px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(9):after {
        background-image: url('/wcorp/gc/prod/es_ES/estaticos/hidroelectrica-bombeo/images/line-9-d.svg');
    }

    #hydropumped.viewport .hydropumped_list li:nth-of-type(9):after {
        height: 205px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(10) {
        bottom: 39px;
        left: 126px;
    }

    #hydropumped.hydropumped-pt .hydropumped_list li:nth-of-type(10) {
        left: 111px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(10):after {
        background-image: url('/wcorp/gc/prod/es_ES/estaticos/hidroelectrica-bombeo/images/line-10-d.svg');
        background-size: 114px auto;
    }

    #hydropumped.viewport .hydropumped_list li:nth-of-type(10):after {
        height: 159px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(11) {
        left: 45px;
    }

    #hydropumped .hydropumped_list li:nth-of-type(11):after {
        background-image: url('/wcorp/gc/prod/es_ES/estaticos/hidroelectrica-bombeo/images/line-11-d.svg');
        background-size: 55px auto;
    }

    #hydropumped.viewport .hydropumped_list li:nth-of-type(11):after {
        height: 201px;
    }

}