.vh-form_button {
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  background-color: var(--vh-form_brand);
  border: 2px solid var(--vh-form_brand);
  color: white;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.vh-form_button:hover {
  background-color: var(--vh-form_dark-brand);
  border-color: black;
  transition: all 0.2s ease-in-out;
}

.vh-form_button-outline {
  background-color: transparent;
  border: 2px solid var(--vh-form_brand);
  color: var(--vh-form_brand);
}
.vh-form_button-outline:hover {
  background-color: var(--vh-form_med-light-gray);
  transition: all 0.2s ease-in-out;
}
.vh-form_button-bg-gray {
  background-color: var(--vh-form_med-gray);
  border: none;
  color: white;
}
.vh-form_button-bg-gray:hover {
  background-color: var(--vh-form_dark-gray);
  transition: all 0.2s ease-in-out;
}
.vh-form_button-narrow {
  width: 50%;
}

.vh-form_checkbox-container input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  background-color: white;
  font: inherit;
  margin: 0;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid var(--vh-form_brand);
  border-radius: 0.25rem;
  position: relative;
}
.vh-form_checkbox-container input[type="checkbox"]::before {
  content: "";
  width: 0.75rem;
  height: 0.5rem;
  border: solid var(--vh-form_brand);
  border-width: 0 0 2px 2px;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg) scale(0);
  transition: 120ms transform ease-in-out;
}
.vh-form_checkbox-container input[type="checkbox"]:checked::before {
  transform: translate(-50%, -50%) rotate(-45deg) scale(1);
}
.vh-form_checkbox-container input[type="checkbox"]:disabled {
  border-color: var(--vh-form_med-gray);
  cursor: not-allowed;
}
.vh-form_checkbox-container input[type="checkbox"]:disabled + span {
  color: var(--vh-form_med-gray);
  cursor: not-allowed;
}
.vh-form_checkbox-label {
  display: grid;
  place-content: center;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.5rem;
  margin: 1rem;
  cursor: pointer;
  color: var(--vh-form_dark-gray);
}


:root {
  --vh-form_brand: #015a58;
  --vh-form_light-brand: #b5dec8;
  --vh-form_med-brand: #66c3a0;
  --vh-form_med-dark-brand: #396;
  --vh-form_dark-brand: #013433;
  --vh-form_danger: #d9534f;
  --vh-form_accent: #431c75;
  --vh-form_yellow: #f0ad4e;
  --vh-form_light-gray: #f3f3f3;
  --vh-form_light-gray-transparent: #f3f3f34f;
  --vh-form_med-light-gray: #e6e6e6;
  --vh-form_gray: #cccccc;
  --vh-form_med-gray: #999999;
  --vh-form_med-dark-gray: #757575;
  --vh-form_dark-gray: #474747;
  --vh-form_light-blue: #5bc0de;
  --vh-form_light-blue-transparent: #5bc0de4f;
  --vh-form_dark-blue: #31708f;
  --vh-form_font-family: "Work Sans", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.sc {
  text-transform: capitalize !important;
  font-variant: small-caps !important;
  white-space: nowrap;
}
.textarea-padding {
  padding: 1rem 1rem 1rem 4rem;
}
.vh-form_flex {
  display: flex;
}
.vh-form_flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0;
}
.vh-form_block {
  display: block;
}

