#toast-container>div{
  opacity:1!important;
}
.toast-success {
  background-color: #28a745 !important;
  color: #ffffff !important;
  border: 1px solid #28a745 !important;
}
.toast-error {
  background-color: #dc3545 !important;
  color: #ffffff !important;
  border: 1px solid #dc3545 !important;
}
.toast-title {
  font-weight: bold;
}
.toast-message {
  font-size: 14px;
}
.select2-container--default .select2-selection--multiple{
  border: 1px solid #e0e5eb!important;
}

.select2-container .select2-search--inline .select2-search__field{
  margin-top: 0px!important;
}
.select2-dropdown{
  z-index: 1!important;
}
.select2-container .select2-selection--multiple{
  min-height: 32px!important;
}
.select2-results ul{
  gap: 0rem!important;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{
  margin-right: 0px!important;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice{
  margin-right: 5px!important;
  margin-top: 5px!important;
  padding: 0 4px!important;
  color: whitesmoke!important;
  font-size: 14px!important;
  background-color: #4f5562 !important;
  border: 1px solid #4f5562 !important;
}
.select2-container--default .select2-results__option--highlighted[aria-selected]{
  background-color: #4f556287!important;
  color: white!important;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{
  color: white!important;
}
.select2-search__field{
  width: 100%!important;
}
.select2-container--default .select2-selection--multiple{
  display: flex!important;
}
.select2-container .select2-selection--multiple{
  font-size: 10px;
  align-items: center;
  display: inline-grid;
  width: 100%;
}

 .pointer{
    cursor: pointer;
 }

 .playwrite{
    font-family: "Playwrite IN", serif;
 }
 .playfair-display{
    font-family: "Playfair Display", serif;
 }
 .poppins{
    font-family: "Poppins", serif;
 }
 /* ======================================================================================== */
 /* ========================================= NAVBAR ========================================= */
 /* ======================================================================================== */
 @keyframes wipe-in-left {
    from {
        clip-path: inset(0 0 100% 0);
    }
    to {
        clip-path: inset(0 0 0 0);
    }
}
 #custom-collapse {
    position: absolute;
    top: 65px;
    right: 20%;
    z-index: 1000;
    opacity: 0;
    cursor: pointer!important;
}
#custom-collapse.show {
    opacity: 1;
    right: 20%;
    /* animation: 0.2s linear wipe-in-left both; */
    transition: max-height 0.2s ease-out;
}
.custom-megamenu{
    z-index: 1000;
    overflow: scoll;
    transition: max-height 0.2s ease-out;
}
.nav-item i{
    cursor: pointer!important;
}
.nav-mobile i.dropdown-toggle::after{
    display: none!important;
}
.bg-custom{
    box-shadow: 0.5px 0px 1px!important;
}
.custom-navbar{
    background-color: #5988ff!important;
    box-shadow: 0.5px 0px 1px!important;
    a, a ~ i,button{
        color: var(--light-color)!important;
    }
    a.active{
        color: var(--theme-color)!important;
    }
}
.custom-navbar-height{
    height: 65px!important;
}
input[type="number"]#addQuantity {
    appearance: textfield;
    -moz-appearance: textfield;
}
input[type="number"]#addQuantity::-webkit-outer-spin-button,
input[type="number"]#addQuantity::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0; /* Optional: Removes any extra margin */
}
.bi-heart-fill
{
    cursor: pointer!important;
    color: red!important;
}

input.is-invalid
{
    border-top-right-radius: var(--bs-border-radius)!important;
    border-bottom-right-radius: var(--bs-border-radius)!important;
}

.h-80{
    height: 80vh!important;
}
 /* ======================================================================================== */
 /* ========================================= HOME ========================================= */
 /* ======================================================================================== */


/* ==================== */
/* ===== carousel ===== */
/* ==================== */
/* .carousel-caption {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  padding: 15px;
  animation: fadeInUp 1s ease-in-out;
} */

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}


/* ====================== */
/* ===== Categories ===== */
/* ====================== */
 /* Diamond Shape */
 .category-border {
  position: relative;
  width: 130px;
  height: 130px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* border: 1px solid #f5c518; */
  border: 1px solid #5988ff;
  border-radius : 10px;
  transition: border 0.5s ease-in-out;
  @media (min-width:535px) {
      transform: rotate(45deg);
  }
}

