/*
width: 100%;
    min-width: 220px;
    padding: 5px 9px;
    outline: none;
    border-radius: 5px;
    border: none;
    /* box-shadow: 0 1px 3px rgba(0,0,0,0.3); */ /*
    transition: 0.2s;
    border: 1px solid #d8d8d8;
    font-size: 14px;
	*/

.input-chat{
	width: 100%;
	min-width: 220px;
	padding: 10px 20px;
	padding-right: 46px;
	outline: none;
	border: none;
	border-top: 1px solid #06d755;
	box-shadow: 0 1px 3px rgba(0,0,0,0.3);
	transition: 0.2s;
}
.input-search{
	width: 100%;
	min-width: 220px;
	padding: 8px 20px;
	padding-left: 40px;
	outline: none;
	border-radius: 16px;
	border: 1px solid #d8d8d8;
}
.input-email::placeholder{

}
.input-email{
	width: 100%;
	min-width: 220px;
	padding: 1px 15px;
	outline: none;
	border-radius: 10px;
	border: none;
	background-color: transparent;
	font-size: 14px;
	color: #37A000;
	font-weight: 500;
	transition: 0.2s;
}.input-email:focus{
	transform: scale(1.01);
}.input-field{
	width: 100%;
	min-width: 220px;
	padding: 5px 9px;
	outline: none;
	border-radius: 5px;
	border: 1px solid #d8d8d8;
    font-size: 14px;
}
.input-field-sm{
	width: 100%;
	min-width: 40px;
	padding: 5px 9px;
	outline: none;
	border-radius: 5px;
	border: 1px solid #d8d8d8;
    font-size: 13px;
}
.input-field-amount{
	position: relative;
    width: 100%;
    color: #868686;
    min-width: 30px;
    max-width: 170px;
    text-align: right;
    padding: 5px 9px;
    padding-left: 30px;
    outline: none;
    border-radius: 5px;
    border: 1px solid #d8d8d8;
    font-size: 14px;
}.input-field-amount:focus{
	border-bottom: solid 3px #37A000;
}
.input-field-amount.sm{
	width: 110px;
}
.input-field-bid{
	padding: 3px 5px;
	width: 60px;
	font-size: 14px;
	text-align:right;
	border: solid 0px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.3);
	border-radius: 3px;
}
.input-select{
	width: 100%;
    min-width: 220px;
	padding: 5px 9px;
	outline: none;
	border-radius: 5px;
	border: 1px solid #d8d8d8;
    font-size: 14px;
}
.input-select-sm{
	padding: 5px 9px;
	outline: none;
	border-radius: 5px;
	border: 1px solid #d8d8d8;
    font-size: 14px;
}
.input-textarea{
	width: 100%;
    min-height: 160px;
    padding: 5px 9px;
    border-radius: 5px;
    outline: none;
    border: 1px solid #d8d8d8;
    font-size: 14px;
}
.input-textarea.disabled{
	background-color: #f5f5f5;
}
.input-textarea-note{
	width: 100%;
    min-height: 70px;
    padding: 10px 20px;
	background-color: #fff;
	border: none;
    border-radius: 5px;
    outline: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
	transition: 0.2s;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 29px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 21px;
  width: 21px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #37a000;
}

input:focus + .slider {
  box-shadow: 0 0 1px #37a000;
}

input:checked + .slider:before {
  -webkit-transform: translateX(21px);
  -ms-transform: translateX(21px);
  transform: translateX(21px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Check box smaller */

.switch-sm {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 24px;
}

.switch-sm .check-sm { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider-sm {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider-sm:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

.check-sm:checked + .slider-sm {
  background-color: #37a000;
}

.check-sm:focus + .slider-sm {
  box-shadow: 0 0 1px #37a000;
}

.check-sm:checked + .slider-sm:before {
  -webkit-transform: translateX(16px);
  -ms-transform: translateX(16px);
  transform: translateX(16px);
}

.slider-sm.round {
  border-radius: 34px;
}

.slider-sm.round:before {
  border-radius: 50%;
}


/* CHECK BOX */

/* The container */
.checkbox{
  display: inline-block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%);
  height: 15px;
  width: 15px;
  border: 1px solid #000;
  border-radius:3px;
}

/* On mouse-over, add a grey background color */
.checkbox:hover input ~ .checkmark {
  background-color: #fff;
}

/* When the checkbox is checked, add a blue background */
.checkbox input:checked ~ .checkmark {
  background-color: #0075ff;
  border: 1px solid #0075ff;
}

/* When the checkbox is checked, hover */
.checkbox input:checked ~ .checkmark:hover {
  background-color: #005CC8;
  border: 1px solid #005CC8;
}

.checkbox input:disabled ~ .checkmark{
    background-color: #cacaca;
    border-color: #d6d6d6
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox .checkmark:after {
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}