@keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-moz-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-webkit-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-o-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-ms-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

.slide-right {
  width: 100%;
  overflow: hidden;
  margin-left: 300px;
  max-width: 500px;
  animation: 1s slide-left 0.001s forwards;
    transform:translateY(100%);
}

@keyframes slide-left {
  to {
    transform:translateX(0);
  }
}

.content-table {
  border-collapse: collapse;
  margin: 0;
  font-size: 0.75em;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  text-align:center;
  empty-cells: hide;
}

.content-table thead tr {
  background: linear-gradient(45deg, #2937f0, #9f1ae2) !important;
  color: #ffffff;
  text-align: left;
  font-weight: bold;
  text-align:center;
}

.content-table th,
.content-table td {
  padding: 12px 15px;
}

.content-table tbody tr {
  border-bottom: 1px solid #dddddd;
  background: #FFF;
}

.content-table tbody tr:nth-of-type(even) {
  background-color: #f3f3f3;
}

.content-table tbody tr.active-row {
  font-weight: bold;
  background: linear-gradient(45deg, #2937f0, #9f1ae2) !important;
  color: #009879;
}

.comments-container{
  background: #FFF;
  border: 1px solid #D8D9D9;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 5px 10px;
  height:400px;
}

.comment-item-own {
    background: #d8f4fc;
    border-radius: 8px;
    margin: 3px;
    padding: 10px 10px 0px 15px;
}

.comment-item-other {
    background: #f5f6f7;
    border-radius: 8px;
    margin: 3px;
    padding: 10px 10px 0px 15px;
}

.comment-author{
  font-style: bold;
  font-weight: 700;
}

.comment-author-own{
  font-style: bold;
  text-align: right;
  font-weight: 700;
}

.comment-body{
  font-size: 11px;
}

.comment-timestamp{
    text-align:right;
    font-size: 8px;
    font-style: oblique;
}

.card-comments {
  overflow-y: auto;
  height:500px;
  flex-direction: column-reverse;
  display: flex;
  height: 100%;
}

.chat-send-button {
width: 10%;
display:inline-grid;
border-radius: 30px;
}

@media screen and (max-width: 768px) {
chat-send-button {
    width: 20%;
}
}

.chat-form {
  width:100%;
}

.chat-area {
  outline: none;
  resize: none;
  overflow: auto;
  width: 300px;
  height: 80px;
  border: 1px solid #D8D9D9;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 10px;
  font-size: 12px;
}

.task-btn-control {
position: fixed;
}

@media (min-width: 1448px) {
    .task-btn-control {
        max-width: 225px;
    }
    }

@media (max-width: 1600px) {
    .task-btn-control {
        position: inherit;
    } }

@media (max-width: 768px) {
    .task-btn-control {
        display: none;
    }
    .task-btn-ctl {
        display: block;
    }

    .task-page-title {
        text-align: center;
        margin-top: 0 10vh;
        font-size: 2em;
    }

    .task-card {
        padding: 5px;
    }
    .modal-content {
        padding: 0 !important;
    }

}

.task-btn-ctl {
    text-align: center;
    align-items: end;
    display: inline-flex;
      display: flex;
  justify-content: center;
}

input {
font-size: 12px;
}

.form-control {
    font-size: 12px;
}

.task-btn-ctl label {
    font-size: 15px;
}

.switch-btn {
    padding: 0 20px;
}




.nav-link-scrolled:hover {
    color: black !important;
}

.profile-chart {
  margin: auto;
  width: 100%;
  min-height: 300px;
  padding: 20px;
}




.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

#searchResultsContainer{
min-height: 45vh;
}

.icon-green {
  color: green;
}

.icon-red {
  color: red;
}

.transition-medium {
  animation: fadeIn 0.5s;
-webkit-animation: fadeIn 0.5s;
-moz-animation: fadeIn 0.5s;
-o-animation: fadeIn 0.5s;
-ms-animation: fadeIn 0.5s;
}

#sortTable_wrapper{
    overflow: scroll;
}


















