/*
Theme Name: EnergyUnited Refresh
Theme URI: https://www.energyunited.com
Author: EnergyUnited
Author URI: https://www.energyunited.com
Description: This theme was created for EnergyUnited
Version: 1.0.4423
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: energyunited_refresh
*/

:root {
    --eu-forest-green: #06412d;
    --eu-green-dark: #043F22;
    --eu-orange: #F2AA66; 
    --eu-gray: #EAEAEA;
    --eu-nearblack: #171717;
    --eu-teal: #82D0B7;
    --eu-yellow: #F4DE69;
    --eu-red: #DA694B;
    --eu-blue: #275365;
    --eu-dark-blue: #22363F;
    --eu-gray-d5: #D5D5D5; 
    --eu-bg-d6d6d6: #d6d6d6;
    --eu-dark-gray-eu: #292929;
}

html {
    font-family: 'Trenda', sans-serif;
}

body {
    color: var(--eu-dark-gray-eu, #292929);
}

a:where(:not(.wp-element-button)) {
    text-decoration: inherit !important;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    transition: transform 0.35s cubic-bezier(.86,0,.07,1);
    z-index: 9;
    transform: translateY(-75%);
}

.header #menu-secondary-menu li a {
    font-size: 14px;
}

.has-alert-bar .header {
    top: -1px;
}

.header.active {
    transform: translateY(0);
}

.header-nav {
    height: 80px;
}

@media (min-width: 1024px) {
    .header {
        position: sticky;
        top: 0;
        transition: transform 0.35s cubic-bezier(.86,0,.07,1);
        z-index: 9;
    }

    .header.active .header-logo {
        visibility: visible;
    }

    .header:not(.active) .header-logo {
        visibility: hidden;
    }

    .header.active .hovered .sub-menu{
        visibility: visible !important;
    }

    .header:not(.active) .hovered .sub-menu{
        visibility: hidden !important;
    }

    body:not(.home) .header.active .header-second-nav{
        visibility: visible !important;
    }

    body:not(.home) .header:not(.active) .header-second-nav{
        visibility: hidden !important;
    }
}

@media (min-width: 1280px) {
    .header-nav {
        height: auto;
    }
}

.header-menu > .menu-item > a {
    border-top: 10px solid transparent;
    padding: 22px 0px 32px 0px;
    display: block;
    transition: 0.35s border-top-color ease-in;

}

.header-menu .sub-menu {
    transition: all 0.3s;
    pointer-events: none;
    visibility: hidden;
    position: absolute;
    left: -1.5rem;
    width: -moz-min-content;
    width: min-content;
    padding: 0.5rem 1rem;
    min-width: 250px;
    opacity: 0;
    background-color: var(--eu-gray);
    z-index: 10;
}

.header-menu .sub-menu a {
    color:  var(--eu-nearblack);
    padding: 15px 5px 15px 25px;
    display: block;
}


.header-menu .menu-item-has-children {
    position: relative;
}

.header-menu .menu-item-has-children.hovered > .sub-menu {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
}

.header-menu > .menu-item.hovered > a {
    border-top-color: var(--eu-orange);
}

.header-logo, footer-logo {
    height: auto;
    width: 300px;
}

@media (min-width: 768px) {
    .header-logo {
        width: 350px;
    }
}

@media (min-width: 1400px) {
    .header-logo {
        height: 60px;
        width: 380px;
    }
}

@media (min-width: 1600px) {
    .header-logo, .footer-logo {
        height: 70px;
        width: auto;
    }
}

.search-action__icon {
    width: 40px;
    height: 40px;
    background-image: url(images/icons/search_icon.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 60%;
    cursor: pointer;
}

.header-menu__full {
    z-index: 999999;
    transform: translateX(100%);
    transition: 0.35s transform ease-in-out;
}
.header-menu__full.show {
    transform: translateX(0%);
}

.header-menu__full .secondary-menu > li{
    padding: 20px 0px;
    position: relative;
}

.header-menu__full .secondary-menu > li:before{
    content: "";
    width: 8px;
    height: 100%;
    background-color: var(--eu-teal);
    display: flex;
    position: absolute;
    top: 0;
    left: -30px;
    border-radius: 30px;
}

.header-menu__full .secondary-menu > li:nth-child(2):before{
    background-color: var(--eu-yellow);
}

.header-menu__full .secondary-menu > li:nth-child(3):before{
    background-color: var(--eu-orange);
}

.header-menu__full .secondary-menu > li:nth-child(4):before{
    background-color: var(--eu-red);
}

.header-menu__full .social-profiles {
    justify-content: center;
    gap: 1.25rem;
    flex: 1;
    align-items: flex-end;
    margin-bottom: 30px
}

.header-menu__full .menu-item.menu-item-has-children:hover .sub-menu {
     display: block;
}

.header-menu__full .main-menu .sub-menu {
    display: none;
    padding-left: 0px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 15px;
}

.header-menu .menu-item-has-children > a::after {
    content: ">" !important;
    font-weight: 900;
    font-size: 15px;
    transform: rotate(90deg) translateY(8px);
    display: inline-block;
    line-height: 1;
    opacity: 0;
    transition: 0.35s opacity ease-in-out, 0.35s transform ease-in-out;
}

.header-menu .menu-item-has-children.active > a:after,
.header-menu .menu-item-has-children.hovered > a:after {
    opacity: 1;
    transform: rotate(90deg) translateY(-8px);
}

.header-menu .menu-item-has-children.active > a:after,
.header-menu .menu-item-has-children.hovered > a:after {
    transform: rotate(-90deg) translateY(8px);
}

.header-menu .menu-item-has-children.hovered > a {
    border-top-color: var(--eu-orange);
}

.header-menu .sub-menu {
    background-color: #CBCBCB; 
    display: flex;
    width: 100%;
    left: 0px;
    justify-content: center;
    transform: translateY(-100%);
    padding: 0px 1rem;
    z-index: -1;
    transition:all 0.3s;
}


.header-menu .menu-item-has-children.active > .sub-menu,
.header-menu .menu-item-has-children.hovered > .sub-menu {
    transform: translateY(0%);
}

.header-menu .sub-menu a {
  color: var(--eu-green-dark);
  font-weight: 900;
  font-size: 15px;
  padding: 10px 15px;
  line-height: 1;
}

.header-menu .menu-item-has-children {
    position: static;
}

.header-menu .menu-item-has-children.active > .sub-menu,
.header-menu .menu-item-has-children.hovered > .sub-menu {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
}

.header-second-nav.active {
    z-index: -2;
}

@media (min-width: 768px) {
    .header-menu__full .main-menu .sub-menu {
        /* padding-left: 1rem; */
        display: none;
    }

    .header-menu__full .social-profiles {
        gap: 3rem;
    }
}

@media (min-width: 991px) {
     .header-menu__full .secondary-menu > li:before{
        content: none
    }

    .header-menu__full .secondary-menu > li{
        padding: 0px;
    }
}

.header-second-nav {
    position: absolute;
    visibility: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 40%, rgba(255, 255, 255, 0) 100%);
    padding-bottom: 0px;
    z-index: -2;
    transition:all 0.3s;
}

.header-second-nav.active {
    visibility: visible;
}

.header-second-nav .menu-item {
    flex: 1;
}
.header-second-nav .menu-item {
    border: 8px solid;
    border-radius: 30px;
    text-align: center;
    background-color: #fff;
}

.header-second-nav > ul > .menu-item:first-child {
    border-color: var(--eu-teal);
}

.header-second-nav > ul > .menu-item:nth-child(2) {
    border-color: var(--eu-yellow);
}

.header-second-nav > ul > .menu-item:nth-child(3) {
    border-color: var(--eu-orange);
}

.header-second-nav > ul > .menu-item:nth-child(4) {
    border-color: var(--eu-red);
}

