.content-container {
    position: relative;
    overflow: hidden;
    padding-left: 55px;
    padding-right: 55px;
}

.stripe-container {
    width: 40px;
    height: 4080px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    position: absolute;
    top: 0;
}

.stripe-container.left {
    left: 15px;
}
.stripe-container.right {
    right: 15px;
}

.content {
    flex: 1;
    margin: 0 15px;
}

.stripe {
    width: 10px;
    border-radius: 3px;
    margin: 0 5px 20px;
}

.stripe.green {
    background: #5DFB94;
}
.stripe.green.gradient-fade-top {
    background: rgb(93,251,148);
    background: linear-gradient(180deg, rgba(93,251,148,0) 0px, rgba(93,251,148,0.25) 20px, rgba(93,251,148,0.5) 70px, rgba(93,251,148,1) 150px);
}

.stripe.yellow {
    background: #FDE74D;
}
.stripe.yellow.gradient-fade-top {
    background: rgb(253,231,77);
    background: linear-gradient(180deg, rgba(253,231,77,0) 0px, rgba(253,231,77,0.25) 20px, rgba(253,231,77,0.5) 70px, rgba(253,231,77,1) 150px);
}

.stripe.cyan {
    background: #16EFE0;
}

.stripe.red {
    background: #E72479;
}
.stripe.red.gradient-fade-top {
    background: rgb(231,36,121);
    background: linear-gradient(180deg, rgba(231,36,121,0) 0px, rgba(231,36,121,0.25) 20px, rgba(231,36,121,0.5) 70px, rgba(231,36,121,1) 150px);
}

.stripe.lime {
    background: #BAF93A;
}

.stripe.orange {
    background: #FCAC27;
}
.stripe.orange.gradient-fade-top {
    background: rgb(252,172,39);
    background: linear-gradient(180deg, rgba(252,172,39,0) 0px, rgba(252,172,39,0.25) 20px, rgba(252,172,39,0.5) 70px, rgba(252,172,39,1) 150px);
}

.stripe.blue {
    background: #09A8D9;
}

@media (max-width:767px) {
    .content-container {
        padding: 0 32px;
    }

    .stripe-container {
        width: 22px;
    }
    
    .stripe {
        width: 6px;
        border-radius: 2px;
        margin: 0 2.5px 15px;
    }

    .stripe-container.left {
        left: 5px;
    }
    .stripe-container.right {
        right: 5px;
    }

    .content {
        margin: 0 5px;
    }
}