.cpp-sticky-wrapper {
    font-family: 'Poppins', sans-serif;
}

.cpp-sticky-contact-button {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    padding: 16px 8px;
    background-color: #252525;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    z-index: 9999;
    cursor: pointer;
    box-shadow: 0px 4px 4px 0px #00000040;
}

.cpp-sticky-contact-button span {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    font-weight: 600;
    font-size: 20px;
}

/* .cpp-sticky-form-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: #0000009c;
    z-index: 9998;
    justify-content: center;
    align-items: flex-start;
	padding: 10px;
	 -webkit-overflow-scrolling: touch;
	overflow-y: scroll; 
    -ms-overflow-style: none;
    box-sizing: border-box;
} */
.cpp-sticky-form-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #0000009c;
    z-index: 9998;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-y: auto; 
    -webkit-overflow-scrolling: touch; 
    box-sizing: border-box;
}


.cpp-sticky-form-wrapper {
    max-width: 820px;
    width: 90%;
    background-color: #F8F8FF;
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(8.8px);
    box-shadow: 0px 0px 21.4px 0px #00000017;
    border: 1.4px solid #FFFFFF8F;
    position: relative;
	margin-top: 40px;
}

.cpp-sticky-form-control,
.cpp-sticky-form-select {
    border-radius: 8px;
    background: #FFFFFFB0;
    color: #8C8C8C;
    border: 1.4px solid #ccc !important;
    padding: 18px;
    font-size: 14px;
    font-family: 'poppins';
}

.cpp-sticky-form-control::placeholder {
    color: #8C8C8C;
}

.cpp-sticky-submit-btn-div {
    display: flex;
    justify-content: end;
}

.cpp-sticky-submit-btn {
    background-color: #252525 !important;
    color: white !important;
    border-radius: 30px !important;
    padding: 10px 20px !important;
    margin-top: 30px;
    border: none !important;
    box-shadow: 5px 9px 21.7px 0px #00000040;
}

.cpp-sticky-privacy-text {
    font-size: 14px;
    color: #2D2D2D;
    margin-top: 20px;
}

.cpp-sticky-privacy-text a {
    color: #0F6FFF;
    text-decoration: none;
}

.cpp-sticky-form-select {
    appearance: none;
    background-image: url(https://aitglobalinc.com/wp-content/uploads/2025/05/secondary-icon.png);
    background-repeat: no-repeat;
    background-position: left 130px center;
}

/* reCAPTCHA error styling */
.cpp-sticky-recaptcha-error {
    border: 1px solid red;
    color: red;
}
/* Prevent horizontal overflow */
@media (max-width: 400px)
{
	.cpp-sticky-form-popup
	{
		padding: 0px;
		align-items: flex-start;
	}
}
@media (max-width: 768px) {
    .cpp-sticky-form-popup {
        overflow-x: hidden; /* Prevent horizontal scroll */
    }
	.rc-anchor-normal
	{
		width: 200px !important;
		height: 100% !important;
	}
}
@media (max-width: 1271px) {
    .cpp-sticky-contact-button {
        border-top-left-radius: 12px;
        border-bottom-left-radius: 12px;
        padding: 14px 7px;
        gap: 4px;
    }
	.cpp-sticky-contact-button span
	{
		font-size: 14px;
	}
	.cpp-call-icon
	{
		max-width: 16px;
	}
}