
.pop-up-window{
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,.85);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999999;
    transform: translateY(-100vh);
}

.pop-up-window-show{
    animation: slide-in .5s ease-in;
    transform: translateY(0);
}

.pop-up-window .pop-up-window-inner{
    width: 80%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary);
    padding: 20px;
}

.pop-up-window .pop-up-window-inner .pop-up-window-content{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pop-up-window .pop-up-window-inner .pop-up-window-content .popup-close{
    width: 30px;
    height: 30px;
    position: absolute;
    right: -5px;
    top: -5px;
    cursor: pointer;
    transition: .5s;
}

.pop-up-window .pop-up-window-inner .pop-up-window-content .popup-close:hover{
    transform: scale(1.05);
}

.pop-up-window .pop-up-window-inner .pop-up-window-content .popup-close img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.errorText{
    font-size: 14px;
    color:rgb(255, 51, 51);
    padding: 8px;
    display: none;
    text-transform: capitalize;
}
    

@keyframes slide-in {
    0%{
        transform: translateY(-100vh);
        opacity: 0;
    }

    100%{
        transform: translateY(0);
        opacity: 1;
    }
    
}

.spinner-outer{
    width: 100vw;
    height: 100vh;
    position: fixed;
    display: flex;
    left: 0;
    bottom: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,.9);
    z-index: 99999999 !important;
    display: none;
}

.spinner {
    animation: rotate 2s linear infinite;
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    width: 50px;
    height: 50px;
        stroke: #fff;

    }

    .show-spinner{
        display: block;
    }
    .path {
      stroke: hsl(210, 70, 75);
      stroke-linecap: round;
      animation: dash 1.5s ease-in-out infinite;
  }
  
  @keyframes rotate {
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes dash {
    0% {
      stroke-dasharray: 1, 150;
      stroke-dashoffset: 0;
    }
    50% {
      stroke-dasharray: 90, 150;
      stroke-dashoffset: -35;
    }
    100% {
      stroke-dasharray: 90, 150;
      stroke-dashoffset: -124;
    }
  }