.vh-form_input-file-container {
  position: relative;
  display: inline-block;
  width: 100%;
  min-width: 0;
}
.vh-form_input-file {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.vh-form_input-file-label {
  display: inline-block;
  padding: 1rem;
  cursor: pointer;
  border: 1px solid var(--vh-form_med-gray);
  color: var(--vh-form_med-gray);
  border-radius: 4px;
  transition: background-color 0.3s;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
}
.vh-form_input-file-label:hover {
  cursor: pointer;
}
.vh-form_input-file-text,
.vh-form_input-file-icon {
  color: var(--vh-form_med-dark-gray);
}
.vh-form_input-file:hover + .input-file-label {
  border: 1px solid var(--vh-form_light-blue);
}
.has-file {
  background-color: var(--vh-form_brand);
  padding: 0.5rem;
  border-radius: 0.25rem;
  color: white;
}
.vh-form_input-container .zip-geo-button {
  color: var(--vh-form_brand);
  background-color: transparent;
  border: none;
  padding: 0.5rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 1.5rem;
  cursor: pointer;
  width: 50px;
}
.choose-file-custom .html-control .vh-form_input-container .choose-file-custom-inner {
    border: 1px solid var(--vh-form_med-gray);
    border-radius: 0.25rem;
    position: relative;
    height: 59px;
}

.choose-file-custom .html-control .vh-form_input-container .vh-form_input-label {
    margin: 0;
}

.choose-file-custom .html-control .vh-form_input-container .choose-file-custom-inner input {
    position: absolute;
    top: 0;
    left: 0;
    border: none !important;
    width: 100% !important;
    height: 100%;
    opacity: 0;
}

.choose-file-custom .html-control .vh-form_input-container .choose-file-custom-inner label {
    color: var(--vh-form_med-dark-gray);
    font-size: var(--bs-body-font-size);
    line-height: var(--bs-body-line-height);
    padding: 1rem 1rem 1rem 3rem;
}

    .choose-file-custom .html-control .vh-form_input-container .choose-file-custom-inner label.has-file {
        background-color: var(--vh-form_brand);
        padding: 0.35rem 0.5rem;
        border-radius: 0.25rem;
        color: white;
        margin: 0.6rem 1rem 0 1rem;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        max-width: calc(100% - 2rem);
        border: 1px solid var(--vh-form_med-gray);
    }


.choose-file-custom .choose-file-custom-inner .vh-form_input-icon {
    top: 13px;
    left: 16px;
}	
.vh-form_input-container
  input[type="number"].no-spinner::-webkit-outer-spin-button,
.vh-form_input-container
  input[type="number"].no-spinner::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.vh-form_search-input-container {
  position: relative;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.vh-form_search-input-container input {
  margin: 0;
  padding: 1rem 1rem 1rem 3rem;
  border: none;
  border: 1px solid var(--vh-form_med-gray);
  border-radius: 0.25rem;
  background-color: transparent;
  font-size: 1rem;
  color: black;
  caret-color: var(--vh-form_med-brand);
  font-family: var(--vh-form_font-family);
}

.vh-form_input-container
input:not(.search-filter):not(.vh-form_select-input):not(.select-input):not( .vh-form_provider-search-input ):not(.vh-form_select-multiple-input):not( .vh-form_select-multiple-search-input ):not(.vh-form_select-multiple-search-filter):not([type="radio"]):not( [type="checkbox"] ),
.vh-form_input-file-container
input:not(.search-filter):not(.vh-form_select-input):not(.select-input):not( .vh-form_provider-search-input ):not(.vh-form_select-multiple-input):not( .vh-form_select-multiple-search-input ):not(.vh-form_select-multiple-search-filter):not([type="radio"]):not( [type="checkbox"] ),
.vh-form_input-container textarea {
    margin: 0;
    padding: 1rem 1rem 1rem 3rem;
    border: none;
    border: 1px solid var(--vh-form_med-gray);
    border-radius: 0.25rem;
    background-color: transparent;
    font-size: 1rem;
    color: black;
    width: 100%;
    font-family: var(--vh-form_font-family);
}
    .vh-form_input-container
    input:not(.search-filter):not(.vh-form_select-search-input):not( .select-input ):not(.vh-form_provider-search-input):not(.vh-form_select-multiple-input):not( .vh-form_select-multiple-search-input ):not(.vh-form_select-multiple-search-filter):not([type="radio"]):not( [type="checkbox"] ):focus,
    .vh-form_input-file-container
    input:not(.search-filter):not(.vh-form_select-search-input):not( .select-input ):not(.vh-form_provider-search-input):not(.vh-form_select-multiple-input):not( .vh-form_select-multiple-search-input ):not(.vh-form_select-multiple-search-filter):not([type="radio"]):not( [type="checkbox"] ):focus,
    .vh-form_input-container textarea:focus {
        border: 1px solid var(--vh-form_light-blue);
        caret-color: black;
        outline: none;
    }

.vh-form_input-container {
  position: relative;
  margin-bottom: 16px;
  width: 100%;
}
.vh-form_input-label {
  color: var(--vh-form_med-dark-gray);
  font-size: 0.85rem;
  margin-left: 0.75rem;
  line-height: 2;
  font-weight: 400;
}
.vh-form_input-icon {
  position: absolute;
  top: 2.65rem;
  left: 1rem;
  pointer-events: none;
  font-size: 1.25rem;
  color: var(--vh-form_med-gray);
}
.vh-form_input-container .textarea {
  padding: 1rem 1rem 1rem 3rem;
}
.vh-form_input-container.no-icon textarea,
.vh-form_input-container.no-icon input {
    padding-left: 1rem !important;
}
.vh-form_input-label-validation {
    color: red;
    font-size: 0.85rem;
    margin-left: 0.75rem;
    line-height: 2;
    font-weight: 400;
}
.zip-code ~ .vh-form_input-label-validation {
    line-height: 17px;
    display: block;
}
.vh_provider-card {
  padding: 1rem;
  background-color: var(--vh-form_light-gray);
  border-top: 1px solid var(--vh-form_med-light-gray);
  border-bottom: 1px solid var(--vh-form_med-light-gray);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
}
.vh_provider-card:nth-child(even) {
  background-color: white;
  border: none;
}
.vh_provider-card .card-title {
  margin-top: 0;
  color: black;
}

.vh_provider-card .card-content {
  margin-top: 1.5rem;
  font-size: 0.9rem;
}
.vh_provider-card .networks {
  padding: 0.5rem;
}
.vh_provider-card .networks h4 {
  margin: 0 0 0.5rem 0;
  color: black;
}
.vh_provider-card .networks ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--vh-form_med-dark-gray);
  font-size: 0.9rem;
  line-height: 1.5;
}
.vh_provider-card .card-content .card-patients {
  font-weight: bold;
}
.vh_provider-card .card-content > p > i {
  margin-right: 0.25rem;
}
.vh_provider-card .card-content > p > a {
  color: var(--vh-form_brand);
  text-decoration: none;
}
.vh_provider-card .card-content > p > a:hover {
  color: black;
  text-decoration: underline;
}
.vh_provider-card .text-gray {
  color: var(--vh-form_med-dark-gray);
}
.vh_provider-result-banner {
  position: relative;
  background-color: var(--vh-form_light-blue-transparent);
  color: var(--vh-form_dark-blue);
  padding: 16px;
  border-radius: 4px;
  margin: 16px;
}
.vh_provider-result-banner > i {
  margin: 0.5rem;
  font-size: 1.5rem;
}
.vh-provider-advanced-inputs {
  display: none;
  margin: 2rem 0;
  width: 100%;
}
.vh-provider-advanced-inputs.show {
  display: grid;
}

