:root {
  --c-primary: #7598ab;
}

.tender-form label {
  width: 100% !important;
}

.tender-form .field-required p:after {
  content: "*";
  margin-left: 10px;
  color: var(--c-primary);
}

.tender-form input:focus {
  border-color: #7598ab !important;
}

.tender-form input {
  border-radius: 500px !important;
  height: 40px !important;
  font-size: 14px !important;
  font-weight: 400 !important;
}

.tender-form form p {
  font-family: "CenturyGothic", Sans-serif;
  font-size: 16px;
  line-height: 16px;
}

.tender-form button#submit {
  width: 100%;
  border-radius: 500px !important;
  background: #7598ab;
  padding-top: 20px !important;
  padding-bottom: 20px !important;
  text-transform: uppercase;
  letter-spacing: 5px;
}

.tender-form button:focus {
  background: transparent;
  border: 1px solid #7598ab;
  color: #7598ab;
}
.tender-form .loader {
  width: 48px;
  height: 48px;
  border: 5px solid #7598ab;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  margin: auto;
  display: block;
  margin-bottom: 20px;
  animation: rotation 1s linear infinite;
}

.tender-form .loader.hide {
    display: none  !important;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#tender-form-response{
    text-align: center;
    max-width: 80%;
}

.modal-backdrop.show{
  z-index: 9999;
}

.modal-open .modal{
  z-index: 99999;
  max-width: 100vw !important;
}

.modal-body{
  max-height: 500px;
  overflow: scroll;
  overflow-x: hidden;
}

.btn-primary {
  box-shadow: none !important;
  border-radius: 200px !important;
  background-color: #7598ab !important;
  border-color: #7598ab !important;
  font-family: "CenturyGothic", Sans-serif !important;
  font-weight: 600 !important;
  max-width: 100% !important;
  height: 50px !important;
}

.btn-primary:hover, .btn-primary:hover {
  color:#7598ab !important;
  background-color: transparent !important;
  border: 2px solid #7598ab;
}

.form-field.checkbox.is-toggle .form-field-label {
  margin: 0 !important;
}
.form-field.checkbox.is-toggle .form-field-label {
  padding: 0 !important;
}
.form-field{
  margin: 0;
}

.entry .entry-content a{
  text-decoration: underline !important;
}

.file-list {
  list-style: none;
}
.file-list li {
  margin: 0;
}
.file-list li a {
  position: relative;
  display: block;
  background-color: #f1f1f1;
  color: #333;
  transition: all ease 0.3s;
}
.file-list li a .thumb-nail {
  display: inline-block;
  width: 60px;
  height: 90px;
  overflow: hidden;
  border-radius: 2px;
  float: left;
  box-shadow: 0 -1px 6px rgba(0, 0, 0, 0.2);
}
.file-list li a .thumb-nail img {
  width: 100%;
  height: auto;
  display: inline-block;
}
.file-list li a h3 {
  margin: 0 1rem;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: normal;
  height: 90px;
  line-height: 90px;
}
.file-list li a:after {
  content: "\f063";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  float: right;
  width: 60px;
  height: 90px;
  line-height: 90px;
  font-size: 2rem;
  opacity: 0;
  transition: all ease 0.3s;
}
.file-list li a:hover {
  z-index: 1;
  background-color: #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
}
.file-list li a:hover:after {
  opacity: 1;
  color: #7598ab;
}

.form-input::placeholder {
    color: #bebebe !important;
    font-size: 14px;
    font-weight: 400;
}