/* CSS Document */
 /*************************************************************************
input style
****/
.istyle1 {font-size:18px; padding:5px;background-color: #fff;  }

	  
.submitstyle {
height: 40px;
background: #26AE58; border-width: thin; 
border-color: #1A4B9D;
color: #ffffff;}

.submitstyle5 {
height: 40px;
background: #ffffff; border-width: thin; 
border-color: #ffffff;
color: #26AE58;}

.submitstyle2 {
height: 40px;
background: #ffffff; border-width: thin; 
border-color: #26AE58;
color: #1A4B9D;}

.submitstyle3 {
height: 40px;
background: #26AE58; border-width: thin; 
border-color: #1A4B9D;
color: #ffffff;}

.submitstyle4 {
background-color: #ffffff; 
color: #26AE58;
font-size:14px;
font-weight: bold;

}

input[type=text] {
-webkit-border-radius: 5px;
border-radius: 0;
border:1px solid #26AE58; 
background:#ffffff; 
color:#000000;
font-size:18px;
}

input[type=date] {
-webkit-border-radius: 5px;
border-radius: 0;
border:1px solid #26AE58; 
background:#ffffff; 
color:#000000;
font-size:18px;
}
input[type=password] {
-webkit-border-radius: 5px;
border-radius: 0;
border:1px solid #26AE58; 
background:#ffffff; 
color:#000000;
}
input[type=text]:focus {border-color:#26AE58; }

textarea {
padding:5px;
border:1px solid #26AE58; 
-webkit-border-radius: 5px;
border-radius: 0;
font-size:18px;	
}

select {
height: 35px;
padding:3px;
-webkit-border-radius: 5px;
border-radius: 0;
border:1px solid #26AE58; 
background:#ffffff; 
color:#000000;
font-size:18px;	
}


input[type=submit] {
width: auto;
border:1px solid #26AE58; 
cursor:pointer;
-webkit-border-radius: 5px;
border-radius: 0;
font-size:18px;
}
input[type=button] {
height: 40px;
width: auto;
border:1px solid #26AE58; 
cursor:pointer;
-webkit-border-radius: 5px;
border-radius: 0;
font-size:18px;
}


#button:hover {
    border: none;
    background:#26AE58;
    box-shadow: 0px 0px 1px #777;
}

input[type=checkbox] {
    width: 25px;
    height: 25px;
    display: inline;
    background:transparent;
    border:0;
	border:1px solid #333; 
}

input[type='radio'] {
  -webkit-appearance:none;
  width:30px;
  height:30px;
  border:1px solid #26AE58;
  border-radius:50%;
  outline:none;
  box-shadow:0 0 5px 0px #26AE58 inset;
  background:white;
}


input[type='radio']:hover {
  box-shadow:0 0 10px 0px #26AE58 inset;
}

input[type='radio']:before {
  content:'';
  display:block;
  width:60%;
  height:60%;
  margin: 20% auto;    
  border-radius:50%;    
}
input[type='radio']:checked:before {
  background:blue;
}

 /***** round slider 
https://www.w3schools.com/howto/howto_js_rangeslider.asp
****/

.slidecontainer {
    width: 100%;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #26AE58;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #26AE58;
    cursor: pointer;
}