
.newest-section {
    position: relative;

    .slider-container {
        position: relative;

        .slider-arrows {
            display: flex;
            align-items: center;
            justify-content: space-between;

            .arrow-btn {
                position: absolute;
                z-index: 999;

                &.btn-prev {
                    top: 28%;
                    left: -16px;
                }

                &.btn-next {
                    top: 28%;
                    right: -16px;
                }
            }
        }

        .product-slider {
            margin: 0 -8px;
            padding-bottom: 16px;

            .product-block {
                margin: 0 8px;
            }
        }
    }

    .progress {
        display: block;
        width: 100%;
        height: 2px;
        overflow: hidden;
        background-color: $lightest-gray;
        background-image: linear-gradient(to right, $accent-1, $accent-1);
        background-repeat: no-repeat;
        background-size: 0 100%;
        transition: background-size .4s ease-in-out;
    }
}