body {
  font-family: "Roboto", sans-serif;
  background-color: #f8f9fa;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 20px;
}

::-webkit-scrollbar-thumb {
  background: lightgray;
  border-radius: 20px;
  box-shadow: 0px 2px 5px 1px #000 inset;
}


.data-form {
  margin: 50px 0;
}

.data-form fieldset {
  border: 1px solid lightgray;
  padding: 15px;
  margin-bottom: 15px;
}

.data-form legend {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  width: inherit;
  padding-left: 8px;
  padding-right: 8px;
  margin-bottom: 0;
}

.group-hide {
  width: 0;
  height: 0;
  margin: 0;
  opacity: 0;
}

.data-form .form-label {
  font-weight: bold;
  min-width: 70px;
}

.data-form .form-control {
  padding: 10px;
  height: inherit;
  border-radius: 0;
}

.data-form .form-control:focus {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid lightgray;
}

.data-form input[type='color'] {
  width: 100px;
  height: 50px;
  padding: 0;
  margin: 0;
}

.data-form button {
  border-radius: 0;
  font-size: 20px;
  padding-left: 30px;
  padding-right: 30px;
  text-transform: uppercase;
}

#fileList > div > label > span:last-child {
  color: red;
  display: inline-block;
  margin-left: 7px;
  cursor: pointer;
}

#fileList input[type=file] {
	opacity: 0;
  width: 0;
  height: 0;
}

#fileList > div:last-child > label {
	display: inline-block;
	font: 16px/22px Tahoma;
	color: #0062cc;
	border: 1px solid #0062cc;
  padding: 10px 30px;
  cursor: pointer;
}

#sendingMsg {
  width: 100%;
  margin: 10px auto;
  font-size: 16px;
  padding: 10px;
  background-color: tomato;
  color: #fff;
  display: none;
}

#sendingMsg p {
  margin-bottom: 0;
}

#responseMsg {
  width: 100%;
  font-size: 16px;
}

.error {
  margin-top: 10px;
  padding: 10px;
  color: #b94a48;
  background-color: #f2dede;
  border: 1px solid rgba(185, 74, 72, 0.3);
}

.success {
  margin-top: 10px;
  padding: 10px;
  color: #468847;
  background-color: #dff0d8;
  border: 1px solid #d6e9c6;
}