/* Image Styling */
.category-img {
  position: absolute;
  width: 200px;
  height: 200px;
  object-fit: cover;
  transform: rotate(-45deg);
  border-radius:10px;
  scale:0.90;
  transition:0.3s;
  @media (max-width:535px) {
      transform: rotate(0);
  }
}

/* Overlay Effect */
.category-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease-in-out;
}

/* Hover Effect - Border Animation */
.category-border:hover {
  /* border:5px solid #f5c518; */
  border:5px solid #5988ff;
}

.category-border:hover .category-img {
  scale:1;
}

.category-border:hover .category-overlay {
  opacity: 1;
}

/* Text inside the overlay */
.category-text {
  color: white;
  font-weight: bold;
  font-size: 16px;
  /* transform: rotate(-45deg); */
  text-transform: uppercase;
  @media (max-width:535px) {
      transform: rotate(0);
  }
}

/* ==================== */
/* ===== CTA PART ===== */
/* ==================== */

/* Glass background */
/* .glass-bg {
 background: rgba(255, 255, 255, 0.1);
 backdrop-filter: blur(5px);
 -webkit-backdrop-filter: blur(5px);
 border: 1px solid rgba(255, 255, 255, 0.2);
} */

.product-card {
  transition: 0.3s;
}

/* Category Badge (Price) */
.product-price {
  padding: 5px 10px;
  border-radius: 5px;
  transition: background-color 0.3s ease-in-out;
}

/* Hover Effect for Price Badge */
.product-card:hover .product-price {
  /* background-color: #67080c !important; */
  background-color: var(--brown1) !important;
  color: white !important;
}

/* Hover Effect - Add to Cart Button Appears with Translate */
.product-add-to-cart {
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transform: translateY(50px);
}

.product-card:hover .product-add-to-cart {
  opacity: 1 !important;
  transform: translateY(0);
}

/* -----------------------------------------  ==  END ==  ----------------------------------------- */


 /* ============================================================================================ */
 /* ========================================= Single Products ================================== */
 /* ============================================================================================ */

.product-Details-tab {
  .nav-pills .nav-link.active{
    color : black;
    background : #5988ff;
  }
  .nav-pills .nav-link{
    color : white;
  }
}


/* -----------------------------------------  ==  END ==  ----------------------------------------- */

 /* ============================================================================================ */
 /* ========================================= CART ========================================= */
 /* ============================================================================================ */


/* ======================= */
/* ==== Product List ===== */
/* ======================= */

.product-list {
  .table {
    border-collapse:separate;
    border : 1px solid white !important;
    border-radius:6px;
  }

  .table td, .table th {
    text-align: center;
    color: white !important;
    border-left: none;
    border-right : 1px solid white;
    border-bottom : 1px solid white;
    background-color: transparent !important;
  }

  td:last-child, th:last-child {
    border-right: none;
  }
  tr:last-child td{
    border-bottom: none;
  }
}

/* -----------------------------------------  ==  END ==  ----------------------------------------- */

 /* ============================================================================================ */
 /* ========================================= Profile ========================================= */
 /* ============================================================================================ */

 /* Profile Main */

 .profile-main{

  /* main */
  .nav-tabs .nav-link.active  {
    border: none;
    /* background : #ffca2c;Z */
    background : #5988ff;
    color : black;
  }
  .nav-tabs .nav-link{
    color : white;
  }

  /* Address */
  .list-group-item:hover ,.list-group-item:active {
      color:#fff;
      background: var(--bs-list-group-active-bg);
  }
  /* order */
  .pills-orders,.order-tab{
    .table {
      border-collapse:separate;
      border : 1px solid #eee !important;
      border-radius:6px;
    }

    .table td, .table th {
      text-align: center;
      color: #000 !important;
      border-left: none;
      border : 1px solid #eee;
      background-color: transparent !important;
    }

    td:last-child, th:last-child {
      border-right: none;
    }
    tr:last-child td{
      border-bottom: none;
    }
  }
 }


 /* -----------------------------------------  ==  END ==  ----------------------------------------- */

 /* ============================================================================================ */
 /* ========================================= checkout ========================================= */
 /* ============================================================================================ */

.checkout-section {
  .list-group-item {
      color:white;
      background: transparent;
  }

  .form-check-input:checked {
      /* background-color: #fab917;
      border-color: #fab917; */
      background-color: #5988ff;
      border-color: #5988ff;
  }

  .nav-tabs .nav-link {
      color: #fff;
  }

  .nav-tabs .nav-link.active {
      background-color: #fab917;
      color: black;
  }

  .table th {
      text-align: end;
      border : 2px solid white;
      background-color: transparent !important;
      color:white;
  }
  .table td {
      text-align: end;
      color:white;
      background-color: transparent !important;
  }
}

