/* Progressbar-design */
.checkoutprogressbar-section {
    padding: 50px 0;
    padding-bottom: 40px;
}
.progressbar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(255, 153, 0);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 20px 30px;
    padding-bottom: 40px;
    border-radius: 5px;
    position: relative;
}
.progressbar-content::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 20px 30px;
    border-radius: 5px;
    transform: rotate(3deg);
    margin: 0px 5px;
    z-index: -1;
}
.progressbar-content::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 20px 30px;
    border-radius: 5px;
    transform: rotate(357deg);
    margin: 0px 5px;
    z-index: -1;
}
.selectprogressbar,
.cartprogressbar,
.checkoutprogressbar,
.Paymentprogressbar {
    background-color: #e1e1e1;
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    position: relative;
}
.progressbar-title {
    position: relative;
}
.progressbar-title p {
    position: absolute;
    top: 100%;
    margin-bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 3px;
    font-size: 15px;
    color: #181818;
    font-weight: 600;
}
.selectprogressbar span svg,
.cartprogressbar span svg,
.checkoutprogressbar span svg,
.Paymentprogressbar span svg {
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #404040;
}

.activeprogressbar {
    background-color: #181818;
}
.activeprogressbar span svg {
    color: #fff;
}
.stright-line {
    background-color: #e1e1e1;
    height: 3px;
    width: 100px;
}
.activestright-line {
    background-color: #181818;
}
/* Progressbar-design */

/* Responsive Design */
@media only screen and (max-width: 600px) {
    .checkoutprogressbar-section {
        padding: 30px 0;
        padding-bottom: 20px;
    }
    .progressbar-content {
        padding: 20px 20px;
        padding-bottom: 40px;
    }
    .progressbar-title p {
        font-size: 13px;
    }
}
@media only screen and (min-width: 600px) {
    .checkoutprogressbar-section {
        padding: 40px 0;
        padding-bottom: 30px;
    }
}
@media only screen and (min-width: 768px) {
    .checkoutprogressbar-section {
        padding: 45px 0;
        padding-bottom: 35px;
    }
}
@media only screen and (min-width: 992px) {
    .checkoutprogressbar-section {
        padding: 50px 0;
        padding-bottom: 40px;
    }
}
