
/* step styles */
#stepmenu-id {
    display: flex;
    justify-content: center;
}

#stepmenu-id .stepmenu {
    position: relative;
    width: 100%;
}

#stepmenu-id .stepmenu-item {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    flex: 1; /
}

#stepmenu-id .stepmenu-item h1 {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    font-size: 14px;
    color: var(--light-white-v3);
    background-color: var(--text-gray);
    position: relative;
    z-index: 3;
}

#stepmenu-id .step-progress {
    position: absolute;
    top: 18%;
    left: 0;
    right: 0;
    margin: auto;
    width:50%;
    height: 2px;
    background-color: #ccc;
    z-index: 1;
    overflow: hidden;
}

#stepmenu-id .step-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%; /* Comienza sin relleno */
    height: 100%;
    background-color: var(--dark-blue);
    z-index: 2;
    transition: width 0.5s ease;
}



/* Cart Styles */

#cart-id .empty-carts {
    display: none;
    background-color: var(--light-white-v2);
}
#cart-id .empty-carts h2{
   color: var(--dark-blue);
    font-weight: 700;
}
#cart-id .empty-carts button{
   border: 1px solid var(--dark-blue);
    border-radius: 5px;
    background-color: white;
    padding: 4px 18px;
    color: var(--dark-blue);
    opacity: 1;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}
#cart-id .empty-carts button:hover{
    cursor: pointer;
    opacity: 0.8;
}



/*Cart Item styles*/
#cart-id .carts .cart-item1,
#cart-id .carts .cart-item2
{
    border: 1px solid var(--light-white-v2);
    border-radius: 5px;
}

#cart-id .carts .remove-cart1
{
    padding: 10px;
    background-color: white;
    border-radius: 25px;
    box-shadow: 0px 0px 20px #393C4026;
    opacity: 1;
    transition: all 0.3s ease;
    position: absolute;
    right: -15px;
    top: -15px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}


#cart-id .carts .remove-cart1 img{
    max-width: 15px;
}


#cart-id .carts .remove-cart1:hover,
#cart-id .carts .remove-cart2:hover
{
    opacity: 0.8;
    cursor: pointer;
}

#cart-id .carts .cart-item1 .cart-details p ,
#cart-id .carts .cart-item2 .cart-details p
{
    margin-bottom: 0;
    font-weight: 700;
    font-size: 1rem;
}

#cart-id .carts .cart-item1 .cart-details h6,
#cart-id .carts .cart-item2 .cart-details h6
{
    font-weight: 300;
}

#cart-id .carts .cart-item1 .product-extras p,
#cart-id .carts .cart-item1 .product-price p,
#cart-id .carts .cart-item2 .product-extras p,
#cart-id .carts .cart-item2 .product-price p

{
    font-weight: 300;
    font-size: 14px;
}

#cart-id .carts .cart-item1 .cart-amount,
#cart-id .carts .cart-item2 .cart-amount
{
    background-color: var(--light-white-v2);
}

#cart-id .order-summary,
#personal-data-id .summary-personal-data{
    background-color: white;
    width: 100%;
    box-shadow: 0px 0px 20px #393C4026;
    border-radius: 5px;
}

#cart-id .order-summary h5{
    color: var(--text-black);
    text-align: center;
    font-weight: 700;
}

#cart-id .order-summary h6{
    text-transform: uppercase;
    font-weight: 500;
}

#cart-id .order-summary p{
    font-weight: 400;
}

#cart-id .order-summary .total{
    background-color: var(--light-white-v2);
    border-radius: 5px;
}



#cart-id .card-banner{
    background-color: var(--light-white-v2);
}


.btn.btn-add{
    background-color: var(--dark-blue) !important;
    color: var(--light-white-v3) !important;
}


.orderquote{
    background-color: transparent !important;
    color: var(--dark-blue) !important;
    font-weight: 700 !important;
    border: 1px solid var(--dark-blue) !important;
}


#home-delivery ,
#pick-store
{
    border: 1px solid var(--dark-blue);
    border-radius: 5px;
}


