* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    font-family: "Proxima Nova", Sans-serif;
    font-weight: 300;
    min-height: 100vh;
    margin-top: 50px;
    overflow: hidden;
}

.container {
    max-width: 100%;
    width: 100%;
}

.slider-wrapper {
    position: relative;
}

.slider-wrapper .slide-button {
    position: fixed;
    height: 50px;
    width: 50px;
    color: #000;
    background: #fff;
    font-size: 2.2rem;
    cursor: pointer;
    border: solid 1px #000;
    border-radius: 3px;
    top: 0%;

    transition: all 300ms;
}

.slider-wrapper .slide-button:hover {
    background: #4DBCCC;
    color: #fff;
    border-color: #4DBCCC;
}

.slider-wrapper .slide-button#prev-slide {
    right: 150px;
}

.slider-wrapper .slide-button#next-slide {
    right: 80px;
}

.slider-wrapper .image-list {
    display: grid;
    gap: 20px;
    font-size: 0;
    overflow-x: auto;
    scrollbar-width: none;
    grid-template-columns: repeat(14, 1fr);
}

.slider-wrapper .image-list .image-item {
    width: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.slider-wrapper .image-list2 .vacio {
    width: 430px;
}

.slider-wrapper .amenitie-title{
    display: flex;
    position: sticky;
    background-color: #4DBCCC;
    width: 65%;
    height: 30px;
    justify-content: center;
    margin-left: 30%;
    top: 12%;
}

.slider-wrapper .amenitie-title p{
    color: #fff;
    font-size: 24px;
    font-weight: 300;
}

.slider-wrapper .amenitie-title img{
    width: 20px;
    margin: 0 10px;
}

.container .slider-scrollbar {
    height: 24px;
    width: 90%;
    display: flex;
    align-items: center;
    margin-top: 60px;
    margin-left: 5%;
}

.slider-scrollbar .scrollbar-track {
    height: 4px;
    width: 100%;
    background: #d9d9d9;
    position: relative;
    border-radius: 4px;
}

.slider-scrollbar:hover .scrollbar-track {
    height: 5px;
}

.slider-scrollbar .scrollbar-thumb {
    position: absolute;
    height: 100%;
    width: 25%;
    background: #4DBCCC;
    border-radius: 4px;
    cursor: grab;
}

.slider-scrollbar .scrollbar-thumb:active {
    cursor: grabbing;
    height: 5px;
    top: -1px;
}

.slider-scrollbar .scrollbar-thumb::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    bottom: -10px;
}

@media screen and (max-width:400px) {

    body {
        min-height: auto;
        margin: 0;
    }

    .slider-wrapper .slide-button {
        display: none;
    }
    
    .slider-wrapper .image-list .image-item {
        overflow-x: auto;
    }
    
    .slider-wrapper .image-list .image-item {
        width: 250px;
        margin: 0;
    }

    .slider-wrapper .amenitie-title {
        width: 55%;
        height: 20px;
        align-items: center;
        top: 15%;
        margin-left: 30%;
    }

    .slider-wrapper .amenitie-title img {
        width: 15px;
        margin: 0 5%;
    }

    .slider-wrapper .amenitie-title p {
        font-size: 13px;
    }
    
    .container .slider-scrollbar {
        width: 70%;
        margin: 5% 15% 0 15%;
    }
}