.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: #fffffffa;
   backdrop-filter:blur(5px);
    z-index: 99999; 
  
}


.thanks{    top: 0;
    position: fixed;
    align-items: center;
    justify-content: center;
  height: 100%;
   width: 100%;
   background-color: #00aeeee8;
   backdrop-filter:blur(30px);
    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;
   width: 100%;
   text-align: center;
}
.loadec img{width: 80%; max-width:300px;}

.thank-you-message {

    background-color: #ffffff;
    border:0px solid var(--pro-color-blue);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
    color: var(--pro-color-pink);
    padding: 20px;
    line-height: 1.3;
    margin: 15px;
    border-radius:10px;

    text-align: center;
    z-index: 9999;
}

/* Close button styling inside the thank you message */
.close-btn2 {
  
    background-color: #ffffff;
    border-radius: 100%;
    color: var(--pro-color-blue);
    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: var(--pro-color-blue);
    color: #fff;
}

.popup-form{
    position: fixed;
    height: 100vh;
    width: 100%;
    background-color: #fff;
    left: 0;
    top: 0;
    z-index: 1000;
    display: none;
}
.popup-form.active{display: block;}

.popup-form .frame-form {
 display: flex;
 height: 100vh;
 width: 100%;
 align-items: center;
 position: relative;
}

.popup-form .frame-form form{
   
max-width: 340px;
margin: auto;
padding: 25px;
border: 1px solid var(--pro-color-d-light) ;
border-radius: 4px;
}
.popup-form .frame-form .container{
    text-align: center;
}
.popup-form .close-btn{
    position:relative;
    background-color: var(--pro-color-d-white);
    margin: auto;
    left: 120px;
    top:20px;
    margin-top:0px;
    padding: 20px;
    border: 1px solid var(--pro-color-d-light);
    color: var(--pro-color-black);
    font-size: 18px;
    transition: var(--transtition-treems);
    transform: rotate(0deg);
}
.popup-form .close-btn:hover{
    color: var(--pro-color-d-white);
    border-color:var(--pro-color-pink) ;
    background-color: var(--pro-color-pink);
    transform: rotate(90deg);
}