#root {
    min-height: 100vh;
    display: flex;
    min-width: 0;
    width: 100%;
    height: 100%;
}

.loader {
    margin: auto;
    width: 50px;
    height: 50px;
}

.circular-loader {
    animation: rotate 2s linear infinite;
}

.loader-path {
    fill: none;
    stroke-width: 3px;
    animation: animate-stroke 1.5s ease-in-out infinite;
    stroke-linecap: round;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-stroke {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
        stroke: #7352C7;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35;
        stroke: #7352C7;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124;
        stroke: #7352C7;
    }
}

.ql-font-Inter {
    font-family: 'Inter', sans-serif !important;
  }

  .ql-size-small {
    font-size: 14px !important;
  }
  .ql-size-normal {
    font-size: 16px !important;
  }
  .ql-size-large {
    font-size: 18px !important;
  }
  .ql-size-huge {
    font-size: 22px !important;
  }
  .image_uploader.banner_img{
    width: 275px !important;
  }
  .banner_img{
    width: 275px !important;
  }


  /* .container {
    display: flex;
    touch-action: none;
    width: 800px;
    margin: 1rem auto;
  }
  
  .dropzone {
    flex: 1;
    height: 400px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
  }
  
  .dropzone.left {
    margin-right: 10px;
  }
  
  .grid-item {
    padding: 10px;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
  }
  
  .grid-item-content {
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
  }
  

  .grid-item-content img{
    height: 100%;
    width: 100%;
    object-fit: cover;
  } */


  .griditemUI {
   padding: 18px;
  }

  .griditemUI img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .new_gallery_bg{
   
    height: 80%;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
  }
  .gallery_grid{
    height: 800px;
    margin-top: 40px;
  }
  .overlay_disable{
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: ed;
    inset: 0;
  }
  .quick-view p{
    margin: 0;
    border: 1px solid #eee;
    padding: 8px 0px;
    text-align: center;
    color: blue;
    text-decoration: underline;
    position: relative;
    cursor: pointer;
    z-index: 9999;
  }