
.wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: stretch;
    background-color: #171E31;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fafafa;
    overflow-x: hidden;
    min-width: 1080;
}

option {
    background-color: #19213D;
}

.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

html {
    overflow:   scroll;
  }

::-webkit-scrollbar {
    width: 10px;
    background: transparent; 
}

::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 15px;
}
    
::-webkit-scrollbar-thumb {
    border-radius: 15px;
    height: 100px;
    background: white;  
}
    
.dropdown-menu > a:hover {
    background-color: #033d94;
}

#taskTR {
    padding-bottom: 2em;
  }

body {
    margin: 100px;
    overflow:hidden
}

.containerTask {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.half-circle-spinner, .half-circle-spinner * {
    box-sizing: border-box;
  }

  .half-circle-spinner {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    position: relative;
  }

  .half-circle-spinner .circle {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: calc(20px / 10) solid transparent;
  }

  .half-circle-spinner .circle.circle-1 {
    border-top-color: white;
    animation: half-circle-spinner-animation 1s infinite;
  }

  .half-circle-spinner .circle.circle-2 {
    border-bottom-color: white;
    animation: half-circle-spinner-animation 1s infinite alternate;
  }

  @keyframes half-circle-spinner-animation {
    0% {
      transform: rotate(0deg);

    }
    100%{
      transform: rotate(360deg);
    }
}

.btn-space {
    margin-right: 5px;
}

.responsive-table li {
    border-radius: 20px;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    align-items: center;
}
.responsive-table {
   table-layout:    fixed;
   border-collapse: collapse;
}

.responsive-table .table-header {
    background-color: #101A3B;
    font-size: 14px;
    font-size: 1.1em;
    font-weight: 500;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.responsive-table .table-row {
    font-size: 1.1em;
    font-weight: 500;
    background-color: #171E31;
    width: 95%;
    color: white;
}

html {
    overflow: hidden;
    height: 100%;
}

body {
    height: 100%;
    overflow: auto;
}

#sidebar {
    width: 150px;
    -webkit-user-select: none;
    -webkit-app-region: drag;
}

#sidebar.active {
    margin-left: -250px;
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
    color: #999;
}

#sidebar {
    background: #13192D;
    color: #fff;
    transition: all 0.3s;
}

#sidebar .sidebar-header {
    padding: 20px;
    background: #13192D;
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
}


ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #6d7fcc;
}


.profileContainer {
    z-index: 0;
  }
  
  .dropzone {
    min-height: 100px;
    z-index: 0;
  }
  
  .active {}
  
  .hover {
    outline: 2px solid blue;
  }
  
  .drop-item {
    cursor: pointer;
    margin-bottom: 10px;
    padding: 5px 10px;
    border-radius: 3px;
    position: relative;
    z-index: 1;
  }