.Errormask {
    width:100%;
}
.Errorwholemask {
    width:100%;
    
}
.Errormaskhead {
    color: black;
    font-size: 20px;
    /* font-weight: bold; */
    padding: 8px;

}
  .Subbtnclk{
        font-size: 15px;
        width: 40%;
        padding: 15px 10px;
        margin: 20px auto;
        background-color: #2355b6;
        color: white;
        border: 1px solid gainsboro;
        outline: none;
        border-radius: 9px;
        cursor: pointer;
        box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.05em, rgba(90, 125, 188, 0.05) 0px 0.05em 0.5em;
    }
.LoaderDiv {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	backdrop-filter: blur(20px);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}
.spinner {
      --gap: 5px;
      --clr: #d62d20; /* Default color */
      --height: 23px;
      width: 100px;
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--gap);
    }

    .spinner span {
      background: var(--clr);
      width: 6px;
      height: var(--height);
      animation: grow 1s ease-in-out infinite;
    }

    /* First bar - Navy */
    .spinner span:nth-child(1) {
      background: #2e54c1;
      animation: grow 1s ease-in-out infinite;
    }

    /* Second bar - Green */
    .spinner span:nth-child(2) {
      background: #2e54c1;
      animation: grow 1s ease-in-out 0.15s infinite;
    }

    /* Third bar - Navy */
    .spinner span:nth-child(3) {
      background: #2e54c1;
      animation: grow 1s ease-in-out 0.3s infinite;
    }

    /* Fourth bar - Green */
    .spinner span:nth-child(4) {
      background: #2e54c1;
      animation: grow 1s ease-in-out 0.475s infinite;
    }

    @keyframes grow {
      0%, 100% {
        transform: scaleY(1);
      }

      50% {
        transform: scaleY(1.8);
      }
    }
.acopentickverifybody {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    display: none;
	z-index:999;
    
}

.acopenverifytick_modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.952);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: acopenverifytick_fadeIn 0.3s ease;
}

@keyframes acopenverifytick_fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.acopenverifytick_modal {
    background: white;
    border-radius: 12px;
    padding: 58px 52px;
    max-width: 431px;
    width: 100%;
    text-align: center;
    box-shadow: 0px 4px 20px 0px rgba(77, 77, 77, 0.15);
    animation: acopenverifytick_slideUp 0.4s ease;
}

@keyframes acopenverifytick_slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.acopenverifytick_checkmark-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    position: relative;
}

.acopenverifytick_checkmark-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #29dd6b;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: acopenverifytick_scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes acopenverifytick_scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.acopenverifytick_checkmark {
    width: 40px;
    height: 40px;
    position: relative;
}

.acopenverifytick_checkmark-check {
    position: absolute;
    width: 40px;
    height: 40px;
}

.acopenverifytick_checkmark-check::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px !important;
    height: 32px !important;
    border: 23px solid white;
    border-width: 0px 4px 4px 0;
    transform: translate(-50%, -65%) rotate(45deg);
    transform-origin: center;
    animation: acopenverifytick_drawCheck 0.5s ease 0.3s forwards;
}

@keyframes acopenverifytick_drawCheck {
    0% {
        height: 0;
        width: 0;
        opacity: 1;
    }

    50% {
        height: 0;
        width: 8px;
        opacity: 1;
    }

    100% {
        height: 16px;
        width: 8px;
        opacity: 1;
    }
}

.acopenverifytick_pulse-ring {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #4ade80;
    animation: acopenverifytick_pulse 1.5s ease-out 0.5s;
}

@keyframes acopenverifytick_pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.acopenverifytick_modal h2 {
    font-size: 22px;
    color: #1f2937;
    margin-bottom: 8px;
    animation: acopenverifytick_fadeInUp 0.5s ease 0.4s backwards;
}

.acopenverifytick_modal p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    animation: acopenverifytick_fadeInUp 0.5s ease 0.5s backwards;
}

@keyframes acopenverifytick_fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 375px) {
    .BackmaskCls {
        padding-bottom: 196px; 
    }

}

/* Mobile responsive styles */

@media (max-width: 950px) {
    .acopentickverifybody {
        padding: 0px;
    }
    
    .acopenverifytick_modal {
        padding: 40px 30px;
        max-width: 70%;
    }
    
    .acopenverifytick_modal h2 {
        font-size: 20px;
    }
    
    .acopenverifytick_modal p {
        font-size: 13px;
    }
}
@media (max-width: 768px) {
    .acopentickverifybody {
        padding: 0px;
    }
    
    .acopenverifytick_modal {
        padding: 40px 30px;
        max-width: 90%;
    }
    
    .acopenverifytick_modal h2 {
        font-size: 20px;
    }
    
    .acopenverifytick_modal p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .acopentickverifybody {
        padding: 0px;
    }
    
    .acopenverifytick_modal {
        padding: 32px 24px;
        max-width: 95%;
    }
    
    .acopenverifytick_modal h2 {
        font-size: 18px;
        margin-bottom: 6px;
    }
    
    .acopenverifytick_modal p {
        font-size: 12px;
    }
    
    .acopenverifytick_modal img {
        width: 60% !important;
    }
}

@media (max-width: 375px) {
    .acopenverifytick_modal {
        padding: 28px 20px;
    }
    
    .acopenverifytick_modal h2 {
        font-size: 16px;
    }
    
    .acopenverifytick_modal p {
        font-size: 12px;
    }
}