

.virtualAppointmentOptions fieldset {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1em !important;
}



.virtualAppointmentOptions legend {
  line-height: 24px;
  color: #999;
  font-family: 'minion-pro', serif;
  font-size: 16px;
  letter-spacing: 1px;
  text-rendering: optimizeSpeed;
  font-variant-ligatures: no-common-ligatures;
  margin: 0 0 0.5rem 0.2rem;
}

.virtualAppointmentOptions label.checkbox-container {

  margin-right: 12px;
}

.virtualAppointmentOptions .cbx-group{
  display:flex;
  flex-wrap: wrap;
}



::placeholder, select {
  font-size:14px !important;
}



form .arrow {
    position: absolute;
    cursor: pointer;
    top: 18px;
    right: 33px;
    width: .4em;
    height: .4em;
    border-right: .2em solid #000;
    border-top: .2em solid #000;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    pointer-events: none;
}




/* Custom Radio Buttons */
/* https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_custom_radio */


/* The container */
.radio-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 3px;
    cursor: pointer;
    font-size: 1rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color:#444;
    margin-right: 1rem;
  }
  
  /* Hide the browser's default radio button */
  .radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }
  
  /* Create a custom radio button */
  .radio-container .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 26px;
    width: 26px;
    background-color: #eee;
    border-radius: 50%;
  }
  
  /* On mouse-over, add a grey background color */
  .radio-container:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the radio button is checked, add a blue background */
  .radio-container input:checked ~ .checkmark {
    background-color: #999;
  }
  
  /* Create the indicator (the dot/circle - hidden when not checked) */
  .radio-container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the indicator (dot/circle) when checked */
  .radio-container input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the indicator (dot/circle) */
  .radio-container .checkmark:after {
       top: 9px;
      left: 9px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: white;
  }
  
  .radio-group {
    display: flex;
    margin-bottom: 14px;
    position: relative;
  }
  
  
  
  
  
  
  /* Custom Checkboxes */
  /* https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_custom_checkbox */
  
  /* The container */
  .checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 0;
    margin-left:5px;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 0.5px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color:#999;
  }
  
  /* Hide the browser's default checkbox */
  .checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .checkbox-container .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #fff;
    border: 1px solid #e1e1e1;
  }
  .checkbox-container .checkmark.error {
    border-color: #c22026;
}

  .checkbox-container.valid .checkmark.error {
    border-color: initial;
  }
  
  /* On mouse-over, add a grey background color */
  .checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  .checkbox-container input:checked ~ .checkmark {
    background-color: #999;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkbox-container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .checkbox-container input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .checkbox-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
  fieldset label.checkbox-container p {

    /*margin: 0;*/
    /*font-size: 10px;*/
    line-height: 24px;
  
  }
  

  fieldset label.checkbox-container p + p {
    margin: 0;
    height: 0;
    visibility: hidden;

  }


  
  
  
  
  
  
  
  
  
  
  
  
  
  .button i {
    margin-right: 0.1875rem;
  }
  
  form {
    font-family: "minion-pro", serif;
    letter-spacing: -0.03125em;
    margin: 0 0 1.5rem;
  }
  
  fieldset {
    position: relative;
    display: block;
    padding: 0;
    margin: 0;
  }
  

  
  label {
    display: none;
    /*vertical-align: top;*/
    cursor: pointer;
    font-size: 14px;
    line-height: 21px;
    padding: 0;
  }
  
  input,
  select,
  textarea {
    font-family: "minion-pro", serif;
    display: block;
    width: 100%;
    outline: none;
    background-color: transparent;
    border: 1px solid #e1e1e1;
    color: #dfdfdf;
    border-radius: 1px;
    font-size: 1rem;
    line-height: 1.5rem;
    padding: 6px 5px 5px 14px;
    border-width: 1px;
    /*margin-bottom: 20px;*/
    background-color: #fff;
    box-sizing: border-box;
    transition: all 0.2s ease-in-out;
  }
  
  input.error,
  select.error,
  textarea.error {
    margin-bottom:0;
  }

  
  input:active, input:focus,
  select:active,
  select:focus,
  textarea:active,
  textarea:focus {
    border-color: #212121;
  }
  
  
  textarea {
    resize: none;
  }
  
  
  
  
  
  
  
  /*!
   * Float Labels
   * @version: 3.3.9
   * @author: Paul Ryley (http://geminilabs.io)
   * @url: https://pryley.github.io/float-labels.js
   * @license: MIT
   */
  .fl-form .fl-wrap {
    position: relative;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  .fl-form input.fl-input,
  .fl-form select.fl-select,
  .fl-form textarea.fl-textarea {
    width: 100%;
    outline: 0;
    font-size: 17px;
    letter-spacing: 1px;
    line-height: 36px;
    border-radius: 1px;
    border: 1px solid #e1e1e1;
    background-color: #fff;
    box-sizing: border-box;
    transition: all 0.2s ease-in-out;
    color: #000;
}

.fl-form input.fl-input,
.fl-form select.fl-select {
  height: 50px;
}

.fl-form textarea.fl-textarea {
    line-height: 24px;
    padding-top: 13px;
    padding-bottom: 11px;
}



  
  .fl-form input.fl-input:-moz-placeholder,
  .fl-form select.fl-select:-moz-placeholder,
  .fl-form textarea.fl-textarea:-moz-placeholder {
    color: #999;
  }
  
  .fl-form input.fl-input::-moz-placeholder,
  .fl-form select.fl-select::-moz-placeholder,
  .fl-form textarea.fl-textarea::-moz-placeholder {
    color: #999;
  }
  
  .fl-form input.fl-input:-ms-input-placeholder,
  .fl-form select.fl-select:-ms-input-placeholder,
  .fl-form textarea.fl-textarea:-ms-input-placeholder {
    color: #999;
  }
  
  .fl-form input.fl-input::-webkit-input-placeholder,
  .fl-form select.fl-select::-webkit-input-placeholder,
  .fl-form textarea.fl-textarea::-webkit-input-placeholder {
    color: #999;
  }
  
  .fl-form select.fl-select {
    position: relative;
    color: #999;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
  }
  
  .fl-form select.fl-select::-ms-expand {
    display: none;
  }
  
  .fl-form .fl-is-active input.fl-input,
  .fl-form .fl-is-active select.fl-select,
  .fl-form .fl-is-active textarea.fl-textarea {
    color: #444;
    background-color: #fff;
    border-color: #e1e1e1;
  }
  
  .fl-form .fl-has-focus input.fl-input,
  .fl-form .fl-has-focus select.fl-select,
  .fl-form .fl-has-focus textarea.fl-textarea {
    background-color: #fff;
    border-color:#444;
  }
  
  .fl-form label.fl-label {
    opacity: 0;
    visibility: hidden;
    display: block;
    position: absolute;
    top: 6px;
    left: 15px;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 12px;
    color: #999;
    transition: all 0.2s ease-in-out;
    z-index: 1;
    letter-spacing: 0.5px;
  }

 .fl-form .fl-wrap-textarea label.fl-label {
    top: 1px;
    padding-top: 6px;
    padding-right: 3px;
    background-color: #fff;
 }


  
  body[dir=rtl] .fl-form label.fl-label {
    left: unset;
    right: 0;
  }
  
  .fl-form .fl-is-active label.fl-label {
    opacity: 1;
    visibility: visible;
  }
  
  .fl-form .fl-has-focus label.fl-label {
      /*
    color: #222;
    */
  }
  
  
  
  .fl-form .fl-is-required.valid:before {
    content: "";
    background-color: transparent;
    position: absolute;
    z-index: 999;
    right: 13px;
    top: 13px;
    width: 5px;
    border-bottom: 3px solid #999;
    height: 13px;
    border-right: 3px solid #999;
    transform: rotate(45deg);
      -o-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -webkit-transform: rotate(45deg);
  }
  
  
  
  /*
  .radio-group.required:before {
    opacity: 1;
    content: '*';
    display: block;
    position: absolute;
    top: 1px;
    right: 15px;
    font-size: 16px;
    line-height: 1.75;
    color: #ccc;
    transition: all 0.2s ease-in-out;
    z-index: 1;
  }
  */
  
  
  /*
  .fl-form .fl-is-required.valid:before {
    opacity: 1;
    content: '✓';
    display: block;
    position: absolute;
    top: 1px;
    right: 15px;
    font-size: 16px;
    line-height: 1.75;
    color: #ccc;
    transition: all 0.2s ease-in-out;
    padding: 6px 0 0;
    z-index: 1;
  }
  */
  
  
  
  
  body[dir=rtl] .fl-form .fl-is-required:before {
    right: unset;
    left: 15px;
  }
  
  /*
  .fl-form .fl-is-required.fl-is-active:before {
    opacity: 0;
  }
  */
  
  .fl-form.fl-style-1 input.fl-input,
  .fl-form.fl-style-1 select.fl-select,
  .fl-form.fl-style-1 textarea.fl-textarea {
    padding: 6px 12px;
  }
  
  .fl-form.fl-style-1 select.fl-select {
    height: 38px;
  }
  
  .fl-form.fl-style-1 .fl-is-active input.fl-input,
  .fl-form.fl-style-1 .fl-is-active select.fl-select,
  .fl-form.fl-style-1 .fl-is-active textarea.fl-textarea {
    padding: 6px 12px;
  }
  
  .fl-form.fl-style-1 label.fl-label {
    top: 1px;
    left: 10px;
    background-color: transparent;
    padding: 12px 3px;
  }
  
  .fl-form.fl-style-1 label.fl-label:before {
    content: '';
    display: block;
    position: absolute;
    top: 19px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #fff;
    z-index: -1;
  }
  
  .fl-form.fl-style-1 .fl-is-active label.fl-label {
    top: -9px;
    padding: 3px;
  }
  
  .fl-form.fl-style-1 .fl-is-active label.fl-label:before {
    top: 9px;
  }
  
  body[dir=rtl] .fl-form.fl-style-1 label.fl-label {
    left: unset;
    right: 10px;
  }
  
  .fl-form.fl-style-2 input.fl-input,
  .fl-form.fl-style-2 select.fl-select,
  .fl-form.fl-style-2 textarea.fl-textarea {
    padding: 12px;
  }
  
  .fl-form.fl-style-2 select.fl-select {
    height: 50px;
  }
  
  .fl-form.fl-style-2 .fl-is-active input.fl-input,
  .fl-form.fl-style-2 .fl-is-active select.fl-select,
  .fl-form.fl-style-2 .fl-is-active textarea.fl-textarea {
    padding: 18px 12px 6px;
  }
  
  .fl-form.fl-style-2 label.fl-label {
    top: 1px;
    left: 10px;
    padding: 6px 3px 3px;
  }
  
  .fl-form.fl-style-2 .fl-is-required:before {
    padding-top: 12px;
  }
  
  body[dir=rtl] .fl-form.fl-style-2 label.fl-label {
    left: unset;
    right: 10px;
  }

  /*
  
  .fl-form .fl-wrap-select:after {
    content: '';
    position: absolute;
    display: block;
    top: 1px;
    right: 6px;
    height: calc(100% - 2px);
    width: 12px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 16'%3E%3Cpath fill='%23bbb' d='M 4 0 L 0 6.5 L 8 6.5 L 4 0 z M 0 9.5 L 4 16 L 4 16 L 8 9.5 z'/%3E%3C/svg%3E") no-repeat;
    background-position: 100% 50%;
    background-size: 7px 14px;
    z-index: 2;
  }
  */

  body[dir=rtl] .fl-form .fl-wrap-select:after {
    right: unset;
    left: 6px;
  }
  
  form a {
    color: #444;
  }
  
  form a:hover {
      /*
    text-decoration: underline;
    */
  }
  
   
  
  form .button {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Knockout 48 A","Knockout 48 B",sans-serif;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 2px;
    padding: 10px 30px;
    margin: 0;
    position: relative;
    display: block;
    text-align: center;
    text-decoration: none;
    outline: none;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 1px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    vertical-align: top;
    color: #fff;
    background-color: #aaa;
    border-color: #aaa;
    transition: color 0.125s ease-in-out, background-color 0.125s ease-in-out, border-color 0.125s ease-in-out;
  }
  
  form .button:hover {
    outline: none;
    text-decoration: none;
  }
  
  form .button:hover {
    background-color: #c22026;
    border-color: #c22026;
  }
  
  form .button:active, .button.active {
    background-color: #c22026;
    border-color: #c22026;
  }
  
  /*
  form :not(.button-group) > .button {
    width: 100%;
  }
  */
  
  
  /*
  @media screen and (min-width: 35em) {
    :not(.button-group) > .button {
      width: auto;
    }
  }
  */
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  /* /////////////////////////////////////////////////////////////////// */
  
  
  .fl-form input.fl-input.error,
  .fl-form select.fl-select.error {
    border-color:#c22026;
  }
  
  label.error{
    color:#c22026;
    font-size:14px;
    letter-spacing: 0.5px;
    margin-bottom: 0;
    display:block;
    margin-left:4px;
    text-transform: uppercase;
  
  }
  
  
  /*
  .radio-container label.error {
      position: absolute;
      z-index: 200;
      width: 200px;
      margin: 0;
  }
  */
  
  .checkbox-container label.error {
  
    margin: 0;
  }
  
  
.fl-is-active select {
      padding-top: 11px;
  }
  .fl-is-active input {
    padding-top: 18px;
}
.fl-is-active textarea{
    padding-top: 18px !important;
    padding-bottom: 6px !important;
}


/*
.fl-form select.fl-select {
    text-transform: uppercase;
}

.fl-form select.fl-select option {
    text-transform: none;
}
*/




textarea{  
    display: block;
    box-sizing: padding-box;
    overflow: hidden;
  
  }



  select option:hover{
    background:#444 !important;
  }


.fl-form  p {

    color:#999;

}

.fl-form select:disabled {
    color: #e1e1e1;
}


.fl-form select:disabled + div.arrow {
    border-color:#e1e1e1;
  }





