.email-discount-banner .container {
    background-color: rgb(240, 247, 254);
    /*padding: 20px;*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 25px auto;
    padding-left: 0;
}

.arrow {
    position: relative;
    width: 160px;
    height: 110px;
    /*margin: 50px;*/
    background-color: orange;
    color: white;
    text-align: center;
}
.arrow:before, .arrow:after {
    content:" ";
    position: absolute;
    border-top: 55px solid transparent;
    border-bottom: 55px solid transparent;
}
.arrow:before {
    left: 100%;
    height: 110px;
    border-left: 50px solid orange;
}

/*.arrow {*/
/*    width: 100px;*/
/*    height: 55px;*/
/*    position: relative;*/
/*    background-color: orange;*/
/*    color: white;*/
/*    text-align: center;*/
/*    line-height: 55px;*/
/*    transform: rotate(30deg);*/
/*    margin-right: 20px;*/
/*}*/

/*.arrow::before,*/
/*.arrow::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    width: 0;*/
/*    border-left: 50px solid transparent;*/
/*    border-right: 50px solid transparent;*/
/*}*/

/*.arrow::before {*/
/*    bottom: 100%;*/
/*    border-bottom: 28px solid orange;*/
/*}*/

/*.arrow::after {*/
/*    top: 100%;*/
/*    width: 0;*/
/*    border-top: 28px solid orange;*/
/*}*/

.text {
    flex: 1;
    text-align: center;
}

.right-content {
    color: orange;
    border: 2px solid orange;
    padding: 10px;
}


.wrapper {
    /*width: 330px;*/
    /*font-family: 'Helvetica';*/
    /*font-size: 14px;*/
}

.StepProgress{
    padding-left: 0;
}

@media screen and (min-width: 768px) {
    .StepProgress {
        position: relative;
        padding-left: 45px;
        list-style: none;
    }
    .StepProgress::before {
        display: inline-block;
        content: '';
        position: absolute;
        top: 0;
        left: 15px;
        width: 10px;
        height: 100%;
    }
    .StepProgress-item {
        position: relative;
        counter-increment: list;
    }
    .StepProgress-item:not(:last-child) {
        padding-bottom: 20px;
    }
    .StepProgress-item::before {
        display: inline-block;
        content: '';
        position: absolute;
        left: -30px;
        height: 100%;
        width: 10px;
        border-left: 2px solid #CCC;
    }
    .StepProgress-item::after {
        content: '';
        display: inline-block;
        position: absolute;
        top: 0;
        left: -41px;
        width: 25px;
        height: 25px;
        border: 2px solid #CCC;
        border-radius: 50%;
        background-color: #FFF;
    }
    .StepProgress-item.is-done::before {
        border-left: 2px solid #F05A23;
    }
    .StepProgress-item.is-done::after {
        content: "✔";
        font-size: 16px;
        color: #FFF;
        text-align: center;
        border: 2px solid #F05A23;
        background-color: #F05A23;
    }
    .StepProgress-item.current::before {
        border-left: 2px solid #F05A23;
    }
    .StepProgress-item.current::after {
        /*content: counter(list);*/
        padding-top: 1px;
        width: 25px;
        height: 25px;
        top: -4px;
        left: -41px;
        font-size: 14px;
        text-align: center;
        color: #F05A23;
        border: 2px solid #F05A23;
        background-color: white;
    }
    .StepProgress strong {
        display: block;
    }
}

.slider5{
    margin-top: 20px;
}

.owl-prev, .owl-next {
    width: 15px;
    height: 100px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: block !important;
    border:0px solid black;
}

.owl-prev { left: -20px; }
.owl-next { right: -20px; }
.owl-prev i, .owl-next i {color: black;}

.owl-carousel .owl-prev:hover, .owl-next:hover {
    background-color: #fff !important;
    color: #fff;
}

@media screen and (min-width: 992px) {
    .right-column{
        border-left: 2px solid lightgray;
    }
}