fieldset.vh-form_radio-container {
  border: none;
  margin: 0;
  padding: 0.5rem 0;
  color: var(--vh-form_dark-gray);
}
fieldset.vh-form_radio-container input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  background-color: white;
  font: inherit;
  margin: 0;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid var(--vh-form_brand);
  border-radius: 50%;
  position: relative;
}
fieldset.vh-form_radio-container .vh-form_form-control {
  display: grid;
  place-content: center;
  grid-template-columns: 1rem 1fr;
  gap: 1rem;
  margin: 1rem;
  cursor: pointer;
}
fieldset.vh-form_radio-container input[type="radio"]::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 0 0 0 0.5rem var(--vh-form_brand);
}
fieldset.vh-form_radio-container input[type="radio"]:checked::before {
  transform: translate(-50%, -50%) scale(1);
}
.custom-radio-wrapper table tbody {
    display: flex;
    flex-wrap: wrap;
}

.custom-radio-wrapper table tbody tr {
    margin: 1rem;
}

.custom-radio-wrapper table tbody tr td {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.custom-radio-wrapper fieldset.vh-form_radio-container table tbody tr td input {
    margin-right: 1rem;
}

.custom-radio-wrapper .vertical-radio table tbody tr {
    width: 100%;
    margin: 0 1rem 1rem 1rem;
}


.vh-form_select-custom {
  position: relative;
  display: inline-block;
}
.vh-form_select-custom button {
  position: absolute;
  top: 2.25rem;
  right: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  padding: 5px;
}
.vh-form_select-custom .select-chevron {
  color: var(--vh-form_brand);
  font-size: 1.25rem;
  cursor: pointer;
}
.vh-form_select-input {
    box-sizing: border-box;
    padding: 22px 16px 10px 16px;
    width: 100%;
    color: inherit;
    border: none;
    border-bottom: 2px solid #66c3a0;
    border-radius: 0;
    font-family: var(--vh-form_font-family);
    font-size: 1rem;
    cursor: pointer;
}
.vh-form_select-input:focus {
  outline: none;
  /*border-color: var(--vh-form_light-blue);*/
}
.vh-form_select-custom .select-options-container {
  box-sizing: border-box;
  display: none;
  width: 100%;
  max-height: 40vh;
  overflow-y: auto;
  position: absolute;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid #ccc;
  border-radius: 0 0 0.25rem 0.25rem;
  z-index: 1;
  background-color: white;
}
.vh-form_select-custom .select-options-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.vh-form_select-custom .select-option {
  padding: 0.5rem 1rem;
  color: var(--vh-form_med-dark-gray);
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.vh-form_select-custom .select-option:hover,
.vh-form_select-custom .select-option:focus {
  background-color: #f1f1f1;
}
.vh-form_select-custom .select-option.option-hidden {
  display: none;
}
.vh-form_select-custom .select-option.option-selected {
  background-color: var(--vh-form_brand);
  color: white;
}

.vh-form_select-custom .search-filter {
  padding: 1rem;
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  font-family: var(--vh-form_font-family);
  font-size: 1rem;
}
.vh-form_select-custom .search-filter:focus {
  outline: none;
  border-color: var(--vh-form_light-blue);
}

.vh-form_select-wrapper {
  position: relative;
  display: inline-block;
}
.vh-form_select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: white;
  color: inherit;
  font: inherit;
  padding: 1rem 1rem 1rem 3rem;
  border: 1px solid var(--vh-form_med-gray);
  border-radius: 0.25rem;
  width: 100%;
  cursor: pointer;
}
.vh-form_select-icon {
  position: absolute;
  top: 2.55rem;
  left: 1rem;
  pointer-events: none;
  font-size: 1.25rem;
  color: var(--vh-form_med-gray);
}
.vh-form_select-wrapper select:focus {
  outline: none;
  border-color: var(--vh-form_light-blue);
}
.vh-form_select-wrapper .select-chevron {
  position: absolute;
  right: 0.5rem;
  top: 3.25rem;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--vh-form_brand);
}
.custom-select {
    margin-bottom: 16px;
    width: 100%;
}
.user-control .html-control.zip-button-wrapper .vh-form_input-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    position: relative;
}
.user-control .html-control.zip-button-wrapper .vh-form_input-container .zip-code-geolocation {
    width: calc(100% - 60px) !important;
}
.user-control .html-control.zip-button-wrapper .vh-form_input-container .zip-button-inner {
    width: 60px;
    padding: 0;
    box-sizing: border-box;
    position: relative;
}
.user-control .html-control.zip-button-wrapper .vh-form_input-container .zip-button-inner .zip-button {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 11111;
}
.user-control .html-control.zip-button-wrapper .vh-form_input-container .zip-button-inner span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.user-control .html-control.zip-button-wrapper .vh-form_input-container .zip-button-inner span:before {
    font-size: 24px;
}
.custom-table table th {
    padding: 10px 10px 0 10px;
    color: var(--vh-form_med-dark-gray);
    font-size: 0.85rem;
    line-height: 2;
    font-weight: 400;
}