/* -----------------------------------------  ==  END ==  ----------------------------------------- */


 /* ============================================================================================ */
 /* ========================================= Login, Register ========================================= */
 /* ============================================================================================ */
.login-section, .register-section{
  .glass-bg {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 10px;
  }

  .form-check-input:checked {
      background-color: #ffc107;
      border-color: #ffc107;
  }
}

/* -----------------------------------------  ==  END ==  ----------------------------------------- */

/* ============================================================================================ */
/* ========================================= Error ========================================= */
/* ============================================================================================ */

.error-section{
  .error-container {
      max-width: 500px;
  }

  /* 404 Text */
  .error-code {
      font-size: 6rem;
      font-weight: bold;
      color: var(--pink);
  }

  /* Cake Illustration */
  .cake-img {
      max-width: 60%;
      height: auto;
      animation: float 3s ease-in-out infinite;
  }
}

/* -----------------------------------------  ==  END ==  ----------------------------------------- */

/* Inputs */

::placeholder   {
  color: #000 !important;
  opacity: 1 !important;
}

.form-control{
  background-color: transparent  !important;
  color : #000 !important;
}

.form-control:focus {
  border-color: #5988ff !important;
  box-shadow: none !important;
}


 /* Pagination */

 .pagination{
    .page-link{
        color : #5988ff;
        background: var(--brown1);
        z-index: 1!important;
    }
    .active>.page-link, .page-link.active{
        color : var(--brown1)!important;
        background: #5988ff!important;
        border: 1px solid #5988ff!important;
    }
    .page-link:hover{
        color : black;
        background: #5988ff;
    }
 }

 /* Floating Animation */
 @keyframes float {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-10px);
  }
}

/* -----------------------------------------  ==  28-1-2025 ==  ----------------------------------------- */

.breadcrumb-item+.breadcrumb-item::before
{
    color : #000!important;
    /* --yellow-main: #e0b848;
    --brown2: #67080c;
    --light-color : white;
    --theme-color : #ffca2c;
    --navbar-color : #67080c;
    --brown1: #490509;
    --yellow: #ffca2c; */
}

.breadcrumb-item.active
{
    color : #5988ff!important;
}

#breadcrumbs a,#filterForm a{
    color: #5988ff!important;
}

.card-title a{
    text-decoration: none !important;
    color: #5988ff !important;
}

#navBar{
    background-color: #5988ff!important;
}

.mega-menu-bar{
    background-color: #5988ff!important;
    box-shadow: 0.5px 0px 1px!important;
    border-radius : 5px;
    margin : 5px 0 0 0;

    a, a ~ i{
        color: #fff!important;

    }
    a.active , h5{
        color: #5988ff!important;
        margin : 0 0 20px 0;
    }
    a:hover {
        color: #5988ff!important;
        text-decoration : underline !important;
    }
}
/* .carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    text-align: center;
    width: 90%;
    max-width: 500px;
    animation: fadeInUp 1s ease-in-out!important;
}

@media (max-width: 768px) {
    .carousel-caption {
        padding: 15px;
    }
}
.carousel-item {
    position: absolute;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.carousel-item.active {
    position: relative;
    opacity: 1;
} */

.h-60
{
    height: 60vh!important;
}
#pills-addresses .form-control > option{
    background-color: #fff!important;
    color: #000!important;
}

.z-100{
    z-index: 100!important
}

@media (max-width: 768px) {
    .w-sm-100{
        width: 100%!important;
    }
}

/* .w-75{
    width: 75%!important;
} */


.cursor-pointer{
    cursor: pointer;
}

/* Hide default appearance */
.custom-checkbox {
    width: 20px;
    height: 20px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: white;
    border: 2px solid #ccc;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

/* Checked state */
.custom-checkbox:checked {
    background: #28a745 !important; /* Green background */
    border-color: #1e7e34;
}

/* Add a checkmark */
.custom-checkbox:checked::after {
    content: "\2713"; /* Unicode checkmark */
    font-size: 16px;
    color: white;
    position: absolute;
    left: 20%;
    top: -25%;
    font-weight: bold;
}



#category-scrollRow {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-card {
    overflow: visible !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.category-border {
    position: relative;
    width: 180px;
    height: 180px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--yellow-main);
    border-radius: 12px;
    transition: border 0.5s ease-in-out;
    transform: rotate(45deg);
    margin: 20px;
}

