.buy-button {
    padding: 30px 0;
    width: 100%;
    color: white;
    background: rgb(50, 222, 132);
    background: linear-gradient(90deg, rgba(50, 222, 132, 1) 0%, rgba(0, 171, 102, 1) 100%);
    border: none;
    font-size: x-large;
    font-weight: bold;
    position: relative;
    text-align: right;
    cursor: pointer;
    border-radius: 20px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}


.see-cart-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ff2a2a;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    text-decoration: none;
    transition-duration: 200ms;
}

.box-style {
    background-color: white;
    padding: 10px 20px;
    border-radius: 10px;
}

.part {
    /*background-color: coral;*/
    padding: 1px;
    border-bottom: 1px #cbcbcb solid;
    position: relative;
}

.part .part-details {
    position: absolute;
    left: 0;
    top: 20px;
}

.part .part-details i {
    font-size: xx-large;
    user-select: none;
}

.part .part-details .dwiTrue {
    color: #008cff;
    cursor: pointer;
}

.part .part-details .dwiFalse {
    color: rgba(0, 0, 0, 0.16);
    cursor: not-allowed;
}

.part .part-index {
    background-color: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 10px;
    margin-left: 10px;
    user-select: none;
}