.deals-banner {
    display: flex;
    padding-top: 30px;

    /* Adjust the height as needed */
    /* height: 400px;  */
}
.slider {
    flex: 2; /* Takes 2/3 of the container */
    color: white;
    padding: 50px 20px;
    border-radius: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.content {
    max-width: 34%;
}
.content > h2 {
    font-size: calc(1.7rem + 1.5vw);
    font-weight: 600
}
.slider > img {
    max-width: 35vh;
    min-width: 380px;
}
.quick-filter {
    padding: calc(1.5rem * .5)
}
.boxes {
    flex: 1; /* Takes 1/3 of the container */
    display: flex;
    flex-direction: column;
}
.box {
    flex: 1; /* Each box takes half of the available space in .boxes */
    background-color: #2ecc71;
    color: white;
    padding: 20px;
    margin: 10px;
}
.boxes > .box:first-child {
    margin-top: 0;
    background-image: url('/images/shop/banner/banner-right-top.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 30px;
}
.boxes > .box:last-child {
    margin-bottom: 0;
    background-image: url('/images/shop/banner/banner-right-bottom.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 30px;
}
.categories {
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5rem;
}
.categories > a {
    padding: 10px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.categories > a > img {
    width: 4.5rem;
}
.brands-container {
    text-align: center;
    padding:  30px 0;
}
.brands-container > .brands {
    padding:  30px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: space-between;
}
.brands-container > .brands > .brand {
    flex: calc(100% / 7);
    display: flex;
    width: 100%;
    border-right: 1px solid #000;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}
.brands-container > .brands > .brand > img {
    max-width: 70px;
    max-height: 50px;
}
.brands-container > .brands > .brand:first-child {

}
.brands-container > .brands > .brand:last-child {
    border-right: 0;
}





.shop-content {
    display: flex;
    max-width: 1600px;
    margin: 20px auto;
    border-radius: 30px;
    padding: 1.2rem
}
.filters {
    flex: .65;
    background-color: #fff;
    border-radius: 30px;
    padding: 30px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
}

.products-container {
    flex: 3;
    padding: 20px;
}



 /* filters styling */
 .filter-group {
    margin-bottom: 25px;
}

.filter-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 16px
}

.filter-checkbox {
    margin-right: 5px;
}
.filter-group.category-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px
}

.filter-group.category-links > a {
    transition: color 0.5s ease;
    text-decoration: none;
    color: #000;
    font-size: 13px;

}
.filter-group.category-links > a:hover,
.filter-group.category-links > a:hover > span {
    color: #00398F;
}
.filter-group.category-links >a > span {
    transition: color 0.5s ease;

}
.filter-buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.filter-buttons> a {
    font-size: 13.5px
}
.filter-buttons> a.bg-orange {
    color: #fff
}

.category-link.active {
    color: #FF6E00 !important;
}



.product-breadcrumb, .inline-lists
{
    margin-left: -32px;
    /* padding-bottom: 35px; */
}
.product-breadcrumb li
{
    float: left;
    font-weight: 600;
    font-size: 13px;
    list-style-type: none;
    color: #A7A7A7;
}
.inline-lists li
{
    float: left;
    list-style-type: none;
}
.inline-lists li
{
    float: left;
    /* font-weight: 600; */
    font-size: 13px;
    list-style-type: none;
}
.product-breadcrumb li:after {
    content: '›';
    /* padding: 0 .0725em 0 .15em; */
    padding: 10px;
}
.inline-lists li:after {
    content: '';
    /* padding: 0 .0725em 0 .15em; */
    padding: 20px;
}
.product-breadcrumb li.active
{
    color: #f67810;
}
.product-breadcrumb li:last-child:after
{
    content: '';
}

.div-spacing {
    padding: 20px 0;
}
.div-spacing2 {
    padding: 10px 0;
}
.div-spacing4 {
    padding: 5px 0;
}
.div-spacing5 {
    margin: 5px 0;
}
.div-spacing3 {
    padding: 20px 13px;
}

.square-button {
    font-size: 24px;
    border-radius: 8px;
    padding: 0px 10px;
}

.square-button-text {
    /* font-size: 24px; */
    border-radius: 8px;
    padding: 10px 10px;
}

.cart-item-container-list
{
    /* border-top: 1.5px solid #fe6e00; */
    border-bottom: 1.5px solid #fe6e00;
    padding: 15px 0;
}
.cart-item-container-list-remove
{
    text-align: center;
    margin: auto;
}
.mt20 {
    margin-top: 20px;
}
.pb20 {
    padding-bottom: 20px;
}
.pb40 {
    padding-bottom: 40px;
}


.cart-summary {

    flex: .65;
    border-radius: 30px;
    padding: 30px;
    background-color: #f8f8f8;
}


#inputgroup {
    width: 100%;
    background-color: #F5F5F5;
    border: 0;
    border-radius: 25px;
    padding: 9px 20px;
    transition: width 0.4s ease;
    font-size: 13px;
}
.coupon-form > button {
    position: relative;
    background-color: #ff6e00;
    border: 0;
    border-radius: 30px;
    font-size: 12px;
    color: #fff;
    padding: 3px 20px;
    top: -31px;
    float: right;
    margin-right: 6px;
}
.text-right {
    text-align: right;
}
.text-left {
    text-align: left;
}
.cart-summary-title {
    padding-bottom: 30px;
}
.cart-summary-title > label
{
    font-size: 20px;
    font-weight: 500;
}
.cart-summary > .row > div {
    padding-bottom: 10px;
    font-size: 14px;
}
.btn-block {
    width: 100%;
    padding: 10px 0;
}

.feature-advantage {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    padding: 10px;
}

.mt15 {
    margin-top: 15px;
}
.text-black {
    color: #000;
}






.progressBar {
    display: flex;
    align-items: center;
    justify-content: center;
}

.progressBar-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    transform: scale(1.5);
    margin: 0 calc(1* 1.5em);
}

/* Styling for the lines between circles */
.line {
    width: 80px;
    height: 1.5px;
    border-radius: 4px;
    background: #c8c8c8;
    transition: background 0.5s linear;
}

/* Styling for the circles */
.circle {
    text-align: center;
    position: relative;
    width: 20px;
    height: 20px;
    margin: 0 10px 0 70px; /* Adjust the margin as needed */
    border-radius: 50%; /* To create a circle shape */
    border: 2px solid #c8c8c8;
    background-color: transparent; /* Initial circle color */
    transition: background-color 0.5s ease;
    font-size: 12px;
    font-weight: 200;
    vertical-align: middle;
    color: #848484;
}
.line-text {
    padding-right: 20px;
    color: #848484;
    font-size: 12px;
    font-weight: 200;
}
.circle::before {
    /*   content: "✔"; */
    color: white;
    position: absolute;
    top: 50%; /* Vertically center the tick mark */
    left: 50%; /* Horizontally center the tick mark */
    transform: translate(-52.5%, -52.5%); /* Center it precisely */
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Show the tick mark and color the circle when the container has the 'active' class */
.progressBar-container.active .circle::before {
    opacity: 1;
}

.progressBar-container.active .circle {
    /* background-color: #f67810; */
    border-color: #f67810;
    color: #f67810;
}
.progressBar-container.active .line-text  {
    color: #f67810;
}

.progressBar-container.active .line {
    background: #c8c8c8;
}

.cart-summary-list-container > .row > div {
    font-size: 13px;
}

.btn-default {
    border: 1px solid #383838;
    color: #383838;
}
.btn-default:hover {
    border-color: #f67810;
    background: #f67810;
    color: #fff;
}
.btn-default.disabled {
    border: 1px solid #383838;
    color: #fff;
    background: #383838;
}

.checkout-form-input {
    height: 50px;
    font-size: 13px;
}

.form-control {
    border-radius: 12px;
}
.heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.heading button {
    background-color: transparent;
    padding: 5px;
}
.heading-actions {
    display: flex;
    gap: 10px;
}
.heading-actions label {
    color: #848484;
}
.heading-actions select {
    background-color: transparent;
    padding-left: 2px;
}
.product-title {
    color: #000;
}
.product-title:hover {
    color: #5d5d5d;
}

.intl-tel-input.separate-dial-code .selected-dial-code,
li.country {
    font-size: 13px;
}

.intl-tel-input
{
    width: 100%;
}
.selected-flag {
    background: #fff !important;
    border-right: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}
.border-orange
{
    border: 1px solid #f67810 !important;
}



.header-top-category {
    padding-bottom: 20px;
}
.header-top-category > a > div {
    margin-top: 5px;
}



@media (max-width: 767px){
    .hidden-sm {
        display: none !important;
    }

  }

  @media (min-width: 768px){
    .hidden-sm {
        display: auto;
    }

}

.product-card2 {
    /* width: calc(25% - 20px); */
    /* display: flex; */
    /* flex-direction: column; */
    align-items: center;
    background-color: #fff;
    padding: 0px 15px 35px 15px;
    border-radius: 10px;
    /* gap: 10px; */
}
.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    padding: 0px 15px 35px 15px;
    border-radius: 10px;
    gap: 10px;
    row-gap: 10px;
    column-gap: 10px;
}
.pad1028 {
    padding: 10px 28px !important;
}
.disabled {
    cursor: not-allowed;
}
