.mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(1px);
    transition: opacity 0.3s ease, visibility 0s 0.3s;
    /* visibility: hidden;
    opacity: 0; */
    z-index: 999999;
    display: none;
}
.ErrorMsg{font-size: 13px;color: red;text-align: left;width: 100%;display: inline-block;padding: 5px;}
.wholemask {
    width: 24%;
    position: absolute;
    top: 28%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    font-family: 'Poppins', sans-serif;
    color: black;
    animation: zoomin 0.5s ease-out forwards;
    transition: opacity 0.5s ease, transform 0.5s ease;
    
}

.maskhead {
    color: #7e7d7d;
    font-family: calibri;
    font-size: 13px;
    /* font-weight: bold; */
    padding: 8px;

}

.maskcontent {
    font-size: 23px;
    margin-bottom: 18px;
    font-weight: 500;
    color: #223347;
    margin-top: 20px;
}

.btn {
    padding: 4px 20px;
    font-size: 14px;
    background-color: #961148;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: 'Roboto', sans-serif;
}

.btn:hover {
    background-color: #164863;
    transform: scale(1.05);
}

@keyframes zoomin {
    0% {
        transform: translateX(-50%) scale(0);
        opacity: 0;
    }

    100% {
        transform: translateX(-50%) scale(1);
        opacity: 1;

    }
}

/* Loader animation */
.loader {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.loader div {
    position: absolute;
    top: 33px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #2570d1;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}



.loader div:nth-child(1) {
    left: 8px;
    animation: flip1 0.6s infinite;
}

.loader div:nth-child(2) {
    left: 10px;
    animation: flip2 0.6s infinite;
}

.loader div:nth-child(3) {
    left: 32px;
    animation: flip2 0.6s infinite;
}

.loader div:nth-child(4) {
    left: 56px;
    animation: flip3 0.6s infinite;
}

@keyframes flip1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes flip3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes flip2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}
.AlertMask {
    display: none;
    position: fixed; 
    z-index: 1; 
    padding-top: 100px;
    left: 0px;
    top: 0px;
    bottom: 0px;
    right: 0px;
    background-color: #0000002c;
  }
  .Alertcontent {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #e3e0e0;
    width: 300px;
    border-radius: 7px;
    font-size: 13px;
    color: #143980;
    position: relative; /* Required for the 'top' property to work */
    animation: slidein 0.5s ease-out; /* Apply the animation */
}

@keyframes slidein {
    0% {
        top: -80%;
    }
    100% {
        top: 0%;
    }
}

  .Alertcontent .SubAlertdiv{
    display: grid;
    grid-template-columns: 15% 85%;
  }
  .AlertMAskLogo{
    width: 35px;
  }
  .close {
    margin-top: -26px;
    margin-right: -16px;
    color: black;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }
  .animate-charcter
{
    text-transform: uppercase;
    /* background-image: linear-gradient(-225deg,#143980 0%,#4390e7 29%,#1ca24b 67%,#143980 100%); */
    background-image: linear-gradient(-225deg,#231557 0%,#44107a 29%,#ff1361 67%,#fff800 100%);
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 2s linear infinite;
    /* display: inline-block; */
    font-size: 16px;
    font-weight: 500;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}
@media only screen and (max-width: 800px) 
{
    .wholemask {width: 70%;}
    .animate-charcter{font-size: 12px;}
}


