.stores-list__container{
    width: 100%;
    max-width: 20rem;
    overflow: hidden;
    padding-top: 1.5rem;
    margin: 0 auto;
}
.stores-list__track{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: .625rem;
    transition: transform 0.4s ease;
    will-change: transform;
    padding: 0;
}
.stores-list__button{
    background-color: #fff;
    border: 2px solid #EFEFEF;
    width: 6.25rem;
    height: 6.25rem;
    min-width: 6.25rem;
    min-height: 6.25rem;
    border-radius: 0.5rem;
    text-decoration: none;
    padding:.5rem;
    cursor: pointer;
    overflow: hidden;
    flex-shrink: 0;
    transition: all 150ms ease;
}
.stores-list__button:hover{
    border-width:0;
    transform: scale(1.01);
    box-shadow: 1px 3px 8px 0 rgba(0, 0, 0, 0.10);
}
.stores-list__controls{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2.5rem;
}
.stores-controls__arrows{
    display: flex;
    width: 5.5rem;
    background-color: #F6F6F6;
    border-radius: 12.5rem;
}
.stores-controls__button{
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.stores-controls__button.prev{
    border-right: 1px solid #D8DADA;
}
.nav__inactive{
    fill: #949C9F;
}
.nav__active{
    fill: #D50057;
    transition: fill 400ms ease;
}
.stores-controls__button.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
.stores-controls__button.disabled svg path {
  fill: #aaa;
  stroke: #aaa;
}
.stores-controls__position{
    width: auto;
    height: auto;
    display: flex;
    gap: .5rem;
    justify-content: center;
}
.controls-position__item{
    width: .625rem;
    height: .625rem;
    border-radius: 1.5rem;
    background-color: #D8DADA;
    cursor: pointer;
    transition: background-color 400ms ease;
}
.controls-position__item.active{
    background-color: #D50057;
}
/*** Modales ***/
.stores-modal__container{
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    padding: 1.5rem;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.96);
}
.stores-modal__content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    padding: 1.5rem;
    border-radius: 1rem;
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #fff;
    box-shadow: 1px 3px 12px 0 rgba(0, 0, 0, 0.10);
}
.modal-close{
    font-size: 2.5rem;
    font-weight: 300;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    line-height: 1;
}
.modal-close:hover,
.modal-close:focus {
  color: #D50057 !important;
  text-decoration: none;
  cursor: pointer;
}
.stores-modal__content{
    border-color:#aaa;
}
.modal-close{
    color: #aaa;
}
.modal-amount__title{
    font-weight: 400;
    margin-bottom: 3rem;
}
.modal-amounts__container{
    display: flex;
    flex-direction: column;
    gap: .75rem;
    width: 100%;
    text-align: center;
}
.modal-amount__number{
    width: 100%;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    color: #252A2D;
}
.modal-amount__number.spacing{
    padding-top: 1.5rem;
    border-top: 1px;
    border-style: dashed;
}
.modal-amount__concept.spacing{
    padding-bottom: 1.5rem;
    border-bottom: 1px;
    border-style: dashed;
}
.modal-amount__number.spacing, .modal-amount__concept.spacing{
    border-color:#aaa;
}
.modal-amount__concept.first{
    padding-bottom: 1.5rem;
}
.modal-amount__number.last{
    padding-top: 1.5rem;
}
.modal-amount__concept{
    width: 100%;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    color: #D50057;
}
.amount-concept__window{
    text-transform: none;
    font-size: 1rem;
    font-weight: 400;
    font-style: italic;
    color: #868686;
}
.modal-amount__disclaimer{
    font-size: .875rem;
    font-style: italic;
    font-weight: 400;
    padding-top: 2rem;
}
/*** Responsive ***/
@media screen and (min-width: 674px){
    .stores-list__container{
        max-width: 40.625rem;
    }
}
@media screen and (min-width: 64rem){
    .stores-list__track{
        padding: .5rem;
    }
    .stores-list__container{
        max-width: 37.5rem;
    }
    .stores-modal__content{
        padding: 3rem;
        max-width: 27.5rem;
        max-height: 40rem;
    }
    .stores-list__track{
        gap: .75rem;
    }
    .stores-list__button{
        width: 8.5rem;
        height: 8.5rem;
        min-width: 8.5rem;
        min-height: 8.5rem;
        padding:.75rem;
    }
    .modal-close{
        font-size: 1.75rem;
    }
}
@media screen and (min-width: 95.6875rem){
    .stores-list__container{
        max-width: 41.25rem;
    }
    .stores-list__button{
        width: 152px;
        height: 152px;
        min-width: 152px;
        min-height: 152px;
    }
}