.shop {
    background-color: #1b0f23;
    padding: 1vw;
    margin-top: 30px;
}

.shop_container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    place-content: center;
}

.shop_container-itm {
    background: #22162e;
    box-shadow: 0 0 #fff;
    padding: 20px 0;

}

.shop_container-itm figure {
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 3px 8px #1b0f2363;
    ;
}

.shop_container-itm figure img {
    width: 70%;
}

.shop_container-itm-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.shop_container-itm-footer h4 {
    color: #fff;
    font-weight: 500;
    margin: 16px 0;
}

.shop_container-itm-footer p {
    font-weight: bold;
    font-size: 16 px;
    color: #fff;
    margin: 0
}

.rs-container .rs-bg {
    background-color: #0d0711;
    border: 1px solid #0d0711;
}

.rs-container .rs-selected {
    background-color: #6b54b6;
    border: 1px solid #6b54b6;
    border-radius: 0px;
}

.rs-container .rs-pointer::after,
.rs-container .rs-pointer::before {
    background: transparent;
}

.rs-pointer {
    transform: skewX(45deg);
}

.rs-tooltip {
    transform: skewX(-45deg);
    top: -34px;
    left: 0px;

}

.rs-container .rs-pointer {
    width: 10px;
    height: 24px;
    background-color: #6b54b6;
    border: 1px solid #6b54b6;
    box-shadow: inset 0 0 1px #6b54b6, inset 0 1px 6px #6b54b6, 1px 1px 4px rgb(0 0 0 / 10%);
    border-radius: 0px;
}

.rs-container .rs-scale span::before {
    background-color: transparent
}

.rs-container .rs-scale span ins {
    color: transparent;
}

.shop_filter-price-title {
    display: flex;
    column-gap: 16px;
}

.shop_filter-price-title-line {
    height: 40px;
    width: 4px;
    background: #6b54b6;
}

