.ssf-order-bump.style1 {
    background-color: white;
    border: 1px solid black;
}

.ssf-order-bump-wrapper {
    flex: 50%;
}

.ssf-order-bump.style1 {
    border: solid thin #000;
    border-radius: 8px;
    background-color: #fff;
    margin-bottom: 12px;
}

.ssf-order-bump.style1 .order-bump-header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border-bottom: solid thin #000;
}

.ssf-order-bump.style1 .order-bump-title {
    width: 80%;
    font-size: 1.3em;
    display: flex;
    align-items: center;
    font-weight: bold;
    line-height: 1.4em;
}

@media (max-width: 767px) {
    .ssf-order-bump.style1 .order-bump-title {
        width: 70%;
    }
}

.ssf-order-bump.style1 .order-bump-checkbox {
    width: 32%;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.ssf-order-bump.style1 .order-bump-body {
    display: flex;
    padding: 20px;
    align-items: flex-start;
}

.ssf-order-bump.style1 .order-bump-product {
    width: 50%;
}

.ssf-order-bump.style1 .order-bump-body .product-image {
    width: 120px;
    height: auto;
}

.ssf-order-bump.style1 .product-details {
    flex: 1; /* Set flex to 1 to take the remaining width */
    padding: 0px 20px;
}

.ssf-order-bump.style1 .product-price {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.ssf-order-bump.style1 .order-bump-content {
    /* Add your CSS rules for the .order-bump-content here */
}

@media (max-width: 767px) {
    .ssf-order-bump.style1 .order-bump-body {
        flex-direction: column;
    }
    .ssf-order-bump.style1 .order-bump-body .product-image {
        width: 100%;
        height: auto;
        margin-bottom: 1em;
    }
    .ssf-order-bump.style1 .product-details {
        padding: 0px;
    }
}

.ssf-order-bump .bump-arrow {
    animation: blink 1200ms infinite;
    height: 24px;
    width: auto;
    margin-right: 8px;  

}
@keyframes blink {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.order-bump-view-more-button {
    margin-top: 20px;
}

.order-bump-long-content {
    padding-top: 12px;
}

.order-bump-view-more-text,
.order-bump-view-less-text {
    display: inline-block;
    cursor: pointer;
    color: #666;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 4px 8px;
}

.order-bump-view-more-text:hover,
.order-bump-view-less-text:hover {
    color: #333;
    border-color: #333;
}

.order-bump-long-content,
.order-bump-view-less-text {
    display: none;
}