.contact-area .form-area .radio-holder {
  display: flex;
  gap: 50px;
  margin-bottom: 20px;
}

.contact-area .form-area .form-radio {
  padding-left: 0;
  min-height: inherit;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-area .form-area .form-radio input[type="radio"] {
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.contact-area .form-area .form-radio label {
  font-size: 16px;
  cursor: pointer;
  color: var(--white);
}

/********************/
.contact-page .contact-form .radio-holder {
  display: flex;
  gap: 50px;
  margin-bottom: 20px;
}

.contact-page .contact-form .form-radio {
  padding-left: 0;
  min-height: inherit;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-page .contact-form .form-radio input[type="radio"] {
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.contact-page .contact-form .form-radio label {
  font-size: 16px;
  cursor: pointer;
}

/* Catalog Page PDF */

.blackquote-pdf-catalog {
  position: relative;
  display: block;
  background: #fff;
  padding: 30px 75px 30px 50px;
  box-shadow: 0px 0px 120px rgba(0, 0, 0, 0.1);
  border-left: 5px solid rgb(22, 62, 41);
  border-radius: 10px;
  width: 800px;
  margin-bottom: 30px;

}

.blackquote-pdf-catalog .text-pdf-catalog {

  text-decoration: none;

  gap: 15px;
  color: #3c3c3c
}

.blackquote-pdf-catalog a i {
  font-size: 46px;
  color: rgb(22, 62, 41);

}

.blackquote-pdf-catalog a h4 {
  font: 700 24px/1.2 var(--montserrat);
}

.blackquote-pdf-catalog .ico i {
  font-size: 30px !important;
}

.blackquote-pdf-catalog .btn:hover .ico i {
  color: #fff !important;
}

@media only screen and (max-width: 991px) {
  .blackquote-pdf-catalog {
    padding: 30px 24px 30px 25px;
  }

  .blackquote-pdf-catalog .text-pdf-catalog {
    margin-bottom: 30px;
  }

  .blackquote-pdf-catalog .btn-primary {
    width: 200px;
  }

  .blackquote-pdf-catalog {
    width: 100%;
  }
}


/* Radio button contact page */
.form-radio input[type="radio"] {
  display: none;
}

/* Style the custom radio */
.form-radio label {
  position: relative;
  padding-left: 40px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
}

/* Create custom radio circle */
.form-radio label::before {
  content: "";
  position: absolute;
  left: 0;
  top: -5px;
  width: 30px;
  height: 30px;
  border: 2px solid green;
  border-radius: 50%;
  background-color: white;
}

/* When checked, fill the custom radio circle */
.form-radio input[type="radio"]:checked+label::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 1px;
  width: 18px;
  height: 18px;
  background-color: green;
  border-radius: 50%;
}


.contact-info-item .content .text a:hover {
    color: var(--green);
    text-decoration: none;
}

 


    /* Modal backdrop */
    .backdrop_modal {
      display: none; /* Hidden by default */
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5);
      align-items: center;
      justify-content: center;
    }

    /* Spinner animation */
    .backdrop_spinner {
      border: 8px solid #f3f3f3;
      border-top: 8px solid var(--green);
      border-radius: 50%;
      width: 60px;
      height: 60px;
      animation: spin 1s linear infinite;
    }

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

    /* Show modal when active */
    .backdrop_modal.show {
      display: flex;
    }