@charset "utf-8";
/* CSS Document */
 .dateprice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f7f7f7;
  border: 2px solid transparent;
  border-radius: 0px;
  padding: 16px 20px;
  margin-bottom: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Hover effect */
.dateprice:hover {
  background: #eef6ff;
  border-color: #d5e8ff;
}

/* Radio button adjustments */
.dateprice input[type="radio"] {
  accent-color: #007bff; /* modern browsers */
  width: 18px;
  height: 18px;
  margin-right: 12px;
  cursor: pointer;
}

/* Text alignment inside */
.dateprice_p {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin: 0;
  flex: 1;
}

/* Price text */
.dateprice small {
  font-weight: 600;
/*  color: #007bff;*/
  margin-left: 8px;
}

/* Selected state */
.dateprice input[type="radio"]:checked + .dateprice_p,
.dateprice input[type="radio"]:checked ~ small {
  color: #0056b3;
}

/* Glow/Border when selected */
.dateprice input[type="radio"]:checked ~ .dateprice_p,
.dateprice input[type="radio"]:checked ~ small {
  font-weight: 700;
}

.dateprice input[type="radio"]:checked {
/*  outline: 2px solid #007bff;*/
  border-radius: 50%;
}

/* Optional: subtle shadow when active */
.dateprice input[type="radio"]:checked ~ * {
  filter: brightness(1.1);
}

@media (max-width: 500px) {
  .dateprice {
    padding: 12px 14px;
  }
  .dateprice_p {
    font-size: 15px;
  }
}
	.event-places.dateprice input[type="radio"]:focus {
    outline: none !important;
    box-shadow: none !important;
}
	.event-places.dateprice:focus {
    outline: none !important;
}

	
/*
	p.dateprice_p {
    margin-left: 16px !important;
}
	
	.event-places.dateprice {
    justify-content: left !important;
		margin-top: 10px !important;
}
*/
	.contact-formwrap.formtopspace {
    margin-top: 45px !important;
}
	
	.qty-btn.qty-rem , .qty-btn.qty-add {
    background: #ccc !important;
    border-radius: 10px !important;
}
	
	.event-places.downloadpass {
    background: #007bff26;
}


.contact-area-contact-page .contact-formwrap {
    margin-top: 30px !important;
}