.charter-form-div {
  display: block;
  margin-bottom: 10px;
}
input.estimate-price {
  display: inline-block !important;
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
	color: #fff;
}
.hidden {
  display: none !important;
}
input.charter-form-input {
  display: inline-block !important;
  margin-bottom: 10px !important;
  width: 45%;
}
.charter-form-div label {
  display: inline-block !important;
}
.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-top: 4px solid #767676;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#message-box {
  border-radius: 4px;
  padding: 4px;
  margin: 10px 0 10px 0;
}
#estimate-box {
  border-radius: 4px;
  padding: 4px;
  margin: 10px 0 10px 0;	
  border: 1px solid #72c172;
  background: #72c172;
  color: #fff;
}
#message-box.success {
  border: 1px solid #72c172;
  background: #72c172;
  color: #006200;
}
#message-box.error {
  border: 1px solid #ef7474;
  background: #ef7474;
  color: #481314;
}