.search-form__input {
    border-radius: 60px;
}

.search-form__input::-webkit-search-cancel-button {
    display: none;
}

.search-form__submit {
    background-image: url(images/icons/search_icon.svg);
    background-color: transparent !important;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 38px;
    cursor: pointer;
    position: absolute;
    height: 100%;
    display: flex;
    top: 0;
    right: 30px;
    width: 60px !important;
}

.header-alert-bar {
    background: linear-gradient(14deg, rgba(244, 222, 105, 1) 0%, rgba(242, 170, 102, 1) 50%, rgba(218, 105, 75, 1) 100%);
}

.header-alert-bar__inner {
    justify-content: end;
}

.header-alert-bar__content {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 15px;
}

.header-menu {
    gap: 0px;
}

@media (min-width: 768px) {
    .header-menu .menu-item:not(:last-child) {
         padding-right: 1rem;
    }

    .header-menu .menu-item:not(:first-child) {
         padding-left: 1rem;
    }

    body:not(.home) .header-second-nav {
        visibility: visible;
    }
}

@media (min-width: 1024px) {
    .header-menu .menu-item:not(:last-child) {
         padding-right: 1.25rem;
    }

    .header-menu .menu-item:not(:first-child) {
         padding-left: 1.25rem;
    }
    
}

@media (min-width: 1536px) {
    .header-menu .menu-item:not(:last-child) {
         padding-right: 1.5rem;
    }

    .header-menu .menu-item:not(:first-child) {
         padding-left: 1.5rem;
    }
    
}

@media (min-width: 1536px) {
    .header-menu .menu-item:not(:last-child) {
         padding-right: 2rem;
    }

    .header-menu .menu-item:not(:first-child) {
         padding-left: 2rem;
    }
}

/* End of Header */

/* Footer */

.footer__badges > .footer__badges-item:last-child:after {
    content: "";
    background-color: var(--eu-gray);
    height: 80px;
    width: 100%;
    display: block;
    position: absolute;
    bottom: 0;
    z-index: 0;
    left: 0;
}

.footer__badges > .footer__badges-item:last-child img {
    position: relative;
    z-index: 1;
}

@media (min-width:640px) {
    .footer__badges > .footer__badges-item:last-child:after{
        content: none;
    }

    .eu-people-item__img {
        min-width: 200px;
    }
}

footer #menu-footer-menu-new {
    margin-bottom: 5px;
}

footer #menu-footer-menu-new a {
    border-bottom: 5px solid transparent;
    transition: border-color 0.35s linear; 
}

footer #menu-footer-menu-new a:hover {
    border-color: var(--eu-orange); 
}

/* End of Footer */

