#submitBtn,
#submitBtn2,
#drawerBtn {
    cursor: pointer;
}

#formMessage2 {
    color: #fff;
}

/* 🔥 COMPACT DRAWER */
#drawer {
    position: fixed;
    right: 0;
    bottom: 150px;
    width: 400px;
    background: linear-gradient(90deg, #a855f7, #ec4899) !important;
    padding: 15px;
    border-radius: 10px;
    z-index: 9999;
    transform: translateX(120%);
    transition: 0.3s ease;
    padding: 30px;
}

div#drawer h3 {
    color: #fff;
    font-size: 34px;
    padding-bottom: 20px;
    font-weight: 600;
}

button#closeDrawer {
    background: transparent !important;
    width: auto ! IMPORTANT;
}

/* show */
#drawer.active {
    transform: translateX(0);
}

/* inputs white bg */
#drawer input,
#drawer textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    background: #fff;
    border: none;
    border-radius: 6px;
}

/* button */
#drawer button {
    width: 100%;
    padding: 10px;
    background: linear-gradient(90deg, #a855f7, #ec4899);
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

/* close */
#closeDrawer {
    background: none;
    color: #fff;
    border: none;
    font-size: 18px;
    float: right;
    cursor: pointer;
}

/* loader */
#drawerLoader {
    display: none;
    width: 14px;
    height: 14px;
    border: 2px solid #000;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* message */
#drawerMsg {
    margin-top: 8px;
    font-size: 13px;
}

@keyframes popupFade {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

#popupBox form.ajaxForm input,
#popupBox form.ajaxForm textarea {
    width: 100% !important;
    background: #fff !important;
    display: block !important;
    margin-bottom: 10px;
    padding: 12px;
    border-radius: 15px;
}

#popupBox {
    background: linear-gradient(90deg, #a855f7, #ec4899) !important;
}

#popupBox h3 {
    color: #fff;
    font-size: 34px;
    padding-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.ajaxForm button.submitBtn {
    background: #fff !important;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 15px;
}

i.fa-solid.fa-comment {
    position: fixed;
    bottom: 8%;
    background: linear-gradient(to bottom, #a855f7, #ec4899);
    padding: 10px;
    color: #fff;
    border-radius: 92px;
    font-size: 25px;
    animation: floatUpDown 2s ease-in-out infinite;

    left: 10px;
}

.fa-solid.fa-phone {
    position: fixed;
    bottom: 2%;
    background: linear-gradient(to bottom, #a855f7, #ec4899);
    padding: 10px;
    color: #fff;
    border-radius: 92px;
    font-size: 25px;
    left: 10px;
    animation: floatUpDown 2s ease-in-out infinite;

}

@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}
.btnLoader {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid #000;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 520px) {
div#popupBox {
    max-width: 100% !important;
}
}