.category-border:hover {
    border: 4px solid var(--yellow-main);
}

.category-img {
    position: absolute;
    width: 270px;
    height: 220px;
    object-fit: cover;
    transform: rotate(-45deg);
    border-radius: 12px;
    scale: 0.95;
    transition: 0.3s;
}

.category-text {
    position: relative;
    margin-top: 30px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    padding: 5px 15px;
    border-radius: 20px;
    border: 2px solid var(--yellow-main);
    text-align: center !important;
    white-space: normal;
    word-wrap: break-word;
    z-index: 1;
    overflow: hidden;
}

.category-text::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--yellow-main), var(--brown1), var(--yellow-main));
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: -1;
}

.category-text::after,
.category-border::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0.6) 50%,
            rgba(255, 255, 255, 0.2) 100%);
    transform: skewX(-20deg);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 2;
}

.category-item:hover .category-text::before {
    opacity: 1;
}

.category-item:hover .category-text::after {
    animation: shineSweep 1s ease forwards;
    opacity: 1;
}

/* Shine animation */
@keyframes shineSweep {
    from {
        left: -75%;
    }

    to {
        left: 125%;
    }
}

.category-border::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 223, 0, 0.3);
    border-radius: 50%;
    top: -20px;
    left: -20px;
    z-index: -1;
    filter: blur(30px);
    opacity: 0.6;
}


.category-item {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Make elements appear smoothly when visible */
.py-5.visible .category-item {
    opacity: 1;
    transform: translateY(0);
}

.category-bg {
    /* background: url(https://img.freepik.com/free-vector/elegant-red-bokeh-blur-light-effect_1017-25617.jpg) */
    background: url(https://img.freepik.com/free-vector/beautiful-bokeh-background_23-2148512131.jpg) center center / cover no-repeat;
    background-color: rgba(0, 0, 0, 0.4);
    background-blend-mode: multiply;
    overflow: hidden;
}


/* Floating bubbles container */
.category-bg::before,
.category-bg::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    /* Prevent interference */
}

/* Individual bubble */
.bubble {
    position: absolute;
    bottom: -10px;
    /* Start from below the section */
    width: 50px;
    /* Default size, modified per child */
    height: 50px;
    border-radius: 50%;
    opacity: 0.6;
    /* background: radial-gradient(circle, #ffffff20 10%, rgba(255, 255, 255, 0.2) 80%); */
    background: radial-gradient(circle, #ffffff20 30%, transparent 60%);
    animation: floatBubble 8s infinite ease-in-out;
}


/* Randomly sized bubbles */
.bubble:nth-child(1) {
    width: 40px;
    height: 40px;
    left: 10%;
    animation-duration: 2s;
    bottom: -10px;
}

.bubble:nth-child(2) {
    width: 50px;
    height: 50px;
    left: 30%;
    animation-duration: 7s;
    bottom: -400px;
}

.bubble:nth-child(3) {
    width: 35px;
    height: 35px;
    left: 50%;
    animation-duration: 9s;
    bottom: -200px;
}

.bubble:nth-child(4) {
    width: 60px;
    height: 60px;
    left: 70%;
    animation-duration: 6s;
    bottom: -100px;
}

.bubble:nth-child(5) {
    width: 45px;
    height: 45px;
    left: 90%;
    animation-duration: 4s;
    bottom: -300px;
}

/* Floating animation */
@keyframes floatBubble {
    0% {
        /* transform: translateY(0); */
        /* opacity: 0.6; */
        scale: 1;
    }

    100% {
        /* transform: translateY(-500px); */
        /* opacity: 0; */
        scale: 0;
    }
}


.testimonial-img-wrapper {
    width: 200px; /* Ensures uniform width */
    height: 200px; /* Ensures uniform height */
    overflow: hidden; /* Prevents overflow */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .testimonial-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures consistent size */
  }

  /* Set a minimum height for the content area to avoid shifting */
  .testimonial-content {
    min-height: 180px; /* Adjust this value as needed */
  }

  /* Prevents carousel height changes */
  .carousel-item {
    min-height: 250px; /* Keeps carousel items uniform */
  }




.section-title h2 {
    font-size: 18px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color:
    color-mix(in srgb, var(--default-color), transparent 30%);
    position: relative;
}

.section-title p {
    color: var(--accent-color);
    font-size: 36px;
    font-weight: 600;
    font-family: var(--heading-font);
    margin-top : 5px;
    margin-bottom : 30px;
}
.specials .details ul li span {
    color: var(--default-color);
}


/*--------------------------------------------------------------
# Specials Section
--------------------------------------------------------------*/
.specials {
  overflow: hidden;
}

.specials .nav-tabs {
  border: 0;
}

.specials .nav-link {
  border: 0;
  padding: 12px 15px;
  transition: 0.3s;
  color: var(--heading-color);
  border-radius: 0;
  border-right: 2px solid var(--accent-color);
  font-weight: 600;
  font-size: 15px;
}

.specials .nav-link:hover {
  color: var(--accent-color);
}

.specials .nav-link.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}
.specials .tab-pane img{
  filter : drop-shadow(0 0 10px var(--accent-color));
}

.specials .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.specials .details h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color : var(--accent-color) !important;
  font-family: var(--heading-font) !important;
}

