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

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

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

.slider-wrapper {
    position: relative;
}

.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: 250px;
    overflow-x: auto;
    object-fit: cover;
    border-radius: 8px;
    margin: 0;
}

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

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

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

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

.container .slider-scrollbar {
    height: 24px;
    width: 70%;
    display: flex;
    align-items: center;
    margin: 5% 15% 0 15%;
}

.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;
}