/* Utilities */
.bg-d6d6d6 {
    background-color: var(--eu-bg-d6d6d6, #d6d6d6);
}
.eu-scroll-orange::-webkit-scrollbar {
    width: 25px;
    background-color: transparent;
}

.eu-scroll-orange::-webkit-scrollbar-thumb {
    background: var(--eu-orange, #F2AA66);
}

.stroke-white {
    -webkit-text-stroke: 3px solid #fff;
}

.eu-arrow-svg.stroke-teal-eu path {
    stroke: var(--eu-teal);
}

.eu-arrow-svg.stroke-yellow-eu path {
    stroke: var(--eu-yellow);
}

.eu-arrow-svg.stroke-orange-eu path {
    stroke: var(--eu-orange);
}

.eu-arrow-svg.stroke-red-eu path {
    stroke: var(--eu-red);
}

.radius-30 {
    border-radius: 30px;
}

.radius-50 {
    border-radius: 50px;
}

.radius-80 {
    border-radius: 80px;
}

.text-stroke-green-dark {
    -webkit-text-stroke: 3.5px var(--eu-green-dark);
}

.text-stroke-white {
    -webkit-text-stroke: 3.5px #fff;
    stroke: #fff;
    text-stroke: #fff;
}

@media (max-width:767px){
    .text-stroke-white {
        -webkit-text-stroke: 1px #fff;
    }
}

.text-stroke-width--base {
    -webkit-text-stroke-width: 3.5px;
}

.text-stroke-width--lg {
    -webkit-text-stroke-width: 4px;
}

.text-stroke-color--orange {
    -webkit-text-stroke-color: var(--eu-orange);
}

.text-stroke-color--teal {
    -webkit-text-stroke-color: var(--eu-teal);
}

.text-stroke-color--teal {
    -webkit-text-stroke-color: var(--eu-teal);
}

.text-stroke-color--yellow {
    -webkit-text-stroke-color: var(--eu-yellow);
}

.text-stroke-color--red {
    -webkit-text-stroke-color: var(--eu-red);
}

.aspect-auto {
    aspect-ratio: auto;
}	
.aspect-square {
    aspect-ratio: 1 / 1;
}
.aspect-portrait {
    aspect-ratio: 3 / 4;
}	
.aspect-video {
    aspect-ratio: 16 / 9;
}
.aspect-ultra {
    aspect-ratio: 21 / 9;
}

.eu-flex-normal {
    flex: 1.5;
}

.eu-flex-wide {
    flex: 4;
}

.vertical-lr {
    writing-mode: vertical-lr;
}

.flex-child-content > div {
    flex: 1;
}

.btn--arrow-right-hover .eu-btn-icon {
    right: -35px;
    opacity: 0;
    transition: opacity 0.35s ease-in-out, right 0.35s ease-in-out;
}

.btn--arrow-right-hover {
    margin-right: 60px;
}

.btn--arrow-right-hover:hover .eu-btn-icon {
    right: -60px;
    opacity: 1;
}
.eu-btn-icon svg{
    width: 35px;
}

.flex-half {
    flex: 0.5;
}

.btn-hover--next:hover + div{
   border-radius: 30px;     
}

.btn-hover--next + div{
    transition: border-radius 0.5s ease-in-out;
}

@media (min-width: 768px) {
    .btn--arrow-right-hover {
        margin-right: 100px;
    }

    .btn--arrow-right-hover:hover .eu-btn-icon {
        right: -100px;
    }
}

@media (min-width: 1024px) {
    .eu-img-top {
        margin-top: -180px;
    }

    .eu-img-top-lg {
        margin-top: -220px;
    }
    
    .btn--arrow-right-hover {
        margin-right: 0px;
    }

    .btn--arrow-right-hover:hover .eu-btn-icon {
        right: -30%;
    }

}

.mt-0i {
    margin-top: 0px !important;
}

.mt-2i {
    margin-top: 2rem !important;
}



/* End of Utilities */

/* Custom */

.error404 .eu-main {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 170px);
}

.error404 .eu-color-strips {
    display: none;
}

.eu-error404__item {
    transition: border-radius 0.35s ease-in-out;
}

.eu-error404__item:hover {
    border-radius: 80px;
}

@media (min-width: 1024px) {
    .eu-error404__item:first-child,
    .eu-error404__item:nth-child(4){
        transform: rotate(-10deg);
        transform-origin: left center;
    }

    .eu-error404__item:nth-child(2){
        transform: rotate(10deg);
        transform-origin: center right;
    }

    .eu-error404__item:nth-child(3) {
        max-width: 100px;
        transform: translateY(-35px) rotate(32deg);
        transform-origin: center right;
        margin-right: 15px;
        margin-left: 15px;
    }

    .eu-error404__item:nth-child(4) {
        max-width: 30%;
    }

}

.main-content > *:not(section):first-child{
    padding-top: 3rem;
}

.main-content > *:not(section) {
    padding-left: 1rem;
    padding-right: 1rem;
    margin: revert;
}

@media (min-width: 1024px) {
    .main-content > *:not(section) {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.eu-btn-actions__img {
    width: 100px;
}

.eu-un-list li {
    padding-left: 35px;
    position: relative;
}


.eu-un-list li:not(:has(p)) {
    margin-top: 20px;
    margin-bottom: 10px;
}

.eu-un-list li:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 10px;
}

.eu-list-circle li:before {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.eu-list-line li:before {
    width: 24px;
    height: 8px;
    border-radius: 40px;
}

.eu-list-teal li:before {
    background-color: var(--eu-teal);
}

.eu-list-orange li:before {
    background-color: var(--eu-orange);
}

.eu-list-yellow li:before {
    background-color: var(--eu-yellow);
}

.eu-un-list li > p {
    line-height: 1.5;
    margin-bottom: 10px
}

.eu-section__content > ul,
.eu-section__content > ol {
    list-style: revert;
    padding: revert;
    margin: revert;
}

.eu-section__content > p,
.eu-section__content > h1
.eu-section__content > h2,
.eu-section__content > h3,
.eu-section__content > h4 {
    margin: revert;
}

.eu-section__content > a,
.eu-section__content > p a{
    color: var(--eu-red);
}

.eu-section__content thead th {
    background: var(--eu-forest-green);
}

.eu-payment-channels .section-heading {
    flex: 1;
}

.eu-payment-channels .section-body {
    flex: 2;
}

.pay-channel__link {
    cursor: pointer;
}

.pay-channel.active .pay-channel__icon-hover{
    visibility: visible;
}

.pay-channel__icon {
    position: relative;
}

.pay-channel__icon-hover {
    display: flex;
    position: absolute;
    align-items: center;
    visibility: hidden;
    top: 0;
}

.pay-channel__icon img {
    width: 100%;
    height: 100%
}

.pay-channel__label-link {
    /* display: none; */
    display: inline;
    visibility: hidden;
    max-width: 0px;
    transition: visibility 0.35s ease-in-out, max-width 0.35s ease-in-out;
    pointer-events: none;
}

.pay-channel__label {
    pointer-events: none;
}

.pay-channel:hover .pay-channel__icon-hover {
    visibility: visible;
}

.pay-channel:hover .pay-channel__label-link {
    visibility: visible;
    max-width: 200px;
}

.eu-img-r-content__wrapper{
    min-height: 280px;
    position: relative;
}

.eu-img-r-content__media .eu-video-thumbnail {
    border-radius: 30px;
}

.main-content > section:nth-child(2) .eu-img-r-content__wrapper:after {
    content: "";
    background-image: url(images/icons/arrow-down.svg);
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    right: 0px;
    background-repeat: no-repeat;
    bottom: -60px;
    background-size: contain;
}


.main-content > section:nth-child(2).\--arrow-left .eu-img-r-content__wrapper:after {
    transform: rotateZ(90deg);
}

.eu-img-r-content__body > a.btn-primary,
.eu-img-r-content__body > .btn--latest-econnect{
    margin-top: auto;
    width: 70%;
}

.eu-img-r-content__body > *:last-child.btn-pop-up--wrapper {
    margin-top: auto;
    width: auto;
}

.eu-img-r-content__body > p:last-of-type:not(:last-child) {
    margin-bottom: 40px;
}

.main-content> section:nth-child(2).eu-img-r-content > .section-inner {
    padding-top: 0px;
    margin-top: 0px;
}

.eu-img-r-content__body p > a{
    color: var(--eu-red);
}

.eu-img-r-content__body > p strong {
    font-weight: 600;
}

.eu-btn-pills-expands .btn-pill,
.eu-btn-pills-expands .btn-pop-up--wrapper {
    flex: 1;
}

.eu-btn-pills-expands .btn-pop-up--wrapper,
.button-pills-expands .btn-primary {
    transition: flex 0.5s ease-in-out;
}

.button-pills-expands .btn-pill:not(.btn--vertical):hover,
.button-pills-expands .btn-pop-up--wrapper:hover,
.button-pills-expands .btn-primary:hover {
    flex: 2;
}

.btn {
    transition: border-radius 0.5s ease-in-out, flex 0.5s ease-in-out;
}

.btn-pill,
.eu-btn-pills-expands .btn-primary {
    border-radius: 30px;
    flex: 1;
    transition: border-radius 0.5s ease-in-out, flex 0.5s ease-in-out;
}

.btn-pill:hover,
.eu-btn-pills-expands .btn-primary:hover {
    border-radius: 80px;
}

.btn--arrow-down-hover {
    min-width: 80px;
}

.btn--arrow-down-hover > .border-8 {
    max-height: max-content;
}

.btn--arrow-down-hover.active {
    flex: 1 !important;
}

.btn--arrow-down-hover.active .eu-tabs-heading__label {
    opacity: 1;
}

.btn--arrow-down-hover svg,
.btn--arrow-down-hover .eu-tabs-heading__label {
    opacity: 0;
    transition: opacity 0.35s ease-in-out;
}

.btn--arrow-down-hover:hover svg,
.btn--arrow-down-hover:hover .eu-tabs-heading__label {
    opacity: 1;
}

.btn-pill[data-subtext="true"]:hover .btn-pill__subtext {
    visibility: visible;
    display: block;
}

.btn-pill[data-subtext="true"]:hover {
    align-items: flex-start !important;
}

.btn-pill__subtext {
    visibility: hidden;
    display: none;
}

.btn-action-r-icon:after {
    content: "";
    background-image: url(images/icons/arrow-right-dark-green.svg);
    width: 30px;
    height: 30px;
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 80px;
}

.euhub-links-action .btn {
    flex: 1;
    transition: border-radius 0.5s ease-in-out, flex 0.5s ease-in-out;
}

.euhub-links-action__click {
    border-radius: 30px;
}

.euhub-links-action__click:hover,
.euhub-links-action__options:hover {
    border-radius: 80px;
}

.euhub-links-action.active .euhub-links-action__options {
    border-radius: 80px;
}

.euhub-links-action.active .euhub-links-action__options {
    flex: 2;
}

.eu-energyhub-links {
    width: 75%;
    margin-left: auto;
    visibility: hidden;
}

.eu-energyhub-links.active {
    visibility: visible;
}

.w-hover .eu-title-two-col__actions,
.w-hover .eu-actions {
    transition: transform 0.35s cubic-bezier(.86,0,.07,1), opacity 0.55s linear;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
}

.w-hover:hover .eu-actions {
    visibility: visible;
    transform: translateY(0%);
    opacity: 1;
}

.w-hover .eu-title-two-col__actions{
    visibility: visible;
    transform: translateY(0%);
    opacity: 1;
}

.eu-title-two-col__media__inner .wp-block-image {
    height: 100%;
}

.eu-title-two-col__media__inner .wp-block-image img {
    height: 100%;
    object-fit: cover;
}

.eu-title-two-col__media__img.\--hover {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.35s ease-in-out, visibility 0.35s ease-in-out;

}
.w-hover:hover .eu-title-two-col__media__img.\--hover {
    visibility: visible;
    opacity: 1;
}

.eu-section-content-b__content .content-body {
    transition: border-radius 0.5s ease-in-out;
}

.eu-section-content-b__content:hover .content-body {
    border-radius: 30px;
}

.eu-section-content-b__content:hover .btn-pill {
    border-radius: 80px;
}

.eu-section-content-b__content .section-content__body {
    flex: 3;
}

.eu-content-way__body  {
    z-index: 2;
}

.eu-content-way__media, .eu-title-two-col__actions {
    z-index: 1;
}

.eu-title-two-col__actions a[href=""] {
    pointer-events: none;
}

.eu-title-two-col__content__body ul {
    list-style-position: inside;
}

.eu-title-two-col__content__body ul:not(.eu-un-list) li {
   list-style-image: url(images/icons/bullet-line.svg);
}

.eu-title-two-col__content__body ul li {
   line-height: 1.7;
}

@media (min-width: 768px) {
    .main-content > section:nth-child(2) .eu-img-r-content__wrapper:after {
        bottom: 0px;
    }

    .eu-img-r-content__body > *:last-child.btn-pop-up--wrapper {
        width: 70%;
    }

}

@media (min-width: 991px) {
    .eu-title-two-col--w-5 .section-content__actions {
        display: flex;
        justify-content: flex-end;
    }

    .eu-title-two-col--w-5 .section-content__actions > div {
        width: 58%;
    }

    .eu-title-two-col--w-5 div.euhub-links-action__options {
        flex: 2;
    }

    .eu-title-two-col--w-5 a.euhub-links-action__options {
        flex: 1;
    }
}

.eu-btn-pills-v2 .btn:first-child {
    flex: 2;
    position: relative;
}
/*
.eu-btn-pills-v2 .button-pills:hover .btn:nth-child(2) {
    border-radius: 80px;
}
*/
.eu-btn-pills-v2 .button-pills:hover .btn:first-child {
    border-radius: 30px;
}


.eu-btn-pills-v2 .btn:first-child:after {
    position: absolute;
    right: 3rem;
    transition: right 0.35s ease-in-out;
}

.eu-btn-pills-v2 .btn:nth-child(2) {
    transition: all 0.35s linear;
    position: relative;
}

.eu-btn-pills-v2 .radius-80:hover {
    border-radius: 30px;
}

.wp-block-energyunited-refresh-eu-featured-half-content .eu-img-r-content__media{
    width: 55%;
}

.wp-block-energyunited-refresh-eu-featured-half-content .eu-img-r-content__body{
    width: 45%;
}

#euhub-links.active .euhub-links-action__click{
    text-align:left;
}

#myenergyhub-links{
    gap: 20px;
    padding-top: 20px;
}

#myenergyhub-links .euhub-link__item{
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 300;
}

