body {
  font-family: open sans, salesforce sans, sans-serif;
}
/*mobile css*/

@media screen and (max-width: 600px) {
  .col-md-3 {
    width: unset !important;
  }
  .col-md-6 {
    width: 100% !important;
  }

  .top-txt p {
    width: 90% !important;
  }
}

.navbar-brand {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  text-decoration: none;
  white-space: nowrap;
  margin: 0 auto;
}
.top-txt p {
  text-align: center;
  width: 21%;
  display: block;
  margin: 0 auto;
  margin-top: 20px;
  font-family: open sans, salesforce sans, sans-serif;
  color: rgb(105, 105, 105);
  font-size: 13px;
  box-sizing: border-box;
  line-height: 1.42;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.btn-primary {
  color: #747474;
  background-color: #ffffff;
  border-color: #747474;
  margin-top: 26px;
  padding: 5px 36px 5px 36px;
}
.top-form {
  margin-top: 50px;
}
.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1.2px solid #787878;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-label {
  margin-bottom: 0.5rem;
  color: rgb(44, 54, 67);
  font-weight: 700;
  font-size: 14px;
  font-family: open sans, salesforce sans, sans-serif;
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
  border: 1px solid #787878;
  border-radius: 5px;
}
.form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
  display: none;
}
.form-check-input[type="checkbox"] {
  border-radius: 0.25em;
  display: none;
}
button.tablinks,
.reqlinks {
  width: 28%;
  padding: 3px;
  border-radius: 5px;
  border: 1px solid #787878;
  margin-bottom: 14px;
}
.reqlinks-active,
.tablinks-active {
  background: #00c2ff;
}

.tabcontent {
  display: none;
}
.mb-4 {
  margin-bottom: 0.5rem !important;
}

.btn-success {
  color: #fff;
  background-color: #20c6ff;
  border-color: #00c2ff;
  float: right;
  margin-top: 22px;
}
button.tablinks.active {
  background-color: rgb(79, 168, 216);
  color: #fff;
  font-size: 16px;
  border: none;
}
select {
  padding: 7px;
  border-radius: 5px;
  width: 104%;
}

.cat {
  color: #030202;
  background-color: #ffffff;
  border-color: #747474;
  margin-top: 26px;
  border: 1px solid #747474;
  float: left;
}

.cat label {
  float: left;
  line-height: 3em;
  width: 10rem;
  height: 3em;
}

.cat label span {
  text-align: center;
  /* padding: 3px 0; */
  display: block;
}

.cat label input {
  position: absolute;
  visibility: hidden;
  color: #fff !important;
}
/* selects all of the text within the input element and changes the color of the text */
.cat label input + span {
  color: #747474;
}

/* This will declare how a selected input will look giving generic properties */
.cat input:checked + span {
  color: #ffffff;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
}

/*
  This following statements selects each category individually that contains an input element that is a checkbox and is checked (or selected) and chabges the background color of the span element.
  */

.action input:checked + span {
  background-color: rgb(79, 168, 216);
}
.error{
    color: red;
}