.grecaptcha-badge {
    display: none !important;
}

span.wpcf7-not-valid-tip {
    color: #000 !important;
}

.sidebar-label {
    background-color: rgb(247,141,32);
    padding: 20px 25px;
    color: #fff;
    font-weight: bold;
    line-height: 24px;
}

.product-form {
    padding: 10px 25px 20px;
    background-color: #fff;
    min-height: 450px;
}

.product-form sup {
    font-size: 12px !important;
}

.product-form .radio-button-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 5px;
}

.product-form .radio-button-wrap .radio-button {
    max-width: 100px;
    min-width: 100px;
    font-size: 13px;
    line-height: normal;
}

.product-form .radio-button-title {
    display: inline-block;
    font-size: 15px;
    margin-bottom: 10px;
}

.product-form .fields-wrap input {
    background-color: #ebebeb;
    border: none;
    margin-bottom: 5px;
    color: #000;
    padding: 10px;
}

.product-form br {
    display: none !important;
}

.product-form p {
    margin: 0 !important;
}

.product-form .hidden-fields {
    opacity: 0;
    position: absolute;
}

.product-form .lower-block p {
    display: contents !important;
}

.product-form .fields-wrap input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #000;
    opacity: 1; /* Firefox */
  }
  
.product-form .fields-wrap input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #000;
}
  
.product-form .fields-wrap input::-ms-input-placeholder { /* Microsoft Edge */
    color: #000;
}

.product-form .fields-wrap input:focus{
    outline-color: #f78d20;
}

.product-form .phone-wrap {
    padding-right: 10px;
    display: flex;
    flex-direction: column;
}

.product-form .phone-label {
    font-size: 13px;
}

.product-form .phone-link {
    color: #f78d20;
    font-size: 16px;
    text-decoration: underline;
    font-weight: bold;
}


.product-form [type="submit"],
#wpcf7-f3551-p1738-o2 .wpcf7-submit {
    transition: all .2s ease !important;
    padding: 8px 30px !important;
    background-color: transparent !important;
    text-transform: uppercase !important;
    border-radius: none !important;
    display: inline-block !important;
    font-family: "Lato",sans-serif !important;
    font-weight: normal !important;
    border-radius: 0px !important;
    border-width: 1px !important;
    border-color: rgb(112, 112, 112) !important;
    border-style: solid !important;
    color: rgb(34, 34, 34) !important;
    padding: 10px 20px !important;
    margin: 0 !important;
    font-size: 12px !important;
    transition: all .2s ease !important;
}

.product-form [type="submit"]:hover,
#wpcf7-f3551-p1738-o2 .wpcf7-submit:hover {
    cursor: pointer !important;
    background-color: rgb(247,141,32) !important;
    color: #fff !important;
    border-color: rgb(247,141,32) !important;
} 

.product-form .lower-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 5px;
}

/* Custom radio button */

.radio-button {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 17px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
  
  .radio-button input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: #fff;
    border-radius: 50%;
    border: 1.5px solid #000;
  }
  
  .radio-button:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  .radio-button input:checked ~ .checkmark {
    background-color: #fff;
    border: 1.5px solid #000;

  }
  
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  .radio-button input:checked ~ .checkmark:after {
    display: block;
  }
  
  .radio-button .checkmark:after {
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #f78d20;
  }

  /* Custom select */

  .product-form select {
    border: 1px solid #ebebeb !important;
    padding: 10px !important;
    color: #000 !important;
    position: relative !important;
    font-weight: 300 !important;
  }
.product-form-dropdown {
    position: relative;
}

.product-form-dropdown:after {
    content: "";
    position: absolute;
    right: 10px;
    top: 15px;
    width: 0; 
    height: 0; 
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #574f4f;
}