.callback-dialog {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    max-width: 60vw;
}

.callback-image {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    border-radius: 12px;
    flex: 1;
    height: 80vh;
    max-height: 560px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.callback-image h3 {
    display: flex;
    margin: 0;
    padding: 0;
    text-align: center;
    color: white;
    margin-bottom: 0.2rem;
}

.callback-image p {
    display: flex;
    font-size: 0.8rem;
    margin: 0 1rem;
    line-height: 1.5rem;
    padding: 0;
    text-align: center;
    color: #fff;
    margin-bottom: 0.8rem;
}

.callback-form {
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: stretch;
}

.carousal-indicator {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.carousal-indicator-tile {
    height: 8px;
    width: 8px;
    border-radius: 6px;
    background-color: white;
}

.carousal-indicator-tile-active {
    height: 8px;
    width: 30px;
    border-radius: 6px;
    background-color: #0071E3;
}

.callback-form {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.switch-button button {
    display: flex;
    border: 0px;
    cursor: pointer;
    margin: 0;
    padding: 0;
    background-color: transparent;
    align-items: center;
    flex-direction: row;
    color: #0071E3;
    font-size: 0.8rem;
    font-weight: 500;
    max-width: max-content;
}

.callback-submit {
    width: auto;
    background-color: #0071E3;
    padding: 12px 22px;
    cursor: pointer;
    border-radius: 50px;
    display: flex;
    justify-content: center;
}

.callback-submit button {
    margin: 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    border: 0px;
    margin: 0px;
    background-color: #0071E3;
    color: white;
}

.callback-submit img {
    color: white;
    margin-left: 10px;
}

.callback-disabled {
    width: auto;
    background-color: #aaa;
    padding: 12px 22px;
    cursor: pointer;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    cursor: default;
}

.callback-disabled button {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    border: 0px;
    margin: 0px;
    background-color: #aaa;
    color: white;
}

.callback-disabled img {
    color: white;
    margin-left: 10px;
}

@media (max-width: 768px) {
    .callback-image {
        display: none;
    }
}

.loading-image-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.loading-image {
    width: 100%;
    max-width: 30%;
    margin: auto;
    display: block;
    animation: opacityPulse 2s ease-in-out infinite;
}

@keyframes opacityPulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1.0;
    }
}

/* Alternative shimmer effect */
.loading-image-shimmer {
    animation: shimmer 1.5s linear infinite;
}

@keyframes shimmer {
    0% {
        opacity: 0.1;
    }

    25% {
        opacity: 0.5;
    }

    50% {
        opacity: 1.0;
    }

    75% {
        opacity: 0.5;
    }

    100% {
        opacity: 0.1;
    }
}


.loader {
    border: 8px solid #ddd;
    border-top: 8px solid #FF0000;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}