.instalacion_Body {
    position: fixed;
    bottom: 10px;
    right: 1rem;
    color: var(--main-color-texto-oscuro);
    z-index: var(--capa500)
}
.instalacion_message {
    font-size: 14px;
    font-weight: 500!important;
    flex: 1 1 auto
}
.instalacion_message:after {
    content: "...";
    overflow: hidden;
    display: inline-block;
    vertical-align: bottom;
    animation: animacion 1s infinite .3s;
    animation-fill-mode: fowards;
    width: 1.25em
}
@keyframes animacion {
    25% {
        content: ""
    }
    50% {
        content: "."
    }
    75% {
        content: ".."
    }
    100% {
        content: "..."
    }
}
.instalacion_Flex_Card {
    display: flex!important
}
.instalacion_Card {
    align-items: center;
    padding: .8rem;
    border-radius: .3em;
    background: var(--modulo-bg);
    position: relative;
    overflow: hidden;
    display: none
}
.instalacion_waves {
    position: absolute;
    bottom: 0;
    width: 0;
    left: 0;
    height: 3px;
    background: var(--button-bg);
    animation: water 2s infinite linear
}
@keyframes water {
    from {
        width: 0%
    }
    to {
        width: 100%
    }
}
.instalacion_Card>li {
    list-style: none;
    margin: 0 .7em 0 .7em;
    position: relative;
    z-index: var(--capa100)
}
.instalacion_Question {
    display: inline-flex;
    width: 29px;
    height: 30px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    background: #ff8c00;
    font-size: 18px;
    color: #fff;
    font-weight: 500!important;
    user-select: none
}
.instalacion_info {
    width: 280px;
    height: 0;
    background: var(--modulo-bg);
    border-radius: 5px;
    overflow: hidden;
    transition: .5s height
}
.instalacion_info>header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    background-color: var(--header-modulo);
    color: var(--color-texto);
    padding: 0 .8em 0 .8em;
    position: relative
}
.instalacion_info>header>div>button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    background: 0 0;
    color: var(--main-color-texto-oscuro)
}
.instalacion_info>header>div>button>span {
    vertical-align: middle;
    font-size: 17px;
}
.instalacion_text {
    margin: 1rem auto;
    width: 85%
}
.instalacion_text>div>div>h3 {
    margin: auto;
    font-size: 15px;
    color: var(--button-bg);
    font-weight: 500!important
}
.instalacion_text>div>div>p {
    margin: 10px 0;
    color: var(--color-texto)
}
.instalacion_spinner {
    margin-right: .35em;
    vertical-align: middle;
    font-size: 19px
}
.instalacion_height {
    height: initial!important
}
.instalacion_Black {
    background: rgba(0, 0, 0, .16)!important;
    height: 4px!important;
    bottom: unset!important;
    top: 0
}
.instalacion_li_hide {
    display: none
}
.instalacion_spiiner_movil {
    font-size: 20px;
    margin-left: -5px;
    margin-top: -2px;
    animation: rotacionIcon 1s infinite
}
@keyframes rotacionIcon {
    0% {
        transform: rotate(0)
    }
    50% {
        transform: rotate(180deg)
    }
    100% {
        transform: rotate(360deg)
    }
}
@media (max-width: 650px) {
    .instalacion_Bt_Oculta {
        display: inline-flex
    }
    .instalacion_Bt_Oculta>button {
        border: none;
        color: var(--button-bg);
        text-decoration: underline;
        cursor: pointer;
        background: 0 0;
        font-weight: 500!important;
        font-size: 14px
    }
    .instalacion_toggle {
        left: 0
    }
    .instalacion_Card {
        width: 42px;
        border-radius: 0;
        padding: 0;
        justify-content: center;
        height: 45px
    }
    .instalacion_li_hide {
        position: absolute;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer
    }
    .instalacion_Card>li {
        display: none
    }
    .instalacion_Body {
        right: unset;
        left: 0;
        bottom: 0
    }
}