.container-is {
  max-width: 900px;
}

.drag-area {
  border: 6px dashed rgba(76, 124, 247, 0.633);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: rgba(76, 125, 247, 0.027);
}

.borders {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  border: 5px dashed #fff;
}

.dragging {
  z-index: 199;
  position: fixed;
  padding: 40px;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(76, 124, 247, 0.633);
  z-index: -99999;
}

@media screen and (max-width: 700px) {
  .mobile-header {
    display: block !important;
  }

  .desktop-header {
    display: none;
  }
}

.offcanvas {
  position: absolute;
  top: 50px;
  left: 0;
  height: 0;
  width: 100%;
  background: #fff;
  z-index: 99;
  transition: .6s;
  padding: 5px 15px;
  overflow: hidden;
}

.offcanvas ul li a {
  text-decoration: none;
  font-size: 15px;
}

.offcanvas.active {
  height: auto;
}

.fill {
  transition: .4s;
}

.flex-direction-column {
  flex-direction: column;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 20px;
}

.box {
  text-align: center;
}


@-o-keyframes spin {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }

  @-moz-keyframes spin {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }

  @-webkit-keyframes spin {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }

  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }

  .load {
    animation: spin 0.5s linear infinite;
    height: 100px;
    width: 100px;
    border: 20px solid #fff;
    border-left-color: rgb(71, 71, 253);
    border-radius: 50%;
  }

  .loader {
    user-select: none;
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: #ffffff6b;
    top: 0;
    left: 0;
    z-index: 99;
  }