#myenergyhub-links .euhub-link__item svg{
    width: 20px;
}

#myenergyhub-links > a:hover svg *:not([fill="none"]){
    fill: var(--eu-green-dark);
}

#myenergyhub-links > a:hover svg *[stroke-width="4"]{
    stroke: var(--eu-green-dark);
}

.eu-social-links-b .content-body {
    transition: border-radius 0.5s ease-in-out;
}

.eu-social-links-b .section-content:hover .content-body{
    border-radius: 30px;
}

.\--bordered .social-profiles__item {
    flex: 1;
    height: 100%;
    aspect-ratio: 1/1;
}

.\--bordered .social-profiles__item a{
    height: 100%;
    width: 100%;
    border-radius: 30px;
}

.\--bordered .social-profiles__item a:hover{
    border-radius: 50%;
}

.\--bordered .social-profiles__item:nth-child(1) a, 
.\--bordered .social-profiles__item:nth-child(5) a{
    border-color: var(--eu-orange)
}

.\--bordered .social-profiles__item:nth-child(2) a, 
.\--bordered .social-profiles__item:nth-child(4) a{
    border-color: var(--eu-yellow)
}

.\--bordered .social-profiles__item:nth-child(3) a{
    border-color: var(--eu-red)
}

.eu-title-two-col__content__body {
    border-radius: 30px;
}

.eu-title-two-col__content__body__inner {
    flex: 1;
}

.eu-title-two-col__content__body__inner p > a {
    color: var(--eu-red);
}

.eu-benefits__item {
    padding-bottom: 80px;
    position: relative;
}

.eu-benefits__content {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.35s ease-in-out, visibility 0.35s ease-in-out ;
    min-width: 280px;
    position: absolute;
    bottom: 0;
}



@media (min-width: 768px) {
    .eu-benefits__content {
        min-width: 400px;
    }

    .eu-benefits__item:last-child .eu-benefits__content {
        min-width: 100px;
        bottom: -30px;
    }

    .eu-benefits__icon img {
        max-width: 150px;
    }
}


@media (min-width: 1600px) {
    .eu-benefits__item:last-child .eu-benefits__content {
        min-width: 400px;
        bottom: 0px;
    }
}

.eu-benefits__item:hover .eu-benefits__content {
    visibility: visible;
    opacity: 1;
}

.eu-benefits__icon img {
    max-width: 100px;
}

.eu-title-two-col__media__img,
.eu-title-two-col__media__inner img  {
    border-radius: 30px 30px 0px 0px;
}

.eu-press-releases__item__content {
    background-color: #F0F0F0;
}

.eu-press-releases__title {
    color: #1c3740;
}

.eu-press-releases__excerpt {
    font-size: 19px;
    line-height: 1.7;
}

.eu-embed__issuu-content {
    max-width: 1000px;
    margin: auto;
}

.eu-embed__issuu {
    padding-top:max(60%,326px);
    height:0;
    width:100%;
}

.eu-embed__issuu iframe {
    position:absolute;
    border:none;
    width:100%;
    height:100%;
    left:0;
    right:0;
    top:0;
    bottom:0;
}


.eu-econnect-archive > h4 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: .5em
}

.eu-econnect-archive > p {
    font-size: 19px;
    line-height: 32px;
    padding: 0;
    margin: 0 0 1.2rem;
}

.eu-econnect-archive a {
    color: var(--eu-red);
}

.eu-econnect-archive a:hover {
    text-decoration: underline;
}

@media (min-width: 1024px) {
    .eu-title-two-col__media__img,
    .eu-title-two-col__media__inner img {
       border-radius: 30px 0px 0px 30px;
    }

    .eu-econnect-archive-pills .btn-pill,
    .eu-btn-pills-expands-vertical .btn-pill {
        /* min-width: 8%;
         */
        padding-left: 0px;
        padding-right: 0px;
        min-width: min-content
    } 
}


@media (min-width: 1024px) {
   .eu-title-two-col__media__img,
   .eu-title-two-col__media__inner img  {
       border-radius: 30px 0px 0px 30px;
    }

    .eu-econnect-archive-pills__title {
        writing-mode: vertical-lr;
    }

    .btn--vertical-label {
        writing-mode: vertical-lr;
    } 
}

.header-menu > .menu-item > a{
    white-space: nowrap;
}

.eu-how-to-videos__actions  .btn-pop-up--wrapper {
    flex: 1;
    transition: border-radius 0.5s ease-in-out, flex 0.5s ease-in-out;
}

.eu-how-to-videos__actions  .btn-pop-up--wrapper:hover {
    flex: 2;
}

.eu-how-to-videos__actions .btn-pop-up:hover:after {
    visibility: visible;
    opacity: 1;
    margin-left: 80px;
}

.eu-how-to-videos__actions .btn-pop-up:after {
    content: "";
    background-image: url(images/icons/eu-play-icon.svg);
    width: 30px;
    height: 30px;
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 0px;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.35s ease-in-out, opacity 0.25s ease-in, margin-left 0.25s ease-in
}

.btn-pop-up.\--video:after {
    content: "";
    background-image: url(images/icons/eu-play-icon.svg);
    width: 0;
    height: 30px;
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 0px;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.35s ease-in-out, opacity 0.25s ease-in, margin-left 0.25s ease-in;
}

.btn-pop-up.\--video:hover:after {
    visibility: visible;
    opacity: 1;
    margin-left: 80px;
    width: 30px;
}

.eu-columns-2-center-line {
    position: relative;
    gap: 0px;
}

.eu-columns-green-center{
    width: 100%;
    gap: 40px;
}

.eu-columns-green-center > div{
    position: relative;
}

.btn--vertical {
    gap: 2rem;
}

.btn--vertical span {
    bottom: auto;
    right: -30px;
    position: relative;
    transition: right 0.25s ease-in-out;
}

.btn--vertical:hover span {
    right: 0px;
}

@media (min-width: 1024px) {
    .btn--vertical:hover span {
        bottom: 0px;
    }

    .btn--vertical span {
        bottom: -30px;
        right: auto;
        transition: bottom 0.25s ease-in-out;
    }
}

