/* The container */
.chk-container {
 
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
 
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
 
/* Hide the browser's default checkbox */
.chk-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
 
/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 7px;
    left: 0;
    height: 25px;
    width: 25px;
  	border-radius:5px;
    background-color: #5a3a00;
}
 
/* On mouse-over, add a grey background color */
.chk-container input ~ .checkmark {
    background-color: #ffffff;
}
 
/* When the checkbox is checked, add a blue background */
.chk-container input:checked ~ .checkmark {
    background-color: #2196F3;
}
 
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
 
/* Show the checkmark when checked */
.chk-container input:checked ~ .checkmark:after {
    display: block;
}
 
/* Style the checkmark/indicator */
.chk-container .checkmark:after {
    left: 8px;
    top: 3px;
    width: 8px;
    height: 16px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
 
 
 /* Style buttons */
.btn-plus-minus {
   margin-bottom:1px;
   margin-right:10px;
   margin-left:10px;
    padding-bottom: 3px;
    padding-top: 9px;
}

/* Remove standard RSform pulldown */
.rseventspro-add-ticket-button {} 


.btn-info {color:#fff;background-color:#5a3a00;border-color:#5a3a00;}
.btn-info:hover {background-color: #c29b5c !important;border-color: #c29b5c !important;}