.shop_filter-price-title-input {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.shop_filter-price-button {
    width: 100%;
}

.shop_filter-price-button button {
    padding: 8px 16px;
    color: #fff;
    background: #6b54b6;
}

.rs-tooltip {
    background: transparent;
    border: 0;
    color: #fff;
    font-weight: bold;
    margin-left: -10px;
}

.shop_filter-price {
    width: 100%;
    display: grid;
    row-gap: 20px
}

.shop_filter-price-button {
    display: grid;
}

.shop_filter-price-container,
.shop_categories {
    background: #22162e;
    padding: 24px 8px;
}

.shop_filter-price-button button {
    font-size: 16px;
    justify-self: self-end;
    text-transform: uppercase;
}

.shop_filter-price-title {
    display: flex;
    align-items: center;
}

.shop_filter-price-title h3 {
    color: #fff;
    font-size: 24px;
    text-transform: uppercase;
}

.shop_filter-price-range {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    column-gap: 8px;

}

.shop_filter-price-range p {
    color: #fff;
}

.shop_categories-position {
    padding: 8px 20px;
}

.shop_categories-position p {
    font-weight: bold;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
}

/* Modal */
.modal-header,
.modal-content {
    background: #22162e;
}

.modal-content {
    border: 0;
}

.modal-header h5 {
    text-transform: uppercase;
}

.modal-title {
    font-size: 20px;
}

.modal-header-line {
    width: 4px;
    height: 31px;
    background: #6b54b6;
}

.modal_information-itm {
    border: 1px solid #6b54b6;
    width: 60%;
    margin: 0 auto;
    border-radius: 1px;
}

.modal_information-itm .modal_information-p {
    font-size: 16px;
    color: #fff;
    text-align: center;
    font-weight: bold;

}

.modal_information-bold {
    font-weight: 500;
}

.modal_information {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 30px 0;
    row-gap: 20px;
}

.modal_medios-itm figure,
.modal_medios-itm figure img {
    margin: 0;
    width: 88px;
}

.modal_medios-itm figure {
    margin-top: 18px;
}

.modal_medios-itm,
.modal_medios-itm figure {
    align-items: center;
    display: flex;
    column-gap: 8px
}

.modal_medios-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal_medios-itm input {
    border-radius: 50%;
}

.modal_medios {
    width: 60%;
    margin: 0 auto;
    margin-top: 30px;
}

.control {
    font-family: arial;
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 5px;
    padding-top: 3px;
    cursor: pointer;
    font-size: 16px;
}

.control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.control_indicator {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background: transparent;
    border: 0px solid #000000;
    border-radius: 50%;
    border: 2px solid #6b54b6;
}

.control:hover input~.control_indicator,
.control input:focus~.control_indicator {
    background: #cccccc;
}

.control input:checked~.control_indicator {
    background: #583bb0;
}

.control:hover input:not([disabled]):checked~.control_indicator,
.control input:checked:focus~.control_indicator {
    background: #583bb0;
}

.control input:disabled~.control_indicator {
    background: #e6e6e6;
    opacity: 0.6;
    pointer-events: none;
}

.control_indicator:after {
    box-sizing: unset;
    content: '';
    position: absolute;
    display: none;
}

.control input:checked~.control_indicator:after {
    display: block;
}

.control-checkbox .control_indicator:after {
    left: 8px;
    top: 4px;
    width: 3px;
    height: 8px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.control-checkbox input:disabled~.control_indicator:after {
    border-color: #7b7b7b;
}

.control-checkbox .control_indicator::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 4.5rem;
    height: 4.5rem;
    margin-left: -1.3rem;
    margin-top: -1.3rem;
    background: #2aa1c0;
    border-radius: 3rem;
    opacity: 0.6;
    z-index: 99999;
    transform: scale(0);
}

@keyframes s-ripple {
    0% {
        transform: scale(0);
    }

    20% {
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

@keyframes s-ripple-dup {
    0% {
        transform: scale(0);
    }

    30% {
        transform: scale(1);
    }

    60% {
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

.control-checkbox input+.control_indicator::before {
    animation: s-ripple 250ms ease-out;
}

.control-checkbox input:checked+.control_indicator::before {
    animation-name: s-ripple-dup;
}

.modal_medios h5 {
    color: #fff;
    font-weight: 600;
    font-size: 16px
}

.modal-buttons {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin: 0 auto;
    column-gap: 20px;
}

.modal-buttons button {
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 8px 24px;
}

.modal-buttons_cancel {
    border: transparent;
    background: transparent;
}

.modal-buttons_next {
    background: #6b54b6;

}

.modal-result_header {
    width: 60%;
    margin: 0 auto;
    border: 1px solid #6b54b6;
    padding: 8px 0;
}

.modal-result_count-container {
    width: 60%;
    margin: 0 auto;
}

.modal-result_count {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-align: center;
}

.modal-result_header {
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    font-size: 24px;
}


@media screen and (max-width: 1440px) {
    .shop {
        padding: 25px 2vw;
        margin-top: 0;
    }
}

@media screen and (max-width: 1200px) {
    .shop {
        padding: 20px 3vw;
        margin-top: 0;
    }
}

@media screen and (max-width:1000px) {
    .shop {
        padding: 20px 1vw;
        margin-top: 0;
    }

    .shop_container {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop_filter-price-container {
        max-width: 280px;
    }

    .shop_categories {
        max-width: 280px;
    }
}



@media screen and (max-width:425px) {
    .shop {
        grid-template-columns: 1fr;
    }

    .shop_filter {
        grid-area: 1;

    }

    .shop_filter-price {
        justify-content: center;
    }

    .shop_filter-price-container {
        justify-self: center;
        width: 126%;
    }

    .shop_categories {
        justify-self: center;
        width: 126%;
    }

    .modal_information-itm,
    .modal_medios,
    .modal-buttons {
        width: 90%;
    }

    .modal_information {
        justify-content: center;
    }

    .modal_medios-itm figure,
    .modal_medios-itm figure img {
        margin: 0;
        width: 80px;
    }

    .modal_medios-itm figure {
        margin-top: 18px;
    }
}

/* Propios */

.shop_categories-position p.shop-busqueda.activo {
    color: #fe1169;
}

.shop_categories-position p.shop-busqueda:hover {
    color: #ee72a0;
}



.shop-compra-directa {
    grid-column: 1/3;
    background: #22162e;
    padding: 20px;
}

@media screen and (max-width:425px) {
    .shop-compra-directa {
        grid-column: 1;
    }

    .show-compra-token {
        width: 40%;
    }
}

.show-compra-contenedor {
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin-top: 20px;
}

.show-compra-token {
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: bold;
    color: white;
    flex-direction: column;
    font-size: 12px;
    justify-content: center;
    width: 20%;
}

.shop-valor-compra {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
    color: white;
    font-family: var(--trn-font-bebas);
    letter-spacing: 3px;
    font-weight: 400;
}

@media screen and (max-width:768px) {
    .shop_container {
        grid-template-columns: 1fr;
    }

    .shop_container-itm {
        display: flex;
        padding: 15px 10px;
    }

    .shop_container-itm figure {
        width: 35%;
    }

    .shop_container-itm-footer {
        width: 100%;
        align-items: start;
        position: relative;
        justify-content: start;
    }

    .shop_container-itm-footer h4 {
        margin-top: 0;
    }



    .shop_container-itm-footer .button_general {
        margin: 0;
        position: absolute;
        right: 10px;
        bottom: 2px;
    }

    .show-compra-token {
        display: none;
    }

    .shop-valor-compra {
        width: 100%;
    }
}



.shop-valor-compra-main {
    width: 100%;
}

.shop-valor-compra-group {
    width: 100%;
    gap: 15px;
    display: flex;
    align-items: center;
}

.show-valor-compra-input,
.show-valor-compra-input:focus,
.show-valor-compra-input:active {
    outline: none;
    width: 100%;
    height: 40px;
    background: #1b0f23;
    border: 0;
    color: white;
}

.shop-btn-recarga {
    background: #6b54b6;
    height: 40px;
    padding: 0 20px;
    color: white;
    font-weight: bold;
}

.shop-btn-recarga:active,
.shop-btn-recarga:focus {
    outline: none;
}

button#btnRecarga:disabled {
    background: #bfbfbf;
    color: #7b7b7b;
}

.saldoPromocional {
    position: absolute;
    bottom: 0;
    background: #4be161;
    width: calc(70% - 10px);
    color: black;
    font-weight: bold;
    padding-left: 10px;
    letter-spacing: 2px;
    font-size: 14px;
}

.saldoPromocionalPhone{
    display: none;
}
@media screen and (max-width:768px) {
    .saldoPromocional {
        display: none;
    }

    .saldoPromocionalPhone{
        display: block;
        margin-top: -20px;
    }
}

.tienda-horizontal{
    position: fixed;
    left: 0;
    top: 50%;
    background: #e93477;
    z-index: 1000;
    color: white;
    padding: 15px 3px;
    transform: rotate(180deg);
    writing-mode: vertical-lr;
    font-weight: bold;
    font-size: 20px;
}

@media(max-width:991px){
    .tienda-horizontal{
        padding: 15px 3px 35px 3px;
    }
}
.tienda-horizontal-pulse-contenedor{
    position: relative;
    padding-top: 8px;
}

.tienda-horizontal-pulse-contenedor .bgpulse,
.tienda-horizontal-pulse-contenedor .buttonpulse {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    top: -10px;
    right: 5px;
}



.tienda-horizontal-pulse-contenedor .bgpulse {
  animation: pulsetienda 1.2s ease infinite;
  background: #f4f4f4;
}

.tienda-horizontal-pulse-contenedor .buttonpulse {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 99;
  border: none;
  background:#9ce79a ;
  background-size: 18px;
  cursor: pointer;
  outline: none;
}


@keyframes pulsetienda {
  0% {
    transform: scale(1, 1);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}