.specials .details p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.specials .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .specials .nav-link {
    border: 0;
    padding: 15px;
  }

  .specials .nav-link.active {
    background: var(--accent-color);
  }
}



/* Delivery text - hidden by default */
.delivery-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: transform 0.3s ease;
    z-index: 1;
  }
  .card-buttons .btn_2 {
    color: #000000; /* Text color */
    background: #e5bf4a; /* Background color for the button */
    padding: 8px 12px; /* Adds more padding for a larger clickable area */
    border: none; /* Removes the default border */
    border-radius: 5px; /* Rounded corners */
    display: block;
    width: 100%; /* Ensures the buttons have equal width */
    text-align: center; /* Centers the text */
    font-size: 16px; /* Font size */
    font-weight: bold; /* Makes text bold */
    cursor: pointer;
  }
  .card-buttons .btn_2:hover {
    background-color: #b99a3e;
    color: #000000 !important;
    border: 0.5px solid black;
  }

  .delivery-text img {
    width: 80px; /* Adjust the size of the delivery icon */
    height: 80px;
    transition: transform 0.3s ease; /* Smooth scaling effect */
  }

  .values .card{
    border: 0px solid transparent!important;
  }
  /* Show delivery text on hover */
  .values .card:hover .delivery-text {
    transform: translate(-50%, -50%) scale(1.2); /* Scale up the icon */
  }

  /* Scale the image on hover */
  .values .card:hover img {
    transform: scale(1.04);
  }

  /* Card buttons */
  .card-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    opacity: 0; /* Initially hide the buttons */
    position: absolute;
    bottom: 20px; /* Position buttons at the bottom of the card */
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.3s ease;
  }

  .values .card:hover .card-buttons {
    opacity: 1; /* Show buttons on hover */
    & a{
        text-decoration: none !important;
    }
  }

  select.form-control option{
    color: black !important;
}

.loader-overlay {
    position: fixed;
    z-index: 9999;
    top: 0; left: 0;
    height: 100vh; width: 100vw;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


i[onclick] {
    cursor: pointer;
}


#featuredprevButton { 
    transform: translate(0%, -50%) !important
}
#featurednextButton { 
    transform: translate(-100%, -50%) !important
}

.border-custom{
    border: 2px solid var(--theme-color) !important;
}

#thumbnail-slider .splide__list {
  transform: none !important;
  justify-content: flex-start !important;
}


.splide__arrow {
  background-color: #f8f9fa!important; /* default bg */
  border: 1px solid #ccc!important;
  color: #000!important; /* icon color */
  transition: all 0.25s ease!important;
}

.splide__arrow:hover,
.splide__arrow:focus {
  background-color: #007bff!important; /* blue background */
  color: #fff!important; /* white arrow icon */
  border-color: #007bff!important;
}

.splide__arrow:active {
  background-color: #0056b3!important; /* darker blue */
  border-color: #004999!important;
  color: #fff!important;
  transform: scale(0.95)!important;
}

.splide__arrow:disabled {
  opacity: 0.5!important;
  background-color: #eee!important;
  cursor: not-allowed!important;
}

#attributes.two-column-list {
  column-count: 2;             /* Split into two columns */
  column-gap: 2rem;            /* Space between columns */
  list-style: none;
}

#attributes.two-column-list li {
  break-inside: avoid;         /* Prevent breaking inside items */
}


.custom-list-group-item{
    padding: 10px;
}
  /* Address */
.custom-list-group-item:hover ,.custom-list-group-item:active {
padding: 10px;
    color:#fff;
    background: #B3C9FF;
}

.required{
    color: red!important;
}