.custom-table table td {
    padding: 10px;
}

    .custom-table table td .vh-form_input-container {
        margin-bottom: 0;
    }

    .custom-table table td .vh-form_input-label {
        margin: 0;
    }

    .custom-table table td .vh-form_input-icon {
        top: 14px;
    }

    .custom-table table td .custom-delete-btn {
        background: #015a58;
        border-radius: 50%;
        will-change: border-bottom-color;
        transition: border-bottom-color .2s ease-in-out;
        color: #fff;
        padding: 0;
    }
    .custom-table table td:last-child {
        vertical-align: middle;
    }

.custom-select .vh-form_select-custom button {
    top: 1.95rem;
}

.custom-table table td .custom-delete-btn:hover {
    background: #013433;
}

.custom-table table td .custom-addnew-btn {
    background: #015a58;
    border-radius: 32px;
    will-change: border-bottom-color;
    transition: border-bottom-color .2s ease-in-out;
    color: #fff;
    padding: 8px 16px;
    margin-top: 6px;
}

    .custom-table table td .aspNetDisabled {
        background: #c7c7c7;
        border-radius: 32px;
        color: #fff;
        padding: 8px 16px;
    }

        .custom-table table td .custom-addnew-btn:hover {
            background: #013433;
        }

.custom-table table,
.custom-table table td,
.custom-table table th {
    border: none;
}

