/**
 *
 * You can write your CSS code here, DO NOT touch the default JavaScript file
 * because it will make it harder for you to update.
 * 
 */

/*# sourceMappingURL=custom.css.map */
.dragdrop-area{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 112vh;
    z-index: 9999;
    background-color: #f6f9f691;
    padding: 2rem;
    display: none;
}
.dragdrop-area-show{
    display: block;
    animation: opacity-1 0.5s 1;
}
.dragdrop-content{
    border: 6px dashed rgb(126, 125, 125);
    display: flex;
    align-items: center;
    height: 100%;
    border-radius: 20px;
}
.dot {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  display: inline-block;
  border: 2px solid rgb(255, 255, 255);
}
.modal-backdrop{
    width: 100% !important;
    height: 100% !important;
}
/* loading */
.loader-line {
    width: 100%;
    height: 3px;
    position: relative;
    overflow: hidden;
    background-color: #ddd;
    margin: 0;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

.loader-line:before {
    content: "";
    position: absolute;
    left: -50%;
    height: 3px;
    width: 40%;
    background-color: coral;
    -webkit-animation: lineAnim 1s linear infinite;
    -moz-animation: lineAnim 1s linear infinite;
    animation: lineAnim 1s linear infinite;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

@keyframes lineAnim {
    0% {
        left: -40%;
    }
    50% {
        left: 20%;
        width: 80%;
    }
    100% {
        left: 100%;
        width: 100%;
    }
}
@keyframes opacity-1 {
    0% {
        opacity: 0;
    }
    100% {
       opacity: 1;
    }
}
@keyframes opacity-0{
    0% {
        opacity: 1;
    }
    100% {
       opacity: 0;
    }
}