.appearance (@value: none){
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}
.fieldname{
    font-size: 14px;
    font-weight: 500;
    margin: 10px 0px 2px 0px;
    color: #000000;
}
.text-icon{
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -1px;
    margin: 0px 0px 60px 0px; 
    color: #253642;
}
input[type="text"]{
    width: calc( 100% - 24px);
    padding: 10px 12px;
    font-size: 18px;
    font-family: 'Roboto',Sans-Serif;
    font-weight: 400;
    color: #000000; 
    border: 1px solid #dddddd;; 
    border-radius: 5px;
    background-color : #ffffff; 
    outline: none;
    -webkit-appearance: none;

}
input[type="text"]:focus {
    border: 1px solid #444444; 
    background-color: #ffffff;
    -webkit-transition-duration: 0.5s; /* Safari */
    transition-duration: 0.5s;
}

.custom-select {
    height: 44px;
    color: #333333; 
    background-color: #ffffff;
    border: 0px;
    border-radius: 5px;
    border-bottom: 1px solid #aaaaaa;
    padding: 8px 8px;
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    outline: none;
    cursor: pointer;
    width: calc( 100% - 24px);
}
.custom-select:focus {
    background-color: #ffffff;
    -webkit-transition-duration: 0.5s; /* Safari */
    transition-duration: 0.5s;
}

::-webkit-input-placeholder { /* Chrome */
    color: #999999;
    font-size: 16px;
    font-weight: 400;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #999999;
  font-size: 12px;
  font-weight: 400;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #999999;
  font-size: 12px;
  font-weight: 400;
  opacity: 1;
}
:-moz-placeholder { /* Firefox 4 - 18 */
  color: #999999;
  font-size: 12px;
  font-weight: 400;
  opacity: 1;
}

