.single_add_to_cart_button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.event-options {
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f9f9f9;
}

.event-options h3 {
    margin-top: 0;
    color: #333;
}
.event-options p {
    margin: 7px 0;
}
.event-options label {
    position: relative;
    display: block;
    padding-left: 35px;
    margin-bottom: 10px;
    cursor: pointer;
    -webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide broswer's default input */
.event-options input {
	position: absolute;
	width: 0;
	height: 0;
	opacity: 0;
}
/* Create a custom checkbox */
.seletor {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #eee;
	border: 1px solid var(--global-lightblue);
}
/* On mouse-over, add a grey background color */
.event-options label:hover input ~ .seletor {
	border-color: var(--global-azul-menu);
}
  
/* When the checkbox is checked, add a blue background */
.event-options label input:checked ~ .seletor {
	background-color: #fff;
	border-color: var(--global-azul-menu);
}

/* Create the checkmark/indicator (hidden when not checked) */
.seletor:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */
.event-options label input:checked ~ .seletor:after {
	display: block;
}

/* Style the checkmark/indicator */
.event-options label .seletor::after {
	left: 8px;
	top: 2px;
	width: 8px;
	height: 15px;
	border: solid var(--global-azul-menu);
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* .event-options input[type="radio"],
.event-options input[type="checkbox"] {
    margin-right: 8px;
} */

.event-options-total {
    font-size: 1.2em;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}