@charset "UTF-8";
/* The container */
.container {
 display: block;
 position: relative;
 padding-left: 35px;
 margin-bottom: 12px;
 cursor: pointer;
 font-size: 18px;
 -webkit-user-select: none;
 -moz-user-select: none;
 -ms-user-select: none;
 user-select: none;
}

/* Hide the browser's default checkbox */
.container input {
 position: absolute;
 opacity: 0;
 cursor: pointer;
 height: 0;
 width: 0;
}
.button {
 padding: 5px 30px;
 border-radius: 0px;
 background-color: #666600;
 font-family: "PT Sans";
 font-size: 19px;
 font-weight: normal;
 color: #FFFFFF;
 text-decoration: none;
}
.input-text {
 font-family: "PT Sans";
 font-size: 17px;
 font-weight: normal;
 width: 100%;
 padding: 6px 15px;
 margin: 3px 0;
 box-sizing: border-box;
 border: none;
 background-color: #CCCC99;
}
textarea {
 font-family: "PT Sans";
 font-size: 17px;
 font-weight: normal;
 width: 100%;
 padding: 6px 15px;
 margin: 3px 0;
 box-sizing: border-box;
 border: none;
 background-color: #CCCC99;
}
.p-form {
 padding-top: 15px;
 padding-bottom: 0px;
}
.p-errmsg {
 padding-top: 0px;
 padding-bottom: 0px;
}
/* Create a custom checkbox */
.check-b {
 position: absolute;
 top: 0;
 left: 0;
 height: 20px;
 width: 20px;
 background-color: #CCCC99;
}
/* On mouse-over, add a grey background color */
.container:hover input ~ .check-b {
 background-color: #666600;
}
/* When the checkbox is checked, add a blue background */
.container input:checked ~ .check-b {
 background-color: #666600;
}
/* Create the checkmark/indicator (hidden when not checked) */
.check-b:after {
 content: "";
 position: absolute;
 display: none;
}
/* Show the checkmark when checked */
.container input:checked ~ .check-b:after {
 display: block;
}
/* Style the checkmark/indicator */
.container .check-b:after {
 left: 7px;
 top: 0px;
 width: 5px;
 height: 15px;
 border: solid white;
 border-width: 0 3px 3px 0;
 -webkit-transform: rotate(45deg);
 -ms-transform: rotate(45deg);
 transform: rotate(45deg);
}
/* Hide the browser's default radio button */
.container input {
 position: absolute;
 opacity: 0;
 cursor: pointer;
}
/* Create a custom radio button */
.radio-b {
 position: absolute;
 top: 1px;
 left: 0px;
 padding-top: 20px;
 height: 20px;
 width: 20px;
 background-color: #CCCC99;
 border-radius: 50%;
}
/* On mouse-over, add a grey background color */
.container:hover input ~ .radio-b {
 background-color: #666600;
}
/* When the radio button is checked, add a blue background */
.container input:checked ~ .radio-b {
 background-color: #666600;
}
/* Create the indicator (the dot/circle - hidden when not checked) */
.radio-b:after {
 content: "";
 position: absolute;
 display: none;
}
/* Show the indicator (dot/circle) when checked */
.container input:checked ~ .radio-b:after {
 display: block;
}
/* Style the indicator (dot/circle) */
.container .radio-b:after {
 top: 7px;
 left: 7px;
 width: 6px;
 height: 6px;
 border-radius: 50%;
 background: white;
}