body {
    margin-bottom: 100px;
}

/** Logo **/
.boxed-logo {
    width: 150px;
    max-width: 100%;
}

header .logo {
    width: 150px;
    max-width: 100%;
 }
/** END Logo **/

.signup-page .form-container,
.signin-page .form-container,
.forgot-password-page .form-container,
.change-password-page .form-container,
.add-new-category-page .form-container {
  width: 420px;
  max-width: 100%;
  padding: 32px;
  border-radius: 8px;
}

.new-match-page .form-container {
    /*width: 800px;
    max-width: 100%;*/
    padding: 32px;
    border-radius: 8px;
}












/** NavBar **/
a.logo {
    text-decoration: none;
}

#navbar-logo {
    width: 140px;
}
/** END NavBar **/










/** Add tool btn **/
#add-new-tool-btn i:before {
    font-size: 3.5rem;
    transition: all ease .1s;
    background: #fff;
    border-radius: 99px;
}

#add-new-tool-btn:hover i:before {
    transform: scale(1.05);
}
/** END Add tool btn **/




/** Modal **/
.modal .modal-footer .date-author {
    font-size: 0.8rem;
}
/** END Modal **/





/** Sign up 
.wrapper-team-category {
    display: flex;
    flex-wrap: wrap;
}

.wrapper-team-category .form-check {
    width: 100%;
}
/** END Sign up **/





/** Loading spinner **/
#spinner {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    background: rgb(0 0 0 / 60%);
}

.lds-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
    width: 80px;
    height: 80px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 6px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/** END Loading spinner **/


/** Progress bar **/
#progress-bar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  background: rgb(255 255 255 / 60%);
}

#progress-bar-wrapper .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
  padding: 0 5%;
}
/** END Progress bar **/


/** Checkmark animation **/
.my-checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #198754;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
  }
  
  .my-checkmark {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    margin: 1.5em auto;
    box-shadow: inset 0px 0px 0px #198754;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
  }
  
  .my-checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
  }
  
  @keyframes stroke {
    100% {
      stroke-dashoffset: 0;
    }
  }
  
  @keyframes scale {
  
    0%,
    100% {
      transform: none;
    }
  
    50% {
      transform: scale3d(1.1, 1.1, 1);
    }
  }
  
  @keyframes fill {
    100% {
      box-shadow: inset 0px 0px 0px 50px #198754;
    }
  }
  
  /** END Checkmark animation **/


.alert p:last-of-type {
  margin-bottom: 0;
}



/** MEDIA QUERY **/
@media all and ( min-width: 576px ) {
    /** Sign up 
    .wrapper-team-category .form-check {
        width: 50%;
    }
    /** END Sign up **/
}


@media all and ( min-width: 992px ) {
    /** Sign up
    .wrapper-team-category .form-check {
        width: 33.33%;
    }
    /** END Sign up **/
}














































#drop_file_zone {
    background-color: #EEE;
    border: #999 5px dashed;
    width: 290px;
    height: 200px;
    padding: 8px;
    font-size: 18px;
}
#drag_upload_file {
  width:50%;
  margin:0 auto;
}
#drag_upload_file p {
  text-align: center;
}
#drag_upload_file #selectfile {
  display: none;
}