@media (max-width: 767px) {
    .custom-select .vh-form_select-input {
        padding-right: 40px;
    }
    .custom-radio-wrapper .vertical-radio table tbody tr {
        margin: 0 0 1rem 0;
    }

    .custom-radio-wrapper fieldset.vh-form_radio-container table tbody tr td label {
        width: calc(100% - 36px);
    }

    .custom-table table tr {
        position: relative;
        margin-bottom: 2rem;
        display: block;
    }

        .custom-table table tr:first-child,
        .custom-table table tr:last-child {
            margin-bottom: 0;
        }

            .custom-table table tr:last-child td:before {
                display: none;
            }

            .custom-table table tr:last-child td {
                padding: 0;
            }

                .custom-table table tr:last-child td:first-child,
                .custom-table table tr:last-child td:last-child,
                .custom-table table tr:last-child td:nth-child(2) {
                    display: none;
                }

                .custom-table table tr:last-child td:nth-child(3) {
                    text-align: left;
                    padding: 10px;
                }

        .custom-table table tr th {
            display: none;
        }

        .custom-table table tr td {
            width: calc(100% - 70px);
            display: inline-block;
        }

            .custom-table table tr td:last-child {
                position: absolute;
                top: 54.2%;
                width: auto;
                transform: translate(0, -50%);
                right: 10px;
            }

                .custom-table table tr td:last-child:before {
                    display: none;
                }

            .custom-table table tr td:before {
                color: var(--vh-form_med-dark-gray);
                font-size: 0.85rem;
                line-height: 2;
                font-weight: 400;
            }

            .custom-table table tr td:first-child:before {
                content: 'Provider First Name';
            }

            .custom-table table tr td:nth-child(2):before {
                content: 'Provider Last Name';
            }

            .custom-table table tr td:nth-child(3):before {
                content: 'Provider NPI Number';
            }
}

.custom-table table td {
    vertical-align: top;
}

.custom-table .vh-form_input-label-validation {
    width: 100%;
    display: block;
    position: absolute;
    bottom: -27px;
    margin-left: 0;
}

.custom-table table {
    width: 100%;
}
.custom-select span.vh-form_input-label {
    width: 100%;
    display: inline-block;
}

.custom-table table td .custom-delete-btn {
    border: none;
}



/*.html-control.custom-input input {
    height: 56px;
    border-bottom: 1px solid #66c3a0;
}*/

.custom-input .vh-form_input-icon {
    top: 16px;
}
    .custom-input .vh-form_input-icon .fa:before {
        color: #c4c4c4 ;
    }
.custom-input .vh-form_input-label {
    max-width: calc(100% - 48px);
    left: 48px;
    right: initial;
    position: absolute;
    margin-left: 0;
    top: 15px;
}
.custom-input input:hover {
    background: rgba(0, 0, 0, 0.04) !important;
}
.custom-input input:focus {
    background: rgba(0, 0, 0, 0.10) !important;
}
.custom-input .vh-form_input-label {
    top: 17px;
    left: 48px;
    font-size: 16px;
    
    color: #404040;
    transition: all 0.1s ease;
}
.custom-input.focused .vh-form_input-label {
    top: 1px;
    left: 48px;
    font-size: 11px;
    opacity: 1;
    color: #404040;
}
.custom-select input::-ms-input-placeholder,
.custom-input input::-ms-input-placeholder {
    opacity: 0;
}
.custom-select input::placeholder,
.custom-input input::placeholder {
    opacity: 0;
}
.custom-select.focused input::-ms-input-placeholder,
.custom-input.focused input::-ms-input-placeholder {
    opacity: 1;
}
.custom-select.focused input::placeholder,
.custom-input.focused input::placeholder {
    opacity: 1;
}
.custom-select .vh-form_select-input {
   height:58px;
   padding-left: 3rem;
   padding-right: 30px;
   /*font-size: 0;*/
}
.custom-select span.vh-form_input-label {
    top: 17px;
    left: 16px;
    font-size: 16px;
    color: #404040;
    transition: all 0.1s ease;
    position: absolute;
    margin-left: 0;
}
.custom-select.focused span.vh-form_input-label {
    top: 1px;
    left: 48px;
    font-size: 12px;
    color: #404040;
    transition: all 0.1s ease;
    position: absolute;
}
.html-control.custom-input .vh-form_input-container input {
    padding: 22px 16px 10px 3rem !important;
    border: none !important;
    border-bottom: 2px solid #66c3a0 !important;
    font-size: 1rem;
    border-radius: 0 !important;
}
    .html-control.custom-input .vh-form_input-container input:focus {
        border: none !important;
        border-bottom: 2px solid #66c3a0 !important;
    }
.custom-select.vh-form_select-custom button {
    top: 10px;
}
.custom-select .vh-form_input-icon {
    top: 16px;
}
.custom-select input:hover {
    background: rgba(0, 0, 0, 0.04) !important;
}
.custom-select input:focus {
    background: rgba(0, 0, 0, 0.10) !important;
}