.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.932);
 backdrop-filter:blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.popup-content {
    background-color: #373763;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    min-width: 350px;
    width: 40%;
    position: relative;
}

.popup-content .appointment-form{     padding: 15px; border:none;  backdrop-filter:unset !important; background: transparent !important; }

.close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.089);
    width: 35px;
    font-size: 24px;
    transition: all 300ms cubic-bezier(0.075, 0.82, 0.165, 1);
    line-height: 30px;
    border-radius: 100%;
    cursor: pointer;
    color: #ffffff;
}
.close-btn:hover{
    background-color: #d92ea3;
}


.loader {
    top: 0;
    position: fixed;
    align-items: center;
    justify-content: center;
  height: 100%;
   width: 100%;
   background-color: #373763ee;
   backdrop-filter:blur(5px);
    z-index: 99999;
}

.thanks{    top: 0;
    position: fixed;
    align-items: center;
    justify-content: center;
  height: 100%;
   width: 100%;
   background-color: #024b3fee;
   backdrop-filter:blur(5px);
    z-index: 99999;}

 .con{
    display: flex;
    height: 100vh;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.loadec{
   font-size: 30px;
   font-weight: 700;
   color: #fff;
}
.loadec img{width: 40px;}

.thank-you-message {

    background-color: #d4edda;
    color: #155724;
    padding: 20px;
    line-height: 1.3;
    margin: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 9999;
}

/* Close button styling inside the thank you message */
.close-btn2 {
  
    background-color: #ffffff;
    border-radius: 100%;
    color: #155724;
    border:0;
 height: 45px;

margin-top: 15px;
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
 width:45px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    transition: all 300ms ease-in;
}

.close-btn2:hover {
    background-color: #155724;
    color: #fff;
}