.btn--vertical:hover svg {
    visibility: visible;
    opacity: 1;
}

.btn--econnect-item:nth-child(4n+1):hover {
    border-color: var(--eu-teal);
}

.btn--econnect-item:nth-child(4n+1) svg path{
    stroke: var(--eu-teal);
}

.btn--econnect-item:nth-child(4n+2):hover {
    border-color: var(--eu-orange);
}

.btn--econnect-item:nth-child(4n+2) svg path{
    stroke: var(--eu-orange);
}

.btn--econnect-item:nth-child(4n+3):hover {
    border-color: var(--eu-yellow);
}

.btn--econnect-item:nth-child(4n+3) svg path{
    stroke: var(--eu-yellow);
}

.btn--econnect-item:nth-child(4n+4):hover {
    border-color: var(--eu-red);
}

.btn--econnect-item:nth-child(4n+4) svg path{
    stroke: var(--eu-yellow);
}


.hover\:border-orange-eu svg path{
    stroke: var(--eu-orange)
}

.hover\:border-yellow-eu svg path{
    stroke: var(--eu-yellow)
}

.hover\:border-teal-eu svg path{
    stroke: var(--eu-teal)
}

.hover\:border-red-eu svg path{
    stroke: var(--eu-red)
}

.btn--vertical svg {
    width: 25px;
    height: 25px;
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.35s ease-in-out, opacity 0.25s ease-in, margin-left 0.25s ease-in;
}

@media (min-width: 782px) {
    .eu-columns-2-center-line {
        column-gap: 100px;
    }
    
    .eu-columns-2-center-line:after {
        content: "";
        position: absolute;
        background-color: var(--eu-teal);
        width: 8px;
        height: 100%;
        left: calc(50% - 4px);
        border-radius: 16px;
    }

    .eu-columns-green-center > div::after{
        content: "";
        position: absolute;
        background-color: var(--eu-teal);
        width: 8px;
        height: 100%;
        left: calc(100% + 20px);
        border-radius: 16px;
        top: 0px;
    }

    .eu-columns-green-center > div:last-child::after{
        display:none;
    }

    .one-green > div:nth-last-child(2)::after{
        display:none;
    }

}

.eu-cta-simple__content {
    align-items: center;
}

.eu-cta-simple__content:after {
    background-image: url(images/icons/arrow-left.svg);
    content: "";
    width: 30px;
    height: 30px;
    right: 0px;
    background-repeat: no-repeat;
    background-size: contain;
}

.eu-people-item__img {
    min-width: 50%;
    flex: 1;
}
.eu-people-item__name {
    flex: 0.5;
}

.eu-rows > * {
    flex-grow: 1;
}

.eu-bordered-content > .wp-block-table {
    border-radius: 20px;
}

.eu-bordered-content .wp-block-table td,
.eu-bordered-content .wp-block-table th {
    border-color: var(--eu-nearblack);
}

.eu-bordered-content .wp-block-table tr:hover {
    background: var(--eu-teal) !important;
    color: #fff;
}

.eu-form label{
    font-weight: 700;
}

.eu-form select {
    background-image: url(images/icons/select.svg);
}

.eu-form input:not([type='submit']),
.eu-form textarea,
.eu-form select {
    border-radius: 30px;
    border: 8px solid var(--eu-gray-d5) !important;
    width: 100%;
    min-height: 56px;
}

.eu-form input:not([type='submit']):focus,
.eu-form textarea:focus,
.eu-form select:focus {
    box-shadow: none;
}

.eu-form textarea:focus {
    border-color: var(--eu-gray-d5);
}

.eu-form__field {
    margin-bottom: 20px;
}

.eu-form__input-label:not(.--full) {
    width: 200px;
}

.eu-form__input-label.\--full,
.eu-form__input-wrapper.\--full {
    width: 100%;
}

.eu-form__input-wrapper:not(.--full) {
    width: calc(100% - 200px);
}

.eu-form__field--row {
    flex-wrap: wrap;
}



@media (min-width: 991px) {
    .eu-form__field--row {
        flex-wrap: unset;
        gap: 30px;
    }
    .eu-form__field--row .eu-form__field {
        flex-grow: 1;
    }

    .eu-form__field--row .eu-form__field:not(:first-child) .eu-form__input-label {
        width: auto;
        padding-right: 20px;
    }

    .eu-form__field--row .eu-form__field:not(:first-child) .eu-form__input-wrapper:not(.--full) {
        width: 100%;
    }
}

.eu-section-heading .wp-block-heading {
    padding-bottom: 5px;
}

/* End of EU Sections */ 

/* Start of Media Responsive CSS */

@media (max-width:1023px) {
     .eu-energyhub-links {
        width: 100%;
        visibility: visible;
        border: 8px solid var(--eu-red);
        border-radius: 30px;
        padding: 12px;
    }
}

@media (max-width:991px) {
    .text-stroke-green-dark {
        -webkit-text-stroke: 2px var(--eu-green-dark);
    }
    #myenergyhub-links .euhub-link__item {
        font-size: 14px;
    }
}



@media (max-width:767px){
    .wp-block-energyunited-refresh-eu-featured-half-content .eu-img-r-content__media{
        width: 100%;
    }

    .wp-block-energyunited-refresh-eu-featured-half-content .eu-img-r-content__body{
        width: 100%;
        padding-top: 0px;
    }

    .eu-columns-green-center p{
        text-align:center !important;
    }

    .eu-img-r-content__body > a.btn-primary{
        width: auto;
        border-radius: 30px;
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 22px;
        padding-right: 22px;
    }

    p.has-medium-font-size{
        font-size:16px !important;
    }

    .text-stroke-green-dark {
        -webkit-text-stroke: 1px var(--eu-green-dark);
    }

    .text-stroke-width--lg{
        -webkit-text-stroke-width: 1px;
    }

    

    .btn-action-r-icon::after{
        margin-left: 20px;
    }

    .header-menu__full{
        max-width:100vw;
        min-height:181vh;
    }

    .header-menu__full>div{
        max-height: 100vh;
        overflow: scroll;
    }

    .eu-title-two-col__content__body p{
        font-size: 16px;
    }

    .pay-channel__icon {
        width: 80px;
        aspect-ratio: 1/1;
    }

    .eu-columns-2-center-line .eu-un-list {
        margin-top: 0px !important;
        margin-bottom: 0px !important;
    }

    .eu-people-item__name {
        flex: 1;
        width: 50%;
    }

    .eu-benefits__item {
        padding-bottom: 0px;
    }

    .eu-benefits__content {
        min-width: auto;
        top: 0;
        position: relative;
        width: 100px;
        height: 0px;
    }

    .eu-benefits__item:hover .eu-benefits__content{
        height: 100%;
    }

    .eu-benefits__item:last-child .eu-benefits__icon {
        padding-top: 20px;
    }
}


