.pre-chat-popup {
    display: block;
    height: 100vh;
    bottom: 0;
    background-color: var(--white-color);
}

.pre-chat-popup .pre-chat-popup__main {
    padding-top: 0 !important;
    height: var(--body-height);
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2%;
    background: transparent;
    background-repeat: repeat-y;
    background-color: white;
}

.StaticHeaderLogo {
    width: 22.5px;
    position: relative;
    top: 10px;
}

.theLogo {
    width: 100%;
    position: relative;
    border-radius: 0%;
    /* background: rgba(255, 255, 255, 0.5); */
}

.logoPreChat {
    height: 100%;
    padding: 1% 10%;
    width: 100%;
    display: flex;
    justify-content: center;
}

.sectionA {
    position: relative;
    width: 100%;
    padding: 1% 8% 1% 8%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(255, 255, 255, 0.3);
    /* border: 1px solid #e0e0e0; */
    border-radius: 7px;
    backdrop-filter: blur(0.9px);
}

.sectionB {
    position: relative;
    width: 100%;
    /* height: 88%; */
    padding: 1% 8% 1% 8%;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.3);
    /* border: 1px solid #e0e0e0; */
    border-radius: 7px;
    backdrop-filter: blur(0.9px);
}

.sectionC {
    position: relative;
    height: 2%;
    background-color: var(--white-color);
}

.preChatFormContainer span {
    display: block;
    border: none;
    background: transparent;

}



.divider-separator {
    width: 27.5%;
    margin-left: 50px;
    border: 1px solid var(--secondary-color);
    margin-top: 2px;
    margin-bottom: 25px;
}

.preChatContactInput {
    border: 1px solid #c1c1c1;
    /* border-bottom: 1px solid var(--main-color); */
    background: white;
    border-radius: 7px;
    padding: 0 2%;
    margin-top: 4%;
    margin-bottom: 4%;
    width: 100%;
    height: 30px;
    font-family: var(--font-family-light);
    font-size: 12px !important;
}

.preChatContactInput:focus {
    border: 1px solid var(--main-color);
}

.preChatFormContainer {
    position: relative;
    padding: 0;
}

.btnHolder {
    width: 100%;
    text-align: center;
    margin-top: var(--prechat-popup-form-btn-vertical-position);
}

.btnHolder button {
    border-radius: 10rem !important;
    background: var(--prechat-popup-form-btn-background) !important;
    color: var(--prechat-popup-form-btn-text-color) !important;
    font-weight: bold !important;
    width: var(--prechat-popup-form-btn-width);
    padding: var(--prechat-popup-form-btn-padding);
    border: none !important;
    border: 1px solid var(--main-color) !important
}

.btnHolder button:hover {
    background: var(--prechat-popup-form-btn-hover-background) !important;
    color: var(--prechat-popup-form-btn-text-hover-color) !important;
    border: 1px solid var(--secondary-color) !important
}

.btnHolder button:hover .icon-unlock,
.btnHolder button .icon-lock {
    display: none;
}

.btnHolder button:hover .icon-lock {
    display: inline;
}


.intl-tel-input {
    width: 100% !important;
    direction: ltr;
}

.intl-tel-input .country-list {
    width: 285px !important;
}

#mobile-number {
    border: 1px solid #c1c1c1;
    /* border-bottom: 1px solid var(--main-color); */
    background: white;
    border-radius: 7px;
    padding: 0 2% 0 90px;
    margin-top: 4%;
    margin-bottom: 4%;
    width: 100%;
    height: 30px;
    font-family: var(--font-family-light);
    font-size: 12px !important;
}

#mobile-number:focus {
    border-bottom: 1px solid var(--secondary-color);
}

.mandetoryField {
    text-align: left !important;
    color: var(--main-color) !important;
}

.curvePre {
    display: flex;
    padding: 1%;
    height: 55%;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border-radius: 30px;
    width: 100%;
}

.preChatBlueShadowTop {
    position: absolute;
    top: -100px;
    left: -260px;
    --size: 275px;
    --speed: 3s;
    width: var(--size);
    height: var(--size);
    filter: blur(calc(var(--size) / 5));
    background-image: linear-gradient(#717481, #717481);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.preChatOrangeShadowTop {
    position: absolute;
    top: -286px;
    left: -100px;
    --size: 275px;
    --speed: 3s;
    width: var(--size);
    height: var(--size);
    filter: blur(calc(var(--size) / 5));
    background-image: linear-gradient(#fbb469, #EC7535);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.preChatBlueShadowBottom {
    position: absolute;
    bottom: -120px;
    right: -240px;
    --size: 275px;
    --speed: 3s;
    width: var(--size);
    height: var(--size);
    filter: blur(calc(var(--size) / 5));
    background-image: linear-gradient(#717481, #717481);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.preChatOrangeShadowBottom {
    position: absolute;
    bottom: -290px;
    right: -100px;
    --size: 275px;
    --speed: 3s;
    width: var(--size);
    height: var(--size);
    filter: blur(calc(var(--size) / 5));
    background-image: linear-gradient(#fbb469, #EC7535);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.middleHolder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12%;
    width: 300px;
    height: 100%;
    justify-content: flex-end;
    padding: 30px 0px;
}

.intl-tel-input.separate-dial-code .selected-flag {
    background-color: transparent !important;
}

.avatar-shadow {
    width: 400px;
    height: 400px;
    position: absolute;
    top: 545px;
    left: 50%;
    border-radius: 100%;
    z-index: 1;
    box-shadow: 10px -55px 30px 15px #EB5F1A, 24px -10px 47px 10px #aab3d2, -21px -25px 97px 10px #5acee3, 51px 5px 17px 10px #1b7d8f, 3px 2px 77px 10px #f30bf5;
    animation: shadow-rotate 1.5s linear infinite;
    transform-origin: center;
}

@keyframes circle-size {
    from {
        width: 250px;
        height: 250px;
    }

    to {
        width: 300px;
        height: 300px;
    }
}

@keyframes shadow-rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}




#visualizer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* Allow clicks to pass through to the video controls */
}





.VoiceLoader-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
}

.VoiceLoader-loader-inner {
    display: flex;
    justify-content: center;
    width: 250px;
    height: 50px;
    gap: 4px;
    align-items: center;
}

.VoiceLoader-box {
    width: 5px;
    height: 5px;
    background-color: black;
    /* animation: spin 0.5s linear infinite alternate-reverse; */
    border-radius: 10px;
    transition: height 0.1s ease;
    /* Add smooth transition for height */

}

.VoiceLoader-a {
    animation-delay: 0;
}

.VoiceLoader-b {
    animation-delay: 0.25s;
}

.VoiceLoader-c {
    animation-delay: 0.50s;
}

.VoiceLoader-d {
    animation-delay: 0.75s;
}