.no-summary-items{
    display: none;
}

.order-summary-item{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;


    flex-wrap: wrap;
}

.prod-title-main{
    margin-bottom: 0;
}

.order-summary-item-product {
    display: flex;  /* Use flex for layout */
    align-items: center;
    justify-content: space-between;  /* Space between icon and the rest */
    width: 100%;
    margin-bottom: 10px;
}

.delIcon {
    margin-right: auto;  /* Push the icon to the left */
}

.selected-package-img {
    margin-right: 10px; /* Add gap between the image and the title */
}

@media screen and (min-width: 480px) {
    .order-summary-item{
        display: flex;
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        flex-wrap: unset;
    }

    .order-summary-item-product {
        display: flex;  /* Use flex for layout */
        align-items: center;
        justify-content: space-between;  /* Space between icon and the rest */
        width: auto;
        margin-bottom: 0;
    }

    .prod-title-main{
        align-content: end;
    }

    .delIcon {
        margin-right: 15px;
    }
}

@media screen and (min-width: 768px) {
    .order-summary-item-product {
        width: 60%;
    }
}

@media screen and (min-width: 992px) {
    .order-summary-item-product {
        width: 40%;
    }
}

.order-summary-item .delIcon {
    visibility: visible;
    width: 5px;
    color: lightgrey;
    cursor: pointer;
}

@media screen and (min-width: 1200px) {
    .order-summary-item-product{
        width: 50%;
    }

    .order-summary-item .delIcon {
        margin-left: 5px;
    }
}

.quantity-price {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: auto;
    margin-right: 5px;
}

.quantity-price .quantity {
    border-radius: 5.873px;
    border: 1px solid #a1abb6;
    display: inline-block;
}

.quantity span,
.quantity button {
    background-color: transparent;
    border: none;
    width: 35px;
    display: inline-block;
    text-align: center;
    height: 34px;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    color: inherit;
    padding: 0;
}

.quantity span {
    border-right: 1px solid rgba(161, 171, 182, 1);
    border-left: 1px solid rgba(161, 171, 182, 1);
    font-size: 20px;
    height: 28px;
    line-height: 1.4;
}

.quantity-price .price {
    margin-left: 10px;
}

.quantity-price .price .actual-price {
    color: #707a80;
    font-size: 14px;
    font-weight: 500;
    text-decoration: line-through;
}

.quantity-price .price .discounted-price {
    color: #111;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    text-transform: capitalize;
}

.quantity-price .quantity-selector{
    border: 1px solid #A1ABB6;
    border-radius: 8px;
    height: 45px;
    /* width: 158px; */
    display: flex;
    justify-content: center;
    align-items: center;
}
.quantity-price .quantity-selector > *{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    /* height: 45px; */
}
.quantity-price .quantity-selector button{
    width: 53px;
    background: transparent;
    color: #000;
}
.quantity-price .quantity-selector span{
    width: 52px;
    text-align: center;
    border-left: 1px solid #A1ABB6;
    border-right: 1px solid #A1ABB6;
    height: 80%;
}

.button:not(.button--secondary) {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 0;
    padding: 1rem;
    min-width: unset;
    width: 100%;
    max-width: 350px;
    text-align: center;
    cursor: pointer;
    font: inherit;
    font-size: 2rem;
    line-height: 3rem;
    font-weight: 600;
    text-decoration: none;
    color: white;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(140.12deg, #54dd30 4.07%, #459f49 97.48%);
    box-shadow: 0 4px 10px #00000042;
    border-radius: 8.8rem;
    margin-top: 25px;
}
.button:not(.button--secondary):hover {
    background: rgba(36, 133, 121, 1);
}

.small-summary{
    display: none;
}

@media (min-width: 992px) {
    .big-summary {
        display: none;
    }
    .small-summary{
        display: block;
    }
}

.sub-total{
    width: 75px;
    text-align: end;
}