.attr-options {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.attr-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.attr-label input {
  display: none;
}
.attr-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border: 2px solid #ccc;
  border-radius: 8px;
  padding: 5px;
  transition: all 0.3s ease;
}
.attr-color {
  width: 40px;
  height: 40px;
  border: 2px solid #ccc;
  border-radius: 50%;
  display: block;
  margin-bottom: 5px;
}
.attr-label input:checked + .attr-img,
.attr-label input:checked + .attr-color {
  border-color: #000;
  box-shadow: 0 0 5px rgba(0,0,0,0.4);
}
.attr-label span {
  margin-top: 5px;
  font-size: 14px;
}
.filter-row{ 
    margin-bottom: 15px;
}


/* Style the label when the checkbox is checked */
.attr-label input[type="checkbox"]:checked + div,
.attr-label input[type="checkbox"]:checked {
  background-color: #c9331a; /* highlight color */
  color: #000;
  font-weight: bold;
}
 
.attr-label div {
  padding: 5px 10px;
  border: 1px solid #efefef;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 10px #f1f1f1;
  align-items: center;
  justify-content: center;
}

/* Highlight the span when checkbox is checked */
.attr-label input[type="checkbox"]:checked + div {
  background-color: #c9331a;
  border-color: #8b1502;
  color: #fff;
}
.attr-label span.t_n 
    {
    /* border: 2px solid #ccc; */
    /* border-radius: 8px; */
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.even-row-wrapper.seprator {
    clear: both;
}
.btn_ct{text-align:center;margin-bottom:30px}
.filter-row input[type="number"] {
    width: 46%;
    margin: 0 1% 2%;
    display: inline-block;
}

#no-products-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    z-index: 9999;
}

#no-products-popup .popup-box{
    background: #fff;
    padding: 30px;
    max-width: 500px;
    margin: 10% auto;
    text-align: center;
    border-radius: 10px;
    position: relative;
}

#no-products-popup .close-popup  {
    position: absolute;
    top: -30px;
    right: -15px;
    font-size: 20px;
    border-radius: 30px;
    padding: 5px 11px;
}

@media (max-width:767px){
	#no-products-popup .close-popup {
    position: absolute;
    top: -20px;
    right: 0px;
    font-size: 16px;
    border-radius: 30px;
    padding: 3px 8px;
    font-weight: 900;
}
}

div#diamond-results {
    text-align: center;
}

div#diamond-results .product .add_to_cart_button {
    position: absolute;
    bottom: 150px;
    margin: 0 auto;
    left: 0;
    right: 0;
    width: 155px;
    opacity: 0;
}

div#diamond-results .product:hover .add_to_cart_button {
    opacity: 1;
}
div#diamond-results ul.products li.product .price {
    margin-bottom: 2.5em;}
	
	.attr-color {   
    display: flex;
    align-items: center;
    justify-content: center;
}
.attr-color.hide_cc{
    display: none;}