/*body,
html {
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: #FFEFBA;
    background: -webkit-linear-gradient(to right, #FFFFFF, #FFEFBA);
    
    background: linear-gradient(to right, #FFFFFF, #FFEFBA);
     W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ 

} 

.container {
    max-width: 640px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 13px;
}*/

ul.ks-cboxtags {
    list-style: none;
    padding: 20px;
}
ul.ks-cboxtags li{
  display: inline;
}
ul.ks-cboxtags li label{
    display: inline-block;
    background-color: rgba(255, 255, 255, .9);
    border: 2px solid rgba(139, 139, 139, .3);
    color: #adadad;
    border-radius: 25px;
    white-space: nowrap;
    margin: 3px 0px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition: all .2s;
}

ul.ks-cboxtags li label {
    padding: 8px 12px;
    cursor: pointer;
}

ul.ks-cboxtags li label::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
    padding: 2px 6px 2px 2px;
    content: "\f067";
    transition: transform .3s ease-in-out;
}

ul.ks-cboxtags li input[type="checkbox"]:checked + label::before {
    content: "\f00c";
    transform: rotate(-360deg);
    transition: transform .3s ease-in-out;
}

ul.ks-cboxtags li input[type="checkbox"]:checked + label {
    border: 2px solid #1bdbf8;
    background-color: #12bbd4;
    color: #fff;
    transition: all .2s;
}

ul.ks-cboxtags li input[type="checkbox"] {
  display: absolute;
}
ul.ks-cboxtags li input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}
ul.ks-cboxtags li input[type="checkbox"]:focus + label {
  border: 2px solid #e9a1ff;
}




/* *************************************************************************** */
    
      /* Box styling for description and other details */
      .detail-box {
        border: 1px solid #ddd;
        border-radius: 10px;
        padding: 15px;
        margin: 10px 0;
        background-color: #f9f9f9;
        transition: box-shadow 0.3s ease, transform 0.2s ease;
      }

      .detail-box:hover {
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-5px);
      }

      .detail-box h6 {
        font-weight: 600;
        color: #333;
      }

      .detail-box .value {
        font-size: 1.1rem;
        color: #555;
      }

      /* Hover effect for description box */
      .description-box:hover {
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-5px);
      }

      /* Mobile Responsiveness */
      @media (max-width: 768px) {
        .detail-box {
          padding: 10px;
        }

        .carousel-item img {
          max-height: 300px;
        }
      }

      /* Add a background color to the page */
      body {
        background-color: #f4f4f4;
      }

      /* Jumbotron styling */
      .jumbotron {
        background-color: #fff;
        box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        padding: 30px;
        margin-top: 20px;
      }

      /* Center the Buy Request Button container */
.buy-request-container {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center;     /* Center vertically */
  margin-top: 30px;
}

/* Larger button styling with new modern look */
.btn-primary#buy{
  background-color: #007bff;
  border-color: #007bff;
  border-radius: 12px; /* Slightly more rounded corners */
  padding: 20px 40px;  /* Larger padding for a more significant size */
  font-size: 1.2rem;   /* Increase the font size for better visibility */
  transition: all 0.3s ease-in-out; /* Smooth transition effect */
  /* min-width: 450px;      Ensures button stays larger */
  text-align: center;
  font-weight: 700; /* Bolder text for emphasis */
  display: block;
  margin: 0 auto; /* Centers button horizontally */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15); /* Light shadow for depth */
  text-transform: uppercase; /* Uppercase letters for boldness */
  letter-spacing: 1px; /* Spacing between letters to make it more elegant */
}

/* Button hover effect with subtle scale and color change */
.btn-primary:hover#buy{
  background-color: #0056b3;
  border-color: #0056b3;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.25); /* Darker shadow when hovered */
  transform: scale(1.05); /* Slight zoom effect when hovered */
}

      /* Align the description box with others */
      .description-box {
        border: 1px solid #ddd;
        border-radius: 10px;
        padding: 15px;
        margin: 10px 0;
        background-color: #f9f9f9;
      }

      /* Stack images vertically on smaller screens */
    @media (max-width: 767px) {
        .w3-col {
            width: 100% !important; /* Make each column take up full width on small screens */
            margin-bottom: 15px; /* Add space between images */
        }
    }
     /* Ensure carousel images do not become too large */
     .carousel-inner img {
        width: 100%;        /* Makes the image take full width */
        height: auto;       /* Maintains aspect ratio */
        max-height: 80vh;   /* Makes sure the image fits within the viewport height */
        object-fit: contain; /* Ensures the image doesn't overflow the container */
    }

    /* To make the carousel background transparent */
    .carousel-item {
        background-color: transparent !important;
    }
   


    /* Stack images vertically on smaller screens */
    @media (max-width: 767px) {
        .w3-col {
            width: 100% !important; /* Make each column take up full width on small screens */
            margin-bottom: 15px; /* Add space between images */
        }
    }
     /* Ensure carousel images do not become too large */
     .carousel-inner img {
        width: 100%;        /* Makes the image take full width */
        height: auto;       /* Maintains aspect ratio */
        max-height: 80vh;   /* Makes sure the image fits within the viewport height */
        object-fit: contain; /* Ensures the image doesn't overflow the container */
    }

    /* To make the carousel background transparent */
    .carousel-item {
        background-color: transparent !important;
    }


     /* Box styling for description and other details */
     .detail-box {
        border: 1px solid #ddd;
        border-radius: 10px;
        padding: 15px;
        margin: 10px 0;
        background-color: #f9f9f9;
        transition: box-shadow 0.3s ease, transform 0.2s ease;
      }

      .detail-box:hover {
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-5px);
      }

      .detail-box h6 {
        font-weight: 600;
        color: #333;
      }

      .detail-box .value {
        font-size: 1.1rem;
        color: #555;
      }

      /* Hover effect for description box */
      .description-box:hover {
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-5px);
      }

      /* Mobile Responsiveness */
      @media (max-width: 768px) {
        .detail-box {
          padding: 10px;
        }

        .carousel-item img {
          max-height: 300px;
        }
      }

      /* Add a background color to the page */
      body {
        background-color: #f4f4f4;
      }

      /* Jumbotron styling */
      .jumbotron {
        background-color: #fff;
        box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        padding: 30px;
        margin-top: 20px;
      }

      /* Center the Buy Request Button container */
.buy-request-container {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center;     /* Center vertically */
  margin-top: 30px;
}

/* Larger button styling with new modern look */
.btn-primary#buy{
  background-color: #007bff;
  border-color: #007bff;
  border-radius: 12px; /* Slightly more rounded corners */
  padding: 20px 40px;  /* Larger padding for a more significant size */
  font-size: 1.2rem;   /* Increase the font size for better visibility */
  transition: all 0.3s ease-in-out; /* Smooth transition effect */
  /* min-width: 450px;      Ensures button stays larger */
  text-align: center;
  font-weight: 700; /* Bolder text for emphasis */
  display: block;
  margin: 0 auto; /* Centers button horizontally */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15); /* Light shadow for depth */
  text-transform: uppercase; /* Uppercase letters for boldness */
  letter-spacing: 1px; /* Spacing between letters to make it more elegant */
}

/* Button hover effect with subtle scale and color change */
.btn-primary:hover#buy{
  background-color: #0056b3;
  border-color: #0056b3;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.25); /* Darker shadow when hovered */
  transform: scale(1.05); /* Slight zoom effect when hovered */
}

      /* Align the description box with others */
      .description-box {
        border: 1px solid #ddd;
        border-radius: 10px;
        padding: 15px;
        margin: 10px 0;
        background-color: #f9f9f9;
      }

      