/*@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 {
  --tools-white: #FFFEFF;
  --tools-green: #00A443;
  --tools-dark: #00402A;
  --tools-black: #3A3735;
  --tools-brown: #615D5A;
  --tools-border: #D8CFC7;
  --tools-orange: #FF9C1A;
  --tools-orange-light: #FFF5EC;
}

#tools {
  width: 100%;
  max-width: 980px;
  padding: 0px;
  margin: 20px auto;
  text-align: left;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

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

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

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

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

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

#tools .tools_accordion {
    border-radius: 15px;
    border: 1px solid var(--tools-green);
    background: var(--tools-green);
    overflow: hidden;
    margin-bottom: 8px;
}

#tools .tools_accordion:nth-of-type(1),
#tools .tools_accordion:nth-of-type(2) {
    background-color: #007F33;
    border-color: #007F33;
}

#tools .tools_accordion:nth-of-type(3) {
    background-color: #008C39;
    border-color: #008C39;
}

#tools .tools_accordion:nth-of-type(5) {
    background-color: #26BF64;
    border-color: #26BF64;
}

#tools .tools_accordion:nth-of-type(6) {
    background-color: #5BD38C;
    border-color: #5BD38C;
}

#tools .tools_accordion.active {
    background: var(--tools-white) !important;
}

#tools .tools_accordion_header {
    display: flex;
    align-items: center;
    padding: 16px 50px 16px 16px;
    position: relative;
    cursor: pointer;
}

#tools .tools_accordion_header:before {
    content: '';
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 100%;
    background-color: var(--tools-dark);
    background-image: url('images/ico-mas.svg');
    background-size: 14px auto;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}

#tools .tools_accordion_header:hover:before {
    background-color: var(--tools-green);
}

#tools .tools_accordion.active .tools_accordion_header:before {
    border-radius: 0;
    background-color: transparent;
    background-image: url('images/ico-cerrar.svg');
    background-size: contain;
}

#tools .tools_accordion_header img {
    max-width: 30px;
    margin-left: -5px;
    margin-right: 8px;
}

#tools .tools_accordion.active .tools_accordion_header img {
    display: none;
}

#tools .tools_accordion_title {
    color: var(--tools-white) !important;
    font-size: 21px;
    line-height: 1.14;
    font-style: normal;
    font-weight: 400;
    text-align: left;
    text-wrap: balance;
}



#tools .tools_accordion.active .tools_accordion_title {
    font-size: 18px;
    line-height: 1.22;
}

#tools .tools_accordion.active .tools_accordion_title {
    color: var(--tools-green) !important;
}

#tools .different_color {
    color: var(--tools-dark) !important;
}

#tools .tools_accordion_content {
    padding: 0 16px;
    display: none;
}

#tools .tools_accordion.active .tools_accordion_content {
    display: block;
}

#tools .tools_accordion_text {
    color: var(--tools-brown);
    font-size: 16px;
    line-height: 1.25;
    font-style: normal;
    font-weight: 400;
    text-align: left;
    margin-bottom: 16px;
}

#tools .tools_accordion_list {
    counter-reset: numbers;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

#tools .tools_accordion_list_item {
    counter-increment: numbers;
    border-radius: 30px;
    border: 1px solid var(--tools-border);
    background: var(--tools-white);
    padding: 8px 24px 8px 40px;
    margin-bottom: 16px;
    position: relative;
    min-height: 40px;
    color: var(--tools-brown) !important;
    font-size: 16px;
    line-height: 1.25;
    font-style: normal;
    font-weight: 400;
    text-align: left;
}

#tools .tools_accordion_list_item:after {
    content: counter(numbers);
	display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 100%;
    background-color: var(--tools-green);
    color: var(--tools-white);
    font-size: 16px;
    line-height: 1;
    font-style: normal;
    font-weight: 600;
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 8px;
}

#tools .tools_accordion_content img {
    width: 100%;
    margin: 0 auto;
}

#tools .tools_accordion:nth-of-type(1) .tools_accordion_content img {
    max-width: 197px;
}

#tools .tools_accordion:nth-of-type(2) .tools_accordion_content img {
    max-width: 163px;
}

#tools .tools_accordion:nth-of-type(3) .tools_accordion_content img {
    max-width: 140px;
}

#tools .tools_accordion:nth-of-type(4) .tools_accordion_content img {
    max-width: 167px;
}

#tools .tools_accordion:nth-of-type(5) .tools_accordion_content img {
    max-width: 133px;
}

#tools .tools_accordion:nth-of-type(6) .tools_accordion_content img {
    max-width: 158px;
}

@media (min-width: 700px) {

    #tools .tools_accordion_title {
        font-size: 24px;
        line-height: 1.16;
    }

    #tools .tools_accordion.active .tools_accordion_title {
        font-size: 18px;
        line-height: 1.22;
        margin-left: 8px;
    }

    #tools .tools_accordion_content {
        padding: 0 24px 56px;
        position: relative;
        min-height: 233px;
    }

    #tools .tools_accordion:nth-of-type(6) .tools_accordion_content {
        padding-bottom: 79px;
    }

    #tools .tools_accordion_list {
        margin-left: -16px;
        flex-direction: column;
    }

    #tools .tools_accordion:nth-of-type(1) .tools_accordion_list {
        flex-direction: row;
        padding-right: 45%;
    }

    #tools .tools_accordion_list_item {
        margin-left: 16px;
        margin-right: auto;
    }

    #tools .tools_accordion_content img {
        margin: 0;
        position: absolute;
        bottom: 0;
        right: 24px;
    }
   

}
