.ws-form .form-group {
  margin-bottom: 1rem;
}

.ws-form input,
.ws-form input[type=email],
.ws-form input[type=password],
.ws-form input[type=tel],
.ws-form input[type=text],
.ws-form input[type=number],
.ws-form select,
.ws-form textarea {
  display: block !important;
  width: 100% !important;
  padding: .375rem .75rem !important;
  font-size: 1rem !important;
  line-height: 1.5 !important;
  background-clip: padding-box !important;
  border-radius: .25rem !important;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out !important;
}

.ws-form input[type=checkbox] {
  display: inline !important;
  width: auto !important;
}

.ws-demo-form input,
.ws-demo-form input[type=email],
.ws-demo-form input[type=password],
.ws-demo-form input[type=tel],
.ws-demo-form input[type=text],
.ws-demo-form select,
.ws-demo-form textarea {
  color: #fff !important;
  border: none !important;
  background-color: rgba(255, 255, 255, 0.5) !important;
}

.ws-form .btn {
  display: inline-block !important;
  font-weight: 400 !important;
  text-align: center !important;
  white-space: nowrap !important;
  vertical-align: middle !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
  border: 1px solid transparent !important;
  padding: .375rem .75rem !important;
  font-size: 1rem !important;
  line-height: 1.5 !important;
  border-radius: .25rem !important;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out !important;
  cursor: pointer !important;
}

.ws-form .w-50 {
  width: 50% !important;
}

.ws-form .w-100 {
  width: 100% !important;
}

.ws-form .ws-bg-white {
  background-color: #fff !important;
}

.ws-form .ws-text-green {
  color: #00ff8c !important;
}

.ws-form .ws-text-black {
  color: #000000 !important;
}

.ws-form .ws-bg-green {
  background-color: #00ff8c !important;
}

.ws-form .ws-bg-grey {
  background-color: #b4b4b4 !important;
}

.ws-form .ws-text-white {
  color: #fff !important;
}

.ws-demo-form ::-webkit-input-placeholder {
  color: #fff !important;
}

.ws-demo-form :-ms-input-placeholder {
  color: #fff !important;
}

.ws-demo-form ::placeholder {
  color: #fff !important;
}

/* Modal styles */
.modal {
  top: 100px;
}

.modal-header {
  text-align: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #c7c7c7;
}

.modal hr {
  border-color: #c7c7c7;
}

.modal-header img {
  max-width: 50%;
}

.modal.modal-lg {
  width: 80%;
  max-width: 800px;
}

.blocker {
  z-index: 999999 !important;
}

#ws-ja-job-modal {
  font-size: 11px;
}

#ws-ja-job-modal .ws-title {
  font-size: 14px;
}

#ws-ja-job-modal ul {
  list-style: disc;
  margin: 10px 15px;
}

#ws-ja-job-modal .ws-meta {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

@media screen and (min-width: 1000px) {
  #ws-ja-job-modal .ws-meta {
    flex-direction: row;
  }
}

#ws-ja-job-modal .ws-description {
  margin-top: 20px;
}

#ws-ja-job-modal .ws-apply-buttons {
  margin-top: 3rem;
  margin-bottom: 3rem;
  text-align: center;
}

#ws-ja-job-modal .ws-job-footer {
  text-align: center;
}

#ws-ja-job-modal .ws-job-footer img {
  max-width: 200px;
}

/* Payment styles */
.payment-message {
  display: none;
  font-size: 16px;
  text-align: center;
}

/* Loading styles */
.spinner {
  width: 50px;
  height: 50px;
  position: relative;
  margin: auto;
}

.spinner__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  background-color: rgba(255, 255, 255, 0.8);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 200ms ease-in-out;
  transition: opacity 200ms ease-in-out; }

.spinner__wrapper.show {
  position: absolute;
  opacity: 1;
}

.double-bounce1,
.double-bounce2 {
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: #00d6c7;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0); }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

/* Job list styles */
.ws-ja-job {
  background-color: #f5f5f5;
  margin: 15px;
  padding: 20px;
  border-radius: 5px;
}

.ws-ja-job-title a {
  display: block;
  padding: 10px;
}

.ws-ja-job-meta {
  padding: 10px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

@media screen and (min-width: 1000px) {
  .ws-ja-job-meta {
    flex-direction: row;
  }
}

.ws-ja-job-summary {
  margin-bottom: 20px;
}

.ws-ja-job a.btn {
  display: inline-block;
}