@media (max-width:480px) {
    .pay-channel__icon {
        width: auto;
        aspect-ratio: initial;
    }

    .pay-channel {
        width: 55px;
    }

    /* .eu-btn-pills-expands-v1 .button-pills>div{
        grid-template-columns: 1fr 1fr;
        display: grid;
    } */

    .eu-btn-pills-expands-v1 .button-pills-expands > * {
        max-width: 50%;
    }

    .eu-btn-pills-expands-v1 .btn-pill, .eu-btn-pills-expands-v1 .btn-pop-up--wrapper {
        min-width: 50%;
    }

    .eu-btn-pills-expands-v1 .button-pills-expands > a {
        padding: 5px;
        font-size: 12px;
        height: 70px;
        border-radius: 100px;
        line-height: 1;
    }
    
    .wp-block-energyunited-refresh-eu-slider .eu-slide__content p{
        font-size:16px;
    }

    .wp-block-energyunited-refresh-eu-slider br{
        display:none;
    }

    .wp-block-energyunited-refresh-eu-slider .eu-slide__actions a{
        font-size: 14px;
        padding-top: 6px;
        padding-bottom: 8px;
        min-width: 75%;
    }

    .wp-block-energyunited-refresh-payment-channels .section-body{
        gap: 5px;
    }

    .wp-block-energyunited-refresh-payment-channels .pay-channel__link{
        gap:5px;
    }

    .wp-block-energyunited-refresh-payment-channels .pay-channel__icon img{
        max-height: 40px;
    }

    .wp-block-energyunited-refresh-payment-channels .pay-channel__icon-hover{
        visibility: hidden !important;
    }

    .wp-block-energyunited-refresh-payment-channels .pay-channel__label-link span{
        font-size: 11px;
        line-height: 1;
        display: block;
        color: var(--eu-blue);
    }

    .wp-block-energyunited-refresh-payment-channels .pay-channel__label-link{
        display:inline !important;
    }

    .wp-block-energyunited-refresh-eu-energyhub-links .section-content>div:nth-child(1)>div:nth-child(1){
        font-size: 12px;
        line-height: 1;
        border-radius: 20px;
    }

    .wp-block-energyunited-refresh-eu-energyhub-links #euhub-links .euhub-links-action__click{
        padding: 5px;
        font-size: 12px;
    }

    .wp-block-energyunited-refresh-eu-energyhub-links #euhub-links .euhub-links-action__click.btn-action-r-icon::after{
        width: 15px;
        height: 15px;
        margin-left: 5px;
    }

    .wp-block-energyunited-refresh-eu-energyhub-links #myenergyhub-links{
        display: grid;
        grid-template-columns: 100px 1fr 80px;
        gap: 5px;
        padding: 10px;
    }

    .wp-block-energyunited-refresh-eu-energyhub-links #myenergyhub-links .euhub-link__item{
        font-size: 10px;
        line-height: 1;
        gap: 5px;
    }

    .wp-block-energyunited-refresh-eu-energyhub-links #myenergyhub-links .euhub-link__item svg{
        width: 12px;
    }

    /* custom class in home block */
    .home-outages .eu-img-r-content__body > a.btn-primary{
        position: absolute;
        top: calc(100% + 20px);
        width: 80%;
        right: 10%;
        font-size: 12px;
        text-align: center;
        display: flex;
        justify-content: center;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .home-outages .eu-img-r-content__wrapper{
        display: flex;
        flex-direction: row;
        position: relative;
        min-height: 150px;
    }

    .home-outages .eu-img-r-content__media{
        width: 50%;
    }

    .home-outages .eu-img-r-content__body{
        width: 50%;
        align-self: center;
    }

    .home-outages .wp-block-energyunited-refresh-content-heading>span:nth-child(1){
        font-size: 16px;
        line-height: 1.4;
    }

    .home-outages .wp-block-energyunited-refresh-content-heading>span:nth-child(2){
        font-size: 30px;
        line-height: 1;
    }

    .home-outages .wp-block-energyunited-refresh-eu-button{
        position: absolute;
        top: calc(100% + 20px);
        width: 80%;
        right: 10%;
        font-size: 12px;
        text-align: center;
        display: flex;
        justify-content: center;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .home-outages .section-inner {
        margin-top: 0px;
        padding-top: 1rem;
        margin-bottom: 3rem;
    }

    .social-profiles{
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .social-profiles a{
        font-size: 24px;
        width: 42px;
        height: 42px;
    }
    
    .btn-pill[data-subtext="true"] {
        transition: height 0.35s ease-in-out, border-radius 0.35s ease-in-out, padding 0.35s ease-in-out;
        height: 100% !important;
        min-height: 70px;
    }

    .btn-pill[data-subtext="true"]:hover {
        padding: 15px 12px;
        height: 100%;
        border-radius: 50px;
    }

    .eu-benefits__item.\--empty {
        display: none;
    }

    .btn-action-r-icon:after {
        right: 2rem;
    }
}

/* End of Media Responsive CSS */

/* Start of Default Page Blocks */
.main-content > .wp-block-columns .wp-block-image.is-style-rounded img{
    border-radius: 30px;
}

.main-content > .wp-block-columns p a,
.main-content > .wp-block-columns li a{
    text-decoration: underline;
}

.main-content > .wp-block-columns ul{
    list-style-type: disc;
    list-style-position: outside;
    padding-left: 20px;
}

.main-content > .wp-block-columns li{
    text-align:left;
    margin-bottom:10px;
}

/* one column */
.main-content > .wp-block-columns > div:first-child:nth-last-child(1){
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    display: flex;
    gap:20px;
    flex-direction: column;
    align-items: center;
}

.main-content > .wp-block-columns > div:first-child:nth-last-child(1) .wp-block-energyunited-refresh-eu-button{
    width:fit-content;
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 8px;
}

.main-content > .wp-block-columns > div:first-child:nth-last-child(1) .wp-block-media-text{
    gap: 40px;
    width: 70%;
}

.main-content > .wp-block-columns > div:first-child:nth-last-child(1) .wp-block-media-text .wp-block-media-text__content{
    padding: 0px;
    text-align: left;
}

@media (max-width:480px){
    .main-content > .wp-block-columns > div:first-child:nth-last-child(1) .wp-block-media-text img{
        width: 80px;
        margin-left: auto;
        margin-right: auto;
    }

    .main-content > .wp-block-columns > div:first-child:nth-last-child(1) .wp-block-media-text{
        gap: 20px;
        width: 100%;
    }

    .main-content > .wp-block-columns > div:first-child:nth-last-child(1) .wp-block-media-text .wp-block-media-text__content{
        text-align: center;
    }
}

/* two column */
.main-content > .wp-block-columns > div:first-child:nth-last-child(2),
.main-content > .wp-block-columns > div:first-child:nth-last-child(2) ~ div{
    align-self:center;
    padding-top:40px;
    padding-bottom:40px;
    gap: 20px;
    display: grid;
}

.main-content > .wp-block-columns > div:first-child:nth-last-child(2) p strong,
.main-content > .wp-block-columns > div:first-child:nth-last-child(2) ~ div p strong{
    font-weight: 700;
}

.main-content > .wp-block-columns > div:first-child:nth-last-child(2) .wp-block-energyunited-refresh-eu-button,
.main-content > .wp-block-columns > div:first-child:nth-last-child(2) ~ div .wp-block-energyunited-refresh-eu-button{
    width:fit-content;
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 20px;
}

.main-content > .wp-block-columns > div:first-child:nth-last-child(2) iframe,
.main-content > .wp-block-columns > div:first-child:nth-last-child(2) ~ div iframe{
    width: 100%;
    aspect-ratio: 16/9;
    height: auto;
}

@media (max-width:767px){
    .main-content > .wp-block-columns > div:first-child:nth-last-child(2),
    .main-content > .wp-block-columns > div:first-child:nth-last-child(2) ~ div{
        padding-top:0px;
        padding-bottom:0px;
    }
}

.main-content > section:last-child {
    padding-bottom: 5rem;
}
/* End of Default Page Blocks */

.pagination a {
    display: inline-block;
    background: var(--eu-forest-green);
    color: var(--eu-teal);
    padding: 1rem 2rem;
    border-radius: 30px;
    margin: 0 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    font-weight: 800;
    font-size: 1.125rem;
    line-height: 1.125rem;
    width: 100%;
    max-width: 50%;
    position: relative;
}

.pagination a[title='More Results']:after {
    content: "";
    background: url(images/icons/arrow-right.svg);
    width: 40px;
    height: 40px;
    position: absolute;
    right: -60px;
    top: 50%;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translate(0%, -50%)
}

.pagination a[title='Previous Results'] {
    margin-left: 60px;
}

.pagination a[title='Previous Results']:after {
    content: "";
    background: url(images/icons/arrow-left.svg);
    width: 40px;
    height: 40px;
    position: absolute;
    left: -60px;
    top: 50%;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translate(0%, -50%)
}


/* From WpCodeBox */
/* table */
table,td,th{
    border:1px solid #333;
}

th{
    font-size:23px;
    text-transform:uppercase;
    background:var(--eu-orange);
    color:#fff;
}

td,th{
    padding:5px 10px;
    text-align:left;
}

td{
    font-size:17px
}

tr:nth-child(odd){
    background:#eee;
}

/* Forms */
.ll-form-box .tpl-block .chzn-container-single .chzn-single {
    min-height: 56px !important;
    border-radius: 30px !important;
    border: 8px solid var(--eu-gray-d5) !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ll-form-box .tpl-block .chzn-container-single .chzn-single > div {
    background-image: url(/wp-content/themes/energyunited-refresh/images/icons/select.svg) !important;
    background-size: 12px !important;
    background-repeat: no-repeat !important;
    padding-right: 20px !important;
    background-position: center !important;
}

.ll-form-box .tpl-block .chzn-container-single .chzn-single > div b {
    display: none !important;
}

.ll-form-box .tpl-block-content > label {
    font-weight: 400 !important;
    color: #000 !important;
}

.chzn-container.chzn-container-single {
    width: 100%;
}

#wrap-form-submit-button > input,
.frm_button_submit {
    background-color: var(--eu-forest-green) !important;
    color: var(--eu-teal) !important;
    font-family: 'Trenda' !important;
    font-size: 1rem !important;
    line-height: 1.75rem !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    border-radius: 30px !important;
    width: 35% !important;
}

.main-content .section-content form label{
    font-weight: 700;
    color: #000 !important;
}

.main-content .section-content form select {
    background-image: url(/wp-content/themes/energyunited-refresh/images/icons/select.svg);
}

.main-content .section-content form input:not([type='submit']):not([type='checkbox']):not([type='radio']):not([type='button']),
.main-content form textarea,
.main-content form select {
    border-radius: 30px !important;
    border: 8px solid var(--eu-gray-d5) !important;
    width: 100%;
    min-height: 56px;
}

.main-content form input[type=radio],
.main-content form input[type=checkbox] {
    -webkit-appearance: auto;
    appearance: auto;
    box-shadow: revert;
}

/* .wForm input:not([type='submit']):not([type='checkbox']):not([type='radio']):not([type='button']) {
  width: auto;  
}
.wForm #tfa_84,
.wForm #tfa_338{
    border-radius: 30px !important;
    border: 8px solid var(--eu-gray-d5) !important;
    
} */

.main-content .section-content form input:not([type='submit']):focus,
.main-content .section-contentform textarea:focus,
.main-content .section-content form select:focus {
    box-shadow: none;
}

.main-content .section-content form textarea:focus {
    border-color: var(--eu-gray-d5);
}

.section-content form,
.section-content form label{
    font-style: normal;
    font-weight: 300;
    font-size: var(--wp--preset--font-size--medium) !important;
}

.section-content form br{
    display:block;
    margin-bottom:20px;
}

.section-content form textarea{
    display:block;
}

.section-content form input[type=submit]{
    background-color: rgb(3 63 35 / var(--tw-bg-opacity));
    color: rgb(130 208 183 / 1);
    font-family: 'Trenda';
    font-size: 1rem;
    line-height: 1.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 30px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (max-width:480px){
    .section-content form,
    .section-content form label{
        font-style: normal;
        font-weight: 300;
        font-size: 16px !important;
    }
    
    .section-content form input,
    .section-content form select,
    .section-content form textarea{
        margin-left:0px !important;
        width:100% !important;
    }
}

.eu-un-list.eu-list-circle.eu-list-orange{
    margin: revert;
}

.two-buttons .eu-title-two-col__actions a{
    width:auto !important;
}

@media (max-width:480px){
    .two-buttons .eu-title-two-col__actions a{
        padding-left:15px;
        padding-right:15px;
    }

    .eu-un-list.eu-list-circle.eu-list-orange {
        margin: 0px;
    }
}

.socials-footer .social-profiles{
    justify-content: space-between;
    max-width: 959px;
    padding-right: 7px;
}

@media (max-width:1024px){
    .socials-footer .social-profiles{
        max-width: 100%;
        padding-right: 0px;
    }
}

.footer-line{
    position: relative;
    margin-top: -7px;
}

.contact-popup .modal-body__inner{
    padding-right: 5rem;
    margin-left: auto;
    margin-right: auto;
}

.eu-slider--simple .eu-slider-container{
    position:relative;
}

.eu-tooltip{
    text-align: center;
    position: absolute;
    right: 20px;
    font-size: 11px;
    width: 127px;
    background-color: rgb(130 208 183);
    color: #fff;
    padding: 5px 5px;
    border-radius: 10px;
    top: -25px;
    z-index:100;
    pointer-events:none;
}

.eu-tooltip::before{
    content:" ";
    position:absolute;
    border-color: rgb(130 208 183) transparent transparent transparent;
    border-style: solid;
    border-width: 8px;
    height: 0px;
    width: 0px;
    top:100%;
    left:50%;
    transform:translateX(-50%);
}

@media (max-width:1023px){
    .eu-tooltip{
        right: -10px;
        font-size: 9px;
        width: 100px;
    }

    .eu-tooltip::before{
        left: calc(50% + 15px);
    }
}

@media (max-width:768px){
    .eu-tooltip{
        top: 0px;
        box-shadow: 0px 0px 14px rgba(0,0,0,0.2);
    }
}

.cora-btn .button-pills-expands>a:first-child{
    flex: 2;
}

.cora-btn .button-pills-expands>a.border-yellow-eu{
    background-color:rgb(245 220 105);
}

@media (min-width:1024px){
    .cora-btn .button-pills-expands>a{
        text-align:left;
        align-items: flex-start;
    }

    .contact-popup .modal-body__inner{
        width: 800px;
    }

    .contact-popup .eu-modal__content-inner>div{
        width: 383px;
    }
}

.eu-post-details img{
    border-radius:50px;
    object-fit:cover;
}

.eu-post-details h4,
.eu-post-details p{
    max-width:100%;
}

@media (min-width:1024px){
    .eu-post-details h4{
        max-width:85%;
    }

    .eu-post-details p{
        max-width:80%;
    }
}

@media (min-width:767px){
    .cora-content-half{
        padding-top: 0px;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        gap: 25px;
    }

    .cora-content-half>a{
        width: 90% !important;
        margin-top: 0px !important;
    }

    .cora-member .wp-block-image,
    .cora-member .wp-block-image img{
        height: 100% !important;
        width: 100% !important;
    }

    .cora-member .wp-block-image img{
        aspect-ratio: 16/4 !important;
    }
}

.cora-member .wp-block-image img{
    border-radius: 30px;
}

.pets-form .frm_checkbox label{
    font-weight:300 !important;
    font-size:14px !important;
}

.media-video video{
    border-radius: 30px;
}

.generators-feature ul{
    list-style-position: inside;
}

.generators-feature li{
    line-height: 1.7;
    padding-left: 35px;
    position: relative;
}

.generators-feature li::before{
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--eu-orange);
    content: "";
    position: absolute;
    left: 0px;
    top: 10px;
}

.img-top-xl img{
    -o-object-position: center 25% !important;
    object-position: center 25% !important;
}

.img-bottom-xl img{
    -o-object-position: center 100% !important;
    object-position: center 100% !important;
}

.no-play .eu-video-overlay{
    opacity:0;
}

.reverse-heading>span:nth-child(1){
    font-size: 4.5rem;
    font-weight: 300;
}

.reverse-heading>span:nth-child(2){
    font-weight: 900;
    font-size: 3rem;
}

@media (max-width:1024px){
    .reverse-heading>span:nth-child(1){
        font-size: 3.75rem;
        line-height: 1;
    }
    
    .reverse-heading>span:nth-child(2){
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
}

@media (max-width:767px){
    .reverse-heading>span:nth-child(1){
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
    
    .reverse-heading>span:nth-child(2){
        font-size: 1.5rem;
        line-height: 2rem;
    }
}

.quiz-style-form .form-field.frm_top_container .frm_primary_label{
    font-size: 1.875rem !important;
    line-height: 2.25rem !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    font-style: italic;
    color: var(--eu-green-dark) !important;
    position: relative;
    display: flex !important;
    align-items: center;
    margin-bottom: 0.75em;
    padding-bottom: 0px !important;
}

.quiz-style-form .frm_fields_container{
    counter-reset: questions;
}

.quiz-style-form .form-field.frm_top_container .frm_primary_label::before{
    counter-increment: questions;
    content: counter(questions) ".";
    font-size: 90px;
    font-weight: 300;
    font-style: italic;
    color: inherit;
    line-height: 1;
    padding-right: 15px;
    color: var(--eu-green-dark);
}

.quiz-style-form .frm_opt_container{
    counter-reset: choices;
    padding-left: 1.5rem !important;
}

.quiz-style-form .frm_opt_container label{
    font-size: 1.125rem !important;
    line-height: 1.75rem !important;
    padding-left: 1rem;
    display: flex !important;
    align-items: center;
    gap: 5px;
    flex-direction: row-reverse;
    justify-content: flex-end;
    font-weight: 400 !important;
}

.quiz-style-form .frm_opt_container label input{
    order: 5;
}

.quiz-style-form .frm_opt_container label::before{
    counter-increment: choices;
    content: counter(choices, upper-alpha) ". ";
    font-weight: 900;
    padding-right: 0.5rem;
    order: 2;
    display: flex;
}

.quiz-style-form .frm_opt_container>div:nth-child(1) label::before{
    color: var(--eu-teal);
}

.quiz-style-form .frm_opt_container>div:nth-child(2) label::before{
    color: var(--eu-yellow);
}

.quiz-style-form .frm_opt_container>div:nth-child(3) label::before{
    color: var(--eu-orange);
}

.quiz-style-form .frm_opt_container>div:nth-child(4) label::before{
    color: var(--eu-red);
}

.quiz-style-form .frm_button_submit.frm_final_submit{
    font-size: 1.125rem !important;
    line-height: 1.75rem !important;
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
}

@media (max-width:767px){
    .quiz-style-form{
        padding: 1rem;
        padding-top:2rem;
        padding-bottom:2rem;
    }

    .quiz-style-form .form-field.frm_top_container .frm_primary_label{
        font-size: 1.5rem !important;
        line-height: 2rem !important;
    }

    .quiz-style-form .form-field.frm_top_container .frm_primary_label::before{
        font-size: 60px;
    }

    .quiz-style-form .frm_opt_container{
        padding-left: 0rem !important;
    }

    .quiz-style-form .frm_button_submit.frm_final_submit{
        width: 100% !important;
    }
}

.proper-center{
    padding-top:0px !important;
    gap:40px;
}

.proper-center a{
    margin-top:0px !important;
}

.eu-red-only-btn .eu-title-two-col__actions a:last-child{
    display:none;
}

.eu-red-only-btn .eu-title-two-col__actions a:nth-last-child(2){
    border-color:rgb(218 105 75 / var(--tw-border-opacity));
    min-height:96px;
    border-radius:30px;
}

.min-height-96{
    min-height:96px;
}

.eu-red-only-btn .eu-title-two-col__actions a:nth-last-child(2):hover{
    border-radius:80px;
}

.eu-center-align>div>div{
    align-items:center;
}

.eu-aspect-img img{
    aspect-ratio: auto;
}

.btn-noarrow .btn-action-r-icon::after{
    opacity:0;
    pointer-events:none;
}

.eu-custom-arrow .eu-section-content-b__actions::after{
    content: "";
    background-image: url(images/icons/arrow-up-dark-green.svg);
    width: 30px;
    height: 30px;
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    transform:rotate(180deg);
}

.padding-top-zero{
    padding-top:0px !important;
}

.padding-bottom-zero{
    padding-bottom:0px !important;
}

@media (max-width:1535px){
    .nobreak-lg br{
        display: none;
    }
}



.corner-right{
    border-radius: 0px 30px 30px 0px !important;
}

@media (max-width:1024px){
    .corner-right{
        border-radius: 0px 0px 30px 30px !important;
    }
}

.btn-auto .eu-slide__actions a{
    width:auto !important;
}

.nominees-title h2::before{
    content: "Board of Directors";
    text-transform: uppercase;
    font-size: 0.39em;
    line-height: 1;
    color: #043F22;
    font-family: 'Trenda';
    display: block;
    font-weight: 900;
    -webkit-text-stroke: 0px;
}

.nominees-bod .eu-title-two-col__content__body__inner{
    padding-left:0px;
}

@media (max-width:1024px){
    .nominees-bod .eu-title-two-col__content__body__inner{
        padding-left:3rem;
        padding-top:0px;
    }
}

.bod-district h3{
    max-width: 400px;
    letter-spacing:3px;
}

.bline-left{
    padding-left: 10px;
    margin-left: 5px;
    width: auto !important;
    display: inline-block !important;
}

.greyline>div:first-child::after{
    background-color:#CECECE;
}

.bline-left::before{
    content: " ";
    left: 0px;
    top: calc(50% + 0px);
    width: 2px;
    height: 60%;
    background-color: #000;
    position: absolute;
    transform: translateY(-50%);
}

@media (max-width:1536px){
    .nobr br{
        display:none;
    }
}

.eu-team__modal__content img{
    width:100%;
}

@media (max-width:767px){
    .eu-modal.modal{
        width: 100vw;
        height: 100vh;
    }

    .eu-team__modal__content{
        flex-direction: column;
        padding: 16px;
    }

    .eu-team__modal__content>div{
        padding:0px;
    }

    .eu-team__modal__content img{
        max-height: 225px;
        object-position: top;
    }

    .eu-team__modal__content .eu-modal__content__bio{
        height: 360px;
        padding-top: 10px;
        width: 100%;
        overflow: auto;
    }

    .eu-team__modal .bio-content{
        width: 100%;
        max-height: none !important;
        padding-right: 20px !important;
    }
}

.popupgray .modal-body__inner{
    background-color:#ebebeb;
}

.rca-noarrow .eu-img-r-content__wrapper::after{
    display:none;
}

@media (max-width:767px){
    .wp-block-energyunited-refresh-payment-channels .pay-channel__icon img{
        min-width:50px;
    }
}

.page-id-9890 header,
.page-id-10490 header{
    z-index:999999;
}

@media (max-width:767px){
    .page-id-9890 .eu-main,
    .page-id-10490 .eu-main{
        border-top:0px;
    }

    .page-id-9890 .eu-header-nav,
    .page-id-10490 .eu-header-nav{
        max-height: 80px;
    }

    .page-id-9890 .eu-header-nav .header-menu,
    .page-id-10490 .eu-header-nav .header-menu{
        opacity:0;
    }
}

.eu-column-orange.eu-columns-2-center-line::after{
    background-color: var(--eu-orange) !important;
}


@media (max-width:992px){
    .imagetips .eu-title-two-col__heading>span>span>span{
        height: 72px;
    }

    .imagetips .eu-title-two-col__heading>span>span img{
        height: 100%;
        object-fit: contain;
    }

    .imagetips .eu-title-two-col__heading>span>span{
        padding-left:60px !important;
    }
}

.text-justify-last{
    width: 100%;
    text-align: justify;
    text-align-last: justify;
}

