/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 
@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

form.book_appointment_form {
    position: relative;
}
.loading:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left:0;
    background-color: #000000b5;
    z-index: 1;
    cursor: no-drop;
}
.loading:after {
    content: '';
    border-radius: 50%;
    width: 24px;
    height: 24px;
    border: 0.25rem solid rgb(255 255 255);
    border-top-color: #e13f42;
    -webkit-animation: spin 1s infinite linear;
    animation: spin 1s infinite linear;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 9;
}

/* 08-12-2023 */

.ib-shdl-slot .gfield-choice-input:disabled ~ label, .ib-shdl-slot .gfield-choice-input:disabled ~ label + .gchoice {
    width: 0;
    height: 0;
    visibility: hidden;
    display: none !important;
}
.ib-shdl-slot input[type=radio]:disabled, .ib-shdl-slot input[type=radio]:disabled ~ label {
    visibility: hidden;
}
/*.ib-shdl-slot table tr td{*/
/*    vertical-align: text-top;*/
/*}*/