
/*.image-slider-container{*/
/*    border: solid deeppink 2px;*/
/*    !*padding: 2px;*!*/
/*}*/

/*.image-slider-container-inner{*/
/*    border: solid red 1px;*/
/*}*/

/*.image-slider-item{*/
/*    border: solid black 1px;*/

/*}*/

/*.image-slider-item *{*/
/*    !*background-color: orangered;*!*/
/*    border: solid green 1px;*/
/*}*/
/*----------------------------------------------------------------------------------------------------------------*/

.image-slider-container {
    /*display: flex;*/ /* CANNOT USE BECAUSE OF THE ANIMATION */
    background: white;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
    height: 145px;
    margin: auto;
    overflow: hidden;
    position: relative;
    max-width: 1000px;
}

/*--------------------------------------------*/
.image-slider-container-inner{
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
}
/*---------------*/
@media screen and (max-width: 1100px) {
    .image-slider-container{
        width: 80vw;
    }
}
/*---------------*/

.image-slider-container::before, .image-slider-container::after{
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
    height: 145px;
    content: "";
    position: absolute;
    width: 100px;
    z-index: 2;
}
.image-slider-container::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}
.image-slider-container::before {
    left: 0;
    top: 0;
}


/*----*/
.image-slider-item{
    /*width: 180px;*/
    width: 11.25em;
    flex-shrink: 0;
    margin: 0 2em;
    padding: 0.5em;
    display: flex;
}
.image-slider-item{
    justify-content: center;
    align-content: center;
}
.image-slider-item *{
    height: 100%;
    width: 100%;
    object-fit: contain;
}

/*--------------------------------------------------------------------------------------------------------------------*/

@keyframes my_animation {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/*.image-slider-container-inner:hover {*/
/*    animation-play-state: paused;*/
/*}*/

