/* Miscellanious */

.top-content {
  opacity: 0;
  transition: opacity 0.3s;
}

#hero-num:hover {
    color: gray;
  }
  
  .textcap {
    text-transform: capitalize;
  }
  
  /* 6 Services Radio Buttons Styling */
  
  label.btn {
    color: black;
    font-weight: bold;
  
    text-align: center;
  
    font-size: 1.05rem;
  
    line-height: 18px;
  
    width: 100%;
      
    transition: all 100ms ease-in;
  }
  
  label {
    text-align: left;
  }
  

  .btn-container {
    margin-bottom:10px;
  }

  .btn-container label {

    height: 100%;
  }

  .btn-container {
    font-size:85% !important;
}

.btn-container label.misc-shipping-capture {
    font-size:1rem;
    justify-content: center;
}

  /* bs media queries */
  /* md */
  @media (min-width: 768px) and (max-width: 991.98px) {
    .btn-container label {
        font-size:0.9rem !important;
        height:95%;
    }   

    .btn-container label > input {
        font-size:0.9rem !important;

    }

    .btn-container label.misc-shipping-capture {
        font-size:0.7rem !important;        
    }
  }
  

  
  #form-heading {
    font-size: 4.25rem;
    line-height: 50px;
  }

  #stepped {
    position: relative;
  }


  .services .banner-detail {
    padding-top:10% !important;
  }

  @media screen and (max-width: 1366px) and (max-width: 1680px) {
    .banner-detail { padding-top: 10% !important; } 
  }

  
  
  /* ---------- Help Tip Styling -----*/
  
  .help-tip {
    position: absolute;
  
    bottom: 9px;
    right: 25px;
    text-align: center;
  
    background-color: #dfdfdf;
  
    border-radius: 50%;
  
    border: 2px solid darkgrey;
  
    width: 20px;
  
    height: 20px;
  
    font-size: 13.5px;
  
    line-height: 17px;
  
    cursor: default;
  }
  
  
  
  .help-tip:before {
    content: "?";
  
    font-weight: bold;
  
    color: rgb(126, 126, 126);
  }
  
  .help-tip:hover p {
    display: block;
  
    transform-origin: 100% 0%;
  
    -webkit-animation: fadeIn 0.3s ease-in-out;
  
    animation: fadeIn 0.3s ease-in-out;
  }
  
  .help-tip p {
    /* The tooltip */
  
    display: none;
  
    text-align: left;
  
    background-color: #1e2021;
  
    padding: 15px;
  
    width: 200px;
  
    position: absolute;
  
    border-radius: 3px;
  
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  
    bottom: 40px;
  
    right: -7px;
  
    color: #fff;
  
    font-size: 13px;
  
    line-height: 1.4;
  }
  
  .help-tip p:before {
    /* The pointer of the tooltip */
  
    position: absolute;
  
    content: "";
  
    width: 0;
  
    height: 0;
  
    border: 6px solid transparent;
  
    border-top-color: #1e2021;
  
    right: 7px;
  
    top: 82px;
  }
  
  .help-tip p:after {
    /* Prevents the tooltip from being hidden */
  
    width: 100%;
  
    height: 40px;
  
    content: "";
  
    position: absolute;
  
    top: -40px;
  
    left: 0;
  }
  
  /* CSS animation */
  
  @-webkit-keyframes fadeIn {
    0% {
      opacity: 0;
  
      transform: scale(0.6);
    }
  
    100% {
      opacity: 100%;
  
      transform: scale(1);
    }
  }
  
  
  /*Form Styling Hidden + Non Centered Inputs*/
  
  .hidden {
    display: none;
  }
  
  .input-group-text {
    text-align: center;
  }
  
  .new-form-select {
    width: 100%;
  
    height: calc(1.5em + 0.75rem + 2px);
  
    border-radius: 0.25rem;
  
    padding: 0px 10px;
  
    background-color: white;
  
    color: #495057;
  
    font-size: 1rem;
  
    border: 1px solid #ced4da;
      
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  
    
  }
  
  .btn-dark {
    background-color: #1f1f1f;
  }
  
  /* Form Footer Styling + Custom Image Path */
  
  .form-footer-border {
    border-top: 7px solid transparent;
  
    border-image: url(https://www.heavyhaulers.com/images/hh-label-icons/hh-form-footer-border.jpg)
      20 round;
  }
  
  /* Steps Circles Styling */
  
 .form-container {
    background-image: url(https://www.heavyhaulers.com/images/hh-label-icons/grey-concrete-bg.jpg);
  
    background-size: contain;
  
    background-position: center;
  }
  
  .bg-warning {
    color: black !important;
    background-color: #ffc107 !important;
    font-weight: bolder;
      
  }
  
  
  
  /* Submit Button */
  
  #submit {
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.35);
  }
  
  #submit:hover {
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.35);
  
    background-color: black;
  
    color: white;
  
    border: 1px solid black;
  }
  
  /* Form Inputs + Form Label Targetted Styling */
  
  label {
    color: black;
  
    font-weight: bold;
  
    text-align: left;
  
    font-family: "Yantramanav", sans-serif;
  
    font-size: 19px;
  }
  
  div.steps label {
    margin-bottom: 7px;
  
    font-size: 1rem;
  }
  
  div.form-group label,
  div.form-select label {
    font-size: 1.15rem;
  }
  
  .form-inputs {
    display: block;
  
    width: 100%;
  
    height: calc(1.5em + 0.75rem + 2px);
  
    padding: 0.375rem 0.75rem;
  
    font-size: 1rem;
  
    font-weight: bold;
  
    line-height: 1.5;
  
    color: black;
  
    background-color: white;
  
    border: solid 2px #777777;
  
    background-clip: padding-box;
  
    border-radius: 0.25rem;
  
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  }
  
  .form-inputs:focus,
  .form-control:focus {
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.35);
  }
  
  .form-inputs:focus {
    border: solid 2px #444444;
  }
  
  /* Core Form Stlying + Steps Styling*/
  
  .indicators * {
    transition: all 0.4s ease-out;
  }
  
  
  .steps.active {
    width: 100%;
  
    position: relative;
  
    z-index: 0;
  
    visibility: visible;
  
    opacity: 1;
  
    
  }
  
  /* animation for input boxes */
  
  .form-control.invalid {
    border: 2px solid #ec2626 !important;
  
    /* paste any animation you want */
  
    animation: shaking 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  
    transform: translate3d(0, 0, 0);
  
    backface-visibility: hidden;
  
    perspective: 1000px;
  
    transition: all 0.4s ease-in-out;
  }
  
  @keyframes shaking {
    10%,
    90% {
      transform: translate3d(-2px, 0, 0);
    }
  
    20%,
    80% {
      transform: translate3d(4px, 0, 0);
    }
  
    30%,
    50%,
    70% {
      transform: translate3d(-8px, 0, 0);
    }
  
    40%,
    60% {
      transform: translate3d(8px, 0, 0);
    }
  }
  
  .hidden {
    opacity: 0;
  
    visibility: hidden;
  
    pointer-events: none;
  
    transition: all 200ms ease-in-out;
  }
  
  .show {
    opacity: 1;
  
    visibility: visible;
  
    pointer-events: auto;
  
    transition: all 200ms ease-in-out;
  }
  
  /* To Be Determined */
  
  #shadow {
      -webkit-box-shadow: 0px 0px 36px -4px rgba(0,0,0,0.57);
  -moz-box-shadow: 0px 0px 36px -4px rgba(0,0,0,0.57);
  box-shadow: 0px 0px 36px -4px rgba(0,0,0,0.57);
  }
          
  /*
          .form-neg-bottom{
              margin-bottom: -200px;
          }
  */
  
  @media only screen and (max-width: 335px) {

    .form-input-mr {
        font-size: 14px;
    }

}