.group-direction{
    border: 1px solid var(--text-black);
    border-radius: 5px;
}

.input-direction,
.input-map {
    font-size: 12px !important;
    height: 30px;
    border: none;
    background-color: none !important;
  }

.group-direction button {
    border: none;
    background-color: transparent !important;
    color: var(--dark-blue) !important;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
  }

#home-delivery label{
    font-size: 14px;
    font-weight: 400;
    color: var(--text-gray);
}



#home-delivery #month-selector{
    width: 170px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#home-delivery #month-selector #current-month,
#home-delivery #month-selector #prev-month,
#home-delivery #month-selector #next-month{
    font-size: 14px;
    font-weight: 700;
    background-color: transparent !important;
    border: none;
}

#home-delivery #month-selector #prev-month,
#home-delivery #month-selector #next-month{
    font-size: 18px;
    cursor: pointer;
}


#home-delivery .date-carousel .item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 50px;
    border-radius: 5px;
    border: 1px solid var(--dark-blue);
    opacity: 0.7;
    color: var(--dark-blue);
    cursor: pointer;

}

#home-delivery .date-carousel .item:hover,
#home-delivery .date-carousel .item.date-active{
    border: 2px solid var(--dark-blue);
    opacity: 1;
}

#home-delivery .date-carousel .item.date-active span,
#home-delivery .date-carousel .item:hover span{
    font-weight: 700;
}


#home-delivery .date-carousel .item span{
    text-align: center;
    font-size: 14px;

}

#home-delivery .date-carousel .owl-prev,
#home-delivery .date-carousel .owl-next{
    position: absolute;
    font-size: 35px;
    font-weight: 500;
    top: 0;
    color: var(--dark-blue) !important;
}

#home-delivery .date-carousel .owl-prev{
    left: -13px;
}

#home-delivery .date-carousel .owl-next{
    right: -13px;
}



#delivery-info span{
    font-size: 14px !important;
}



/* pick store styles */
#pick-store .pick-store-content {
    max-height: 250px;
    overflow: auto;
}

#pick-store .pick-store-content .item{
    border: 0.5px solid var(--dark-blue);
    width: 100%;
    display: flex;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem  1rem ;
    margin:2px 0 ;
}

#pick-store .pick-store-content input[type="radio"]{
    width: 20px;
    height: 20px;
}

#pick-store .pick-store-content input[type="radio"]:checked {
    border-color: var(--dark-blue ) !important;
    background-color: var(--dark-blue) !important;
  }

#pick-store .pick-store-content p{
    margin: 0;
    font-size: 14px;
    line-height: 20px;
}

#pick-store .pick-store-content p span{
    font-weight: 500;
    font-size: 12px;
    color: var(--text-gray);
}
.store-price{
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--dark-blue);
}
#pick-store .store-map{
    display: none;
    position: absolute;
    width: 100%;
    top:32px;
    z-index: 1;
}

#divDespachos {
    max-height: 400px;
    overflow: auto;
}

/* Social styles */
#social-id{
    position: fixed;
    top: 300px;
    z-index: 100;
}


#social-id  img{
    width: 50px;
    height: 50px;
    padding: 0.8rem;
}

#social-id .whatsapp-icon,
#social-id .whatsapp-icon .tooltip{
    background-color:#047D5C;
}

#social-id .share-icon,
#social-id .share-icon .tooltip{
    background-color:#27348B;
}

#social-id .mail-icon,
#social-id .mail-icon .tooltip{
    background-color:#009EE3;
}


#social-id ul {
    list-style: none;
    padding: 0;
}

#social-id li {
    position: relative;
}


#social-id li .tooltip {
    height: 100%;
    color: white;
    text-align: center;
    padding: 0.8rem;
    position: absolute;
    z-index: -1;
    top:0;
    left:50px;
    white-space: nowrap;
    overflow: hidden;
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

#social-id li:hover .tooltip {
    opacity: 1;
    transform: translateX(0%);
}
