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

body {
    display: flex;
    justify-content: center;
    font-family: "Proxima Nova", Sans-serif;
    overflow: hidden;
}

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

.slider-wrapper {
    position: relative;
}

.slider-wrapper .image-list {
    display: grid;
    gap: 20px;
    font-size: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    grid-template-columns: repeat(4, 1fr);
    margin: 2% 0;
    padding: 0 5%;
}

.slider-wrapper .image-list .development {
    margin-right: 5%;
}


.slider-wrapper .image-list .development img {
    width: 260px;
    height: 174px;
    border-radius: 8px;
}

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

.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: #76bc21;
    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;
}
