.side-toggle-container{
    position: fixed;
    top:0;
    bottom: 0;
    width: 600px;
    right: -600px;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1001;
}

.side-toggle-container > ul{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    left: -150px;
    list-style: none;
    padding: 0;
    margin: 0;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.side-toggle-container > ul li{
    box-shadow: 0 0 4px rgba(200, 200, 200, 0.9);
    border-right: 0;
    margin-bottom: 0.85rem;
    font-size: 12px;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease;
}
.side-toggle-container > ul li a{
    display: flex;
    align-items: center;
    background: #fff;
    transition: all 0.3s ease;
}
.side-toggle-container > ul li a .text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-left: -0.4rem;
    transition: all 0.3s ease;
}

.side-toggle-container > ul li.link a{
    background: #0274be;
    color: #fff;
}

.side-toggle-container > ul li a:hover{
    text-decoration: none;
}

.side-toggle-container > ul li .side-toggle-close{
    transition: all 0.3s ease;
    border:0;
    background: #fff;
    color: #0274be;
    position: absolute;
    top:0;
    left:0;
    padding: 0;

    visibility: hidden;
    opacity: 0;
}
.side-toggle-container > ul li .side-toggle-close svg{
    padding: 1rem 1rem;
    width: 3.625rem;
    height: 3.625rem;
    text-align: center;
    line-height: 1.625rem;
    font-size: 1.25rem;
    font-weight: 500;
    display:block;
    fill: #0274be;
}

/* Opcion de solo mostrar el icono (y texto en hover) */

.side-toggle-container > ul li{
    margin-left: 102px;
}
.side-toggle-container > ul li a .text{
    margin-left: 0;
}
.side-toggle-container > ul li:hover,
.side-toggle-container.open > ul li{
    margin-left: 0;
}
.side-toggle-container > ul li:hover a .text,
.side-toggle-container.open > ul li a .text{
    margin-left: -0.4rem;
}

/* Content */

.side-toggle-content{
    padding: 0;
    background: #fff;
    position: relative;
    z-index: 2;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: scroll;
}

.side-toggle-content > div{
    padding: 0 15px;
}

/* open */
.side-toggle-container.open2{
    right: 0;
    box-shadow: 0 0 4px rgba(200, 200, 200, 0.9);
}
.side-toggle-container.open > ul{
    left: -3.625rem;
}
.side-toggle-container.open > ul li a .text{
    margin-left: 0;
}

.side-toggle-container.open > ul li.open a:hover{
    color: #0274be;
}
.side-toggle-container.open > ul li.open2 .side-toggle-close{
    visibility: visible;
    opacity: 1;
}

.sr-only {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/* Endesa */

.side-toggle-container > ul{
    width: 245px;
    left: -245px;
}
.side-toggle-container > ul li{
    margin: 0;
    text-transform: unset;
}
.side-toggle-container > ul li a{
    padding: 15px 19px;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    box-shadow: 0 3px 6px rgba(0,0,0,.16);
    color: #000;
}
.side-toggle-container > ul li a .text{
    font-size: 1rem;
    font-weight: 600;
    line-height: 0.9;
    padding-left: 1rem;
    position: relative;
}
.side-toggle-container > ul li a .text img{
    display: inline-block;
    vertical-align: baseline;
}

.side-toggle-container > ul li a .text:before {
    display: inline-block;
    content: "";
    width: 9px;
    background: #0274be;

    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
}

.side-toggle-overlay{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent;
    display: block;
    transition: all 600ms;
    visibility: hidden;
    z-index:-1;
}

.side-toggle-overlay.open{
    background: rgba(0,0,0,0.5);
    visibility: visible;
    z-index:1000;
}

@media (max-width: 767px) {
    .side-toggle-container{ display:none; }
}

/* Tarifa */

.tarifa-luz,
.tarifa-gas,
.tarifa-luz-gas{
    cursor: pointer;
}

.question-circle {
    border: 1px solid #A1ABB7;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto;
}
.question-circle span{
    width: 40px;
    height: 40px;
    border-radius: 40px;
    background: transparent;
}

.tarifa-selected .question-circle span,
.elementor-widget-n-accordion .e-n-accordion-item[open] .question-circle span{
    background: #0274be;
}

.elementor-widget-n-accordion .e-n-accordion-item-title{
    justify-content: flex-start;
}
.elementor-widget-n-accordion .e-n-accordion-item-title-icon{
    margin-left: auto;
}
.elementor-widget-n-accordion .e-n-accordion-item-title > .question-circle{
    margin: 0 1rem 0 0;
}