#fieldlogix-calendly-wrapper-2 {
    position: relative;
    width: 100%;
    max-width: 100%;
}


/* Calendly iframe */
#fieldlogix-calendly-wrapper-2 .calendly-inline-widget {
    width: 100% !important;
    min-width: 320px !important;
}


/* X / Close button */
#fieldlogix-calendly-close-2 {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 9999;

    width: 38px;
    height: 38px;

    border: none;
    border-radius: 50%;

    background: #ffffff;
    color: #333333;

    font-size: 28px;
    line-height: 38px;

    text-align: center;
    padding: 0;

    cursor: pointer;

    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}


/* Loading overlay */
#fieldlogix-calendly-loader-2 {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 700px;

    z-index: 9998;

    background: #ffffff;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 12px;
}


/* Spinner */
.fieldlogix-spinner-2 {
    width: 48px;
    height: 48px;

    border: 5px solid #dddddd;
    border-top: 5px solid #174ea6;

    border-radius: 50%;

    animation: fieldlogix-spin-2 0.8s linear infinite;
}


/* Loading text */
.fieldlogix-loading-text-2 {
    font-size: 16px;
    font-weight: 500;
}


/* Spinner animation */
@keyframes fieldlogix-spin-2 {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}
