.cut-cost-increase-productivity-wrapper {
    text-align: center;
    overflow: hidden;
    height: 50vh;
    width: 99vw;
    padding: 5% 30px;
    position: relative;
}

.cut-cost-increase-productivity-container{
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}
.cut-cost-increase-productivity-container > div {
    padding: 4px 4px 4px 50px;
    border-radius: 16px;
    gap: 10px;
}
.cut-cost-increase-productivity-container .text{
    margin: 0;
    padding: 16px 0;
}
.cut-cost-increase-productivity-container .text.start{
    color: white;
    padding-right: 16px;
}
.cut-cost-increase-productivity-container .text.end {
    padding-right: 50px;
    padding-left: 20px;
    background: white;
    color: #26d2de;
    border-radius: 12px;
}

.cut-cost-increase-productivity-wrapper .description-container {
    margin: 0 auto;
    width: 45%;
    color: darkgray;
    margin-top: 16px;
}

.planet-spinner-1 {
    position: absolute;
    right: -200px;
    top: -62px;
    width: 400px;
    animation: spin 5s ease-in-out infinite;
}

.tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    overflow: auto;
    flex-wrap: wrap;
}

.tabs-title {
    white-space: nowrap;
}

.tabs-title>a {
    font-size: 20px;
    color: #496376;
    border: thin solid #496376;
    border-radius: 4px;
}

.tabs-title>a:focus, .tabs-title>a[aria-selected=true] {
    background-color: #86ff5b;
    background-image: linear-gradient(220deg, #86ff5b 0%, #15b7ce 74%);
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 4px;
}

.product-name-text{
    background: -webkit-linear-gradient(#86ff5b, #15b7ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bolder;
}

.product-detail-container p {
    margin: 0!important;
    color: darkgray;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media only screen and (max-width: 768px) {
    .tabs {
        padding: 10px;
    }

    .cut-cost-increase-productivity-wrapper .description-container {
        width: 80%;
    }
}

@media only screen and (max-width: 430px) {
    .tabs-title {
        width: 100%;
    }

    .tabs-title>a {
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
