/*----------Input (Start)----------*/
input[type=text], input[type=password], textarea {
    min-width: 1px;
    width: 100%;
    max-width: 100%;
    background: none;
    border: 1px solid #c5c5c5;
    padding: 2px 3px;
    border-radius: 0px;
	box-shadow: none;
}
textarea {
    resize: vertical;
}

input[type=text]:FOCUS, input[type=password]:FOCUS, textarea:FOCUS {
	box-shadow: 0px 0px 3px #227799;
}
/*----------Input (End)----------*/
/*----------Button (Start)----------*/
button {
    background: none;
    background-color: #ed1a3b;
    padding: 3px 10px;
    color: #fff;
    border: none;
    border-radius: 0px;
}
button:hover {
    background: none;
    border: 1px solid yellow;
    color: #000;
/*     padding: 2px 9px;
 */}
/*----------Button (End)----------*/
/*----------Select (Start)----------*/
select {
    background: none;
    border: 1px solid #c5c5c5;
    min-width: 20px;
    width: 100%;
    max-width: 100%;
    color: #c5c5c5;
}
select option {
}
/*----------Select (End)----------*/

/*----------Placeholder (Start)----------*/
::-webkit-input-placeholder {
   color: #c5c5c5;
   font-style: italic;
}
:-moz-placeholder { /* Firefox 18- */
   color: #c5c5c5;
   font-style: italic;
}
::-moz-placeholder {  /* Firefox 19+ */
   color: #c5c5c5;
   font-style: italic;
}
:-ms-input-placeholder {  
   color: #c5c5c5;
   font-style: italic;
}

.phover-type ::-webkit-input-placeholder {
   color: #9cd0e8;
   font-style: italic;
}
.phover-type :-moz-placeholder { /* Firefox 18- */
   color: #9cd0e8;
   font-style: italic;
}
.phover-type ::-moz-placeholder {  /* Firefox 19+ */
   color: #9cd0e8;
   font-style: italic;
}
.phover-type :-ms-input-placeholder {  
   color: #9cd0e8;
   font-style: italic;
}
/*----------Placeholder (End)----------*/
/*----------HiperLink (Start)----------*/
a:HOVER {
	cursor: pointer !important;
}
/*----------HiperLink (End)----------*/
/*----------Scroll browser (Start)----------*/
::-webkit-scrollbar {
    background: none !important;
    width: 12px !important;
}
::-webkit-scrollbar-track {
  	background: rgba(0,0,0,0.3) !important;
}
::-webkit-scrollbar-thumb {
  	background: #00afef;
}

::-moz-scrollbar {
	width: 12px;
}
::-moz-scrollbar-track {
	background:#000;
}
::-moz-scrollbar-thumb {
	border-radius: 10px;
	background:#7A252B;
}
/*----------Scroll browser (End)----------*/