
.main_popup_box {
     width: 365px;
     height: 319px;
     background: white !important;
     border-top: 5px solid #0a7e6b !important;
     margin-top: 115px;
     position: absolute;
     z-index:100 !important;
     border-radius: 10px;
     box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px !important;
}

.icon_box {
    width: 40px !important;
    height: 40px !important;
    background: #f8f9fa !important;
    border-radius: 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-top: 10px !important;
    transform: translate(0px, 0px) !important;
    cursor: pointer !important;
    color: black !important;
    overflow: hidden !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
    position: absolute;
    right: 19px;
    top: 2px;
}

.icon_box:hover {
    background: #ecf0f1;
    color: #e74c3c;
    transform: rotate(90deg) scale(1.1);
}

.check_icon {
    width: 60px;
    height: 60px;
    margin-top: 37px !important;
    background: #0a7e6b;
    display: flex;
    justify-content: center;
    margin: auto;
    border-radius: 50%;
    position:relative;
    align-items:center;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.check_icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    animation: ripple 1.5s infinite;
}

@keyframes ripple {
      0% {
        transform: scale(1);
        opacity: 1;
      }
      100% {
        transform: scale(1.5);
        opacity: 0;
      }
    }
    
.cicon{
    font-size: 40px;
    color: white;
} 

.popup_heading{
    font-size: 25px;
    text-align: center;
    font-weight: 600;
}

.msg_text{
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    color: gray;
    padding-bottom: 10px;
}

.continue_btn{
    margin: auto;
    display: flex;
    width: 125px;
    height: 34px;
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 7px;
    border-radius: 18px;
    background: black;
    color: white;
    font-weight: 600;
}

/* Heading */
.popup_heading {
  margin: 25px 0;
  font-size: 25px;
  color: black;
}

/* Message */
.msg_text {
  margin-bottom: 20px;
  font-size: 14px;
  padding-left: 10px;
  padding-right: 10px;
  color: gray;
}

/* Continue button */
.continue_btn {
  background: #1f2937;
  border: none;
  padding: 10px 20px;
  border-radius: 18px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.continue_btn:hover {
  transform: scale(1.05);
}

/* Close button hover effect */
#close_icon button {
  border: none;
  font-size: 20px;
  cursor: pointer;
  position: relative;
  padding: 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
#close_icon button:hover {
  background: rgba(255,255,255,0.2);
  transform: rotate(180deg);
}

/* Progress bar */
.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px !important;
  background: #0a7e6b !important;
  animation: progressFill 10s linear forwards;
}

/* Animations */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}
@keyframes scaleUp {
  from {transform: scale(0.8);}
  to {transform: scale(1);}
}
@keyframes progressFill {
  from {width: 0;}
  to {width: 100%;}
}

@media(max-width:500px){
    .main_popup_box{
        margin-top: 41px !important;
    } 
}