* {
    box-sizing: border-box;
}
html,body{
	-webkit-overflow-scrolling : touch !important;
	overflow: auto !important;
	height: 100% !important;
}
input[type=number], select, textarea {
    width: 95%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}
/*radio button style begins*/
.maxl{
  margin:10px ;
}
.radio{  
  font-size:15px;
  position:relative;
}
.radio span{
  position:relative;
  padding-left:20px;
}
.radio span:after{
  content:'';
  width:15px;
  height:15px;
  border:1.5px solid;
  position:absolute;
  left:0;
  top:1px;
  border-radius:100%;
  -ms-border-radius:100%;
  -moz-border-radius:100%;
  -webkit-border-radius:100%;
  box-sizing:border-box;
  -ms-box-sizing:border-box;
  -moz-box-sizing:border-box;
  -webkit-box-sizing:border-box;
}
.radio input[type="radio"]{
   cursor: pointer; 
  position:absolute;
  width:100%;
  height:100%;
  z-index: 1;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"
}
.radio input[type="radio"]:checked + span{
  color:#528152;  
}
.radio input[type="radio"]:checked + span:before{
    content:'';
  width:5px;
  height:5px;
  position:absolute;
  background:#528152;
  left:5px;
  top:6px;
  border-radius:100%;
  -ms-border-radius:100%;
  -moz-border-radius:100%;
  -webkit-border-radius:100%;
}
/*radio button style ends*/
input:focus {
    border-color: rgb(202,163,65,0.85);
    border-width: 1.5px;
    outline:none;
    -webkit-border-color: rgb(202,163,65,0.85);
}
label {
    padding: 12px 12px 12px 0;
    display: inline-block;
}
h2 {   
	 font-size: 26px; 
   color: #ffffff;
   padding: 10px;    
}
p {
    color: #3f6f47; 
}
a {
    color: #caa341;
}
sub {
    vertical-align: sub;
    font-size: 70%;
}
.text {
  	color: #000000;
  	padding: 5px 10px 0px 10px;
}
.bold {
    font-weight: bold;
}
.none {
    display:none;
}
.img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 98%;
    height: auto;
}
.container {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;     
}
.header {
    background-color: #caa341;
    width: auto;
    min-height: 50px
}
.col-25 {
    float: left;
    width: 50%;
    margin-top: 6px;
}

.col-75 {
    float: left;
    width: 50%;
    margin-top: 6px;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}
.accordion {
    font-size: 1.65rem;
    color: #ffffff;
    padding: 10px; 
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
    background-color: #caa341;    
    cursor: pointer;    
    width: 100%;
    border: none;
    text-align: left;
    outline: none !important;    
    transition: 0.4s;
}

.active, .accordion:hover {
    background-color: #caa341; 
    color: #ffffff;
}

.panel {    
    display: none;
    overflow: hidden;    
    background-color: #f2f2f2;       
}
.output {
    background-color: #ffffff;
    width: 95%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical; 
}
.br-on-mobile {
    display: none;
}
/* Responsive layout - when the screen is less than 600px wide, two columns stack */
@media screen and (max-width: 600px) {
    .col-25, .col-75, input[type=submit] {
        width: 100%;
        margin-top: 0;
    }
    .br-on-mobile {
        display: inherit;
    }
}