#misc-label {
  background-color: #ffc107;
  color: black;
  border: 2px solid black;
  border-radius: 5px;
  max-width: 400px;
  padding: 5px 10px;
  text-align: center;
  cursor: pointer;
}

.text-muted {
  color: #626970 !important;
}



@media (max-width: 525px) {
  #misc-label {
      width: 85%;
  }
}




.category-radio{
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  cursor: pointer;
  top: 0;
}


.category-label{
  height: 100%;
  display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.category-wrap:hover{
  background-color: #f8f8f8;
  font-weight: bold;
  color: white !important;
  transition: filter 0.3s ease; /* Optional: for smooth transition */
}



.active-step {
  padding: 20px;
  min-height: 322px;
}

.form-btn-wrap{
  display: flex;
  justify-content: space-around;
}

.active-indicator{
  background-color: #ffc107 !important;
  border: 2px solid black;
  color: black;
}

/* 
.banner + div, 
.banner + section{
      padding-top: 30rem;
      
}


@media (min-width: 576px) and (max-width: 991.98px) {
  .banner + div, 
  .banner + section{
        padding-top: 26rem !important;
  }


}


@media (min-width: 992px) and (max-width: 2600px) {
  .banner + div, 
  .banner + section{
        padding-top: 20rem !important;
  }


}
 */


/* .banner + div section:nth-child(1){
  padding-top: 300px !important;
} */

.form-heading {
  font-size: 32px !important;
}

.form-label-description {
  font-weight: normal;
  font-style: italic;
  font-size: 12px;
  margin-top: 10px;
}


.category-wrap{
  border-right: 2px solid black;
  padding: 0;
}

@media only screen and (max-width: 991px) {
  .category-wrap{
    border: none;
  }

  .category-label{
    border: 1px solid black
  }
}

.category-wrap:last-child {
  border-right: none;
}


#sharedFields{
  display: flex; 
  flex-wrap: wrap; 
  padding-right: 0;
  padding-left: 0;
}

