/* INPUT */

form{
    font-size: 2.5vw
}

/*
 .slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 23px;
  height: 24px;
  border: 0;
  background: url('../images/heart_sm.png');
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 23px;
  height: 25px;
  border: 0;
  background: url('../images/heart_sm.png');
  cursor: pointer;
}
.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 1px;
  background: #d3d3d3;
  outline: none;

}*/

label{
    font-size:1vw;
}


input {
  width: 100%;
  border-style: none none dashed none;
  border-bottom-color: black;
  color:black;    
  background-color: #D3FFE2;
  font-size: 2vmax;

  margin-bottom: 20px;
  padding-bottom:20px;
}

input:focus {
    border-color:blue;
    outline: none;

}

input::placeholder {
     color:blue;
     opacity: 1.0;
}

/*Text Area */

textarea {
  width: 100%;
  border-width:2px;
  border-style: dashed dashed dashed dashed;
  border-color: black;
  font-size: 2vmax;
  font-family: Union, Verdana, Arial, Helvetica, sans-serif;
  background-color: #D3FFE2;
  padding: 20px;
  line-height: 3vw;
  text-overflow: ellipsis;

}

textarea::placeholder{
    color:blue;
    opacity:1.0;
}

textarea:focus {
  border-color: blue;
  background-color: #D3FFE2;
  outline: none;
  line-height: 3vw;


}

select {
  width: 100%;

  font-size:2vmax;
  background-color: #D3FFE2;
  border-style: none none dashed none;
  border-width: 2px;
  border-color:black;

  -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;       /* remove default arrow */
   background-image: url(...);   /* add custom arrow */
    

  margin-bottom: 20px;
  padding-bottom:20px;

}

select:focus {
  

  border-color:green;
  outline: none;
  

}

optgroup {

  width: 95%;
  height: 40px;

  font-size:14pt;
  background-color: #D3FFE2;
  border-style: none none dashed none;
  border-width: 2px;
  border-color:black;
    margin-bottom: 20px;
    text-align: center;
    
}

optgroup:hover {

  width: 30vw;
  height: 40px;

  font-size:14pt;
  background-color: #D3FFE2;
  border-style: none none dashed none;
  border-width: 2px;
  border-color:black;
    margin-bottom: 20px;
     text-align: center;
}

option {

  width: 30vw;
  height: 40px;

  font-size:20pt;
  background-color: #D3FFE2;
  border-style: none none dashed none;
  border-width: 2px;
  border-color:black;
}

option:hover {

  width: 30vw;
  height: 40px;

  font-size:14pt;
  background-color: #D3FFE2;
  border-style: none none dashed none;
  border-width: 2px;
  border-color:black;
}

option:disabled {
  color: red;
}



.submit_button {
    background-color: #D3FFE2;
    border: solid 1px;
    border-color: #000000;
    color: #000000;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;

    cursor: pointer;
    width: 30%;
}
.submit_button:hover {
    background-color: #D3FFE2;
    border: solid 1px;
    border-color: green;
    color: green;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;


    cursor: pointer;
    width: 30%;
}

.button {
    background-color: #D3FFE2;
    border: solid 1px;
    border-color: #000000;
    color: #000000;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    margin-top:50px;

    cursor: pointer;
    width: 20%;
}
.button:hover {
    background-color: #D3FFE2;
    border: solid 1px;
    border-color: green;
    color: green;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;


    cursor: hand;
    width: 20%;
}
