#confetti-message {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 9998;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    color: #ffffff; /* White for better visibility on dark background */
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent darker background */
}

.viedial-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
}

.viedial-preloader.active{
    display: flex;
}

.viedial-preloader-logo {
    width: 100px;
    height: 100px;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}


.viedial-preloader img {
    animation: zoomInOut 2s infinite;
}


.viedial-anchor-tag{
    text-decoration: none;
    color: #C13B2E;
}
.viedial-anchor-tag:hover{
    text-decoration: none;
}

.custom-modal-alert{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.custom-modal-alert.show{
    display: flex !important;
    justify-content: center;
    align-items: center;
}
.custom-modal-alert-header{
    display: flex;
    justify-content: center;
    align-items: center;
}
.custom-modal-alert-body{
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-modal-alert-content{
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.viedial-custom-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 12px;
    border: 1px solid #CED4DA;
    border-radius: 4px;
    background-color: white;
    color: #0D6EFD;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}
.viedial-btn-primary {
    background-color:#C13B2E;
    color: white;
    border-radius: 5px;
    font-weight: 500;
    font-size: 20px;
}

.btn:disabled{
    background-color: #8492a9 !important;
    color: white !important;
    cursor: not-allowed;
}

.viedial-btn-primary.btn-lg {
   padding: 12px 16px !important;
}

.viedial-btn-primary:hover {
    background-color:#9b291f;
    color: white;
}

.viedial-custom-btn:hover {
    background-color: #8492a9;
    color: white;
}

.viedial-custom-btn img {
    width: 20px;
    height: auto;
}

.italic {
    font-style: italic;
}

.bg-viedial-theme{
    color: #fff;
    background-color: #800020;
  }