.booking-image-content {
    width: 100%;
    position: relative;
    z-index: 0;
    display: grid;
    place-items: center;
}

.booking-image-content>* {
    grid-area: 1 / 1;
}

.background-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 450px;
    background: radial-gradient(circle,
            #F19924 0%,
            transparent 70%);

    opacity: 0.35;
    filter: blur(40px);
    z-index: -1;
}

.booking-flowchart-wrapper {
    position: relative;
}

.booking-flowchart-wrapper>div {
    opacity: 0;
    transform-origin: center center;
}
.booking-flowchart-wrapper>svg {
    opacity: 0;
    transform-origin: center center;
}

.flowchart-divs {
    border-radius: 11px;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    border: 2px solid white;
}

.booking-request-div {
    position: absolute;
    z-index: 10;
}

.multi-supplier-div {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashed-svg {
    position: absolute;
}

.flowchart-desktop {
    display: none; 
}
.flowchart-mobile {
    display: block; 
}

.flowchart-title {
    font-weight: bold;
}

.flowchart-description {
    font-weight: 300;
    color: #424242;
    font-style: italic;
}

.flowchart-icon-text {
    display: flex;
    align-items: center;
    gap: 12px;
    position: absolute;
}

.booking-notes {
    color: #42A8C3;
    padding: 3px 6px !important;
    border-radius: 8px !important;
    width: fit-content;
    font-size: 10px;
    font-weight: bold;
    position: absolute;
}

.booking-image {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
}

.booking-button-wrapper>a {
    width: 100%;
}

/* ============================================= */
/*           Responsive Styles                   */
/* ============================================= */

@media (min-width: 320px) {
    .background-glow {
        width: 100%;
    }

    .booking-flowchart-wrapper>svg {
        width: 170px;
    }

    .flowchart-divs {
        padding: 8px;
    }

    .flowchart-title {
        font-size: 10px;
    }

    .flowchart-description {
        font-size: 8px;
    }

    .flowchart-icon-text {
        width: 130px;
    }

    .flowchart-icon-text .flowchart-title {
        font-size: 9px;
    }

    .flowchart-icon-text .flowchart-description {
        font-size: 7px;
    }

    .dashed-svg {
        top: 2.8rem;
        left: -7rem;
    }

    .dashed-svg>svg {
        width: 80%;
    }

    .multi-supplier-div {
        width: 200px;
        top: 2rem;
        left: -5rem;
    }

    .booking-available {
        top: 4.5rem;
        right: -2.7rem;
    }

    .booking-yes {
        bottom: 5.5rem;
        right: 0.1rem;
    }

    .booking-no {
        bottom: 5.5rem;
        left: -0.8rem;
    }

    .booking-retry {
        bottom: 1.6rem;
        left: -1.3rem;
    }

    .booking-confirm {
        bottom: 1.6rem;
        right: -5.5rem;
    }

    .booking-notify {
        bottom: -2.8rem;
        left: -1.3rem;
    }

    .booking-request-div {
        top: -2.5rem;
        left: 1.7rem;
    }

    .flowchart-desktop {
        display: none;
    }
}

@media (min-width: 768px) {
    .booking-flowchart-wrapper>svg {
        width: 306px;
    }

    .flowchart-divs {
        padding: 14px 16px;
    }

    .flowchart-title {
        font-size: 14px;
    }

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

    .flowchart-icon-text {
        width: 182px;
    }

    .flowchart-icon-text .flowchart-title {
        font-size: 12px;
    }

    .flowchart-icon-text .flowchart-description {
        font-size: 10px;
    }

    .dashed-svg {
        top: 4.8rem;
        left: -10rem;
    }

    .dashed-svg>svg {
        width: unset;
    }

    .multi-supplier-div {
        width: 283px;
        top: 3rem;
        left: -3rem;
    }

    .booking-available {
        top: 7rem;
        right: -2rem;
    }

    .booking-yes {
        bottom: 9rem;
        right: 3rem;
    }

    .booking-no {
        bottom: 9rem;
        left: -0.8rem;
    }

    .booking-retry {
        bottom: 4rem;
        left: -1.8rem;
    }

    .booking-confirm {
        bottom: 4rem;
        right: -5.5rem;
    }

    .booking-notify {
        bottom: -2rem;
        left: -1.8rem;
    }

    .booking-request-div {
        top: -4rem;
        left: 4.6rem;
    }

    .flowchart-mobile {
        display: none;
    }

    .flowchart-desktop {
        display: block;
    }
}

@media (min-width: 1024px) {
    .booking-image-content {
        flex: 1;
    }

    .background-glow {
        width: 600px;
    }
}