.midi-radio {
    display: inline-flex;
    align-items: center;
}

.midi-radio-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 24px;
    height: 24px;
    z-index: 1;
}

.midi-radio-label-container {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.midi-radio-label {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid gray;
    background-color: transparent;
    position: relative;
    margin-right: 8px; /* Space between the radio button and text */
}

.midi-radio-label::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: transparent;
    transform: translate(-50%, -50%);
    transition: background-color 0.2s ease;
}

.midi-radio-input:checked + .midi-radio-label-container .midi-radio-label {
    border-color: #1945C5; /* Outer border color when checked */
}

.midi-radio-input:checked + .midi-radio-label-container .midi-radio-label::after {
    background-color: #1945C5; /* Inner circle fill color when checked */
}

.midi-radio-text {
    font-size: 14px; /* Adjust text size as needed */
    color: #333; /* Default text color */
    margin-right: 14px;
}

.radio-input {
    cursor: pointer !important;
    width: 24px !important;
    height: 24px !important;
    margin-left: 10px !important;
    margin-right: 10px !important;
    color: #B8B6B6 !important;
}

.font-size-12 {
    font-size: 12px;
}

.midi-radio-input:checked + .midi-radio-label-container .midi-radio-text {
    color: #1945C5; /* Change text color when radio button is checked */
}

.midi-radio-image {
    display: block; /* Show the default image by default */
}

.midi-radio-image-selected {
    display: none; /* Hide the selected image by default */
}

.midi-radio-input:checked + .midi-radio-label-container .midi-radio-image {
    display: none; /* Hide the default image when radio button is checked */
}

.midi-radio-input:checked + .midi-radio-label-container .midi-radio-image-selected {
    display: block; /* Show the selected image when radio button is checked */
}

.care-concern-box {
    height: 48px;
    border-radius: 24px;
    border: 1px solid #A7A5A5;
    align-items: center;
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 16px;
    display: inline-block;
    align-items: center;
    background-color: var(--cream-100);
}

.care-concern-box:hover, .visit-box:hover {
    border-color: #1945C5;
    
}

.visit-box:active {
    background-color: #e2e1e1;
}

.tooltip-icon {
    z-index: 999;
}

.tooltip-icon:hover .tooltip-svg-icon path {
    fill: #1945C5;
}

.care-concern-box:hover .tooltip-icon {
    background-color: initial;
}

.care-concern-box:hover svg {
    background-color: #F4F4F4;
}

.care-concern-box:hover .midi-radio-label {
    border-color: #1945C5;
}

.care-concern-box:hover .midi-radio-label {
    background-color: #F0FBFF;
}

.care-concern-box-separator {
    width: 1px;
    height: 80%;
    border-left: 1px solid #D9D8D8;
    background-size: 10px 14px;
    margin-top: 5px;
}

.care-concern-box:has(.midi-radio-input:checked) {
    border-color: #1945C5;
    background-color: #F0FBFF;
}

.care-concern-box:has(.midi-radio-input:checked) svg {
    background-color: #F0FBFF;
}

.visit-box {
    border-radius: 4px;
    border: 1px solid #A7A5A5;
    align-items: center;
    padding: 20px;
    margin-bottom: 20px;
    align-items: center;
}

.text-content::before {
    content: 'Dr. Kandra Longlastnamefortest';
    font-weight: 700;
}

.modal-header svg {
    height: 22px;
    width: 22px;
}

.midi-checkbox {
    width: 18px;
    height: 18px;
    margin-top: 0px;
}

.midi-checkbox-label {
    margin-left: 8px;
}

/*===============================MIDI TOAST======================================*/
.midi-toast {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.midi-toast .toast-body {
    background-color: #FFFBFB;
    font-size: 12px;
}
.midi-toast .toast-icon{
    font-size: 20px;
}
.midi-toast .text{
    margin-left: 8px;
    margin-right: 8px;
    vertical-align: 3px;
}

.midi-toast .close-btn{
    display: inline-block;
    float: right;
}

/*===============================MIDI TOAST END======================================*/

.midi-form-box {
    max-width: 546px !important;
}

@media screen and (max-width: 375px) {
    .midi-h1-mobile {
        font-size: 24px;
    }
}

@media screen and (min-width: 375px) and (max-width: 768px) {
    .midi-h1-mobile {
        font-size: 28px;
    }
}

@media screen and (min-width: 768px) {
    .midi-h1-mobile {
        font-size: 36px;
    }
}

.shadow-box {
    box-shadow: 0 .1rem 0.5rem rgba(0, 0, 0, .1) !important;
}

.midi-back-btn {
    font-family: var(--body-font-bold);
    font-style: normal;
    line-height: 18px;
    font-size: 16px;
    padding: 15px 30px;
    text-transform: none !important;
    font-weight: bold !important;
    color: #231F20;
}

.midi-next-btn {
    text-transform: none !important;
    font-weight: bold !important;
}