/* This css file contains classes used in the tasks-module's .vue files */

.highlighted_searched_task {
  background-color: #dff1ff !important;
}

.matching_row {
  position: relative;
  padding: 5px 10px;
  display: grid;
  align-items: end;
  height: 30px;
  justify-items: start;
  grid-template-columns: 60px 5fr auto 1fr 1fr;
  -moz-column-gap: 20px;
  column-gap: 20px;
  border-bottom: 1px solid #f3f3f3;
  border-left: 5px solid transparent;
  background-color: rgb(255 255 255);
  font-size: 0.65rem;
}

.matching_row:hover {
  border-left: 5px solid transparent;
}

.matching_row > div {
  margin-bottom: 5px;
}
.matching-task{
  margin: 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  font-size: 0.75rem;
  padding: 5px;
  border-radius: 3px;
  transition:0.25s linear;
}

.matching-task:hover{
  background-color: #dff1ff !important;
}

.matching-task:nth-child(even) {
  background-color: #f2f2f299;
}

.matching-task:nth-child(even):hover{
  background-color:#f0f0f0;
}

.counter-label{
  font-size: 0.75rem;
  color: #333;
  font-weight: normal;
  letter-spacing: 0.025rem;
  margin-left: auto;
}

.bright_font{
    color: hsla(0, 100%, 50%, 0.5)!important;
	font-size: large!important;
}

.menulink{
    cursor: pointer;
}

.chat_bar_bg{
    background: rgba(27, 28, 29, 0.75)!important;
}

.navbar_detail{
    background-color: white;
    color: #333;
    display:grid;
    width: 100%;
    height:50px;
    padding:0px;
    grid-template-columns: 1fr 5fr auto;
    -webkit-box-shadow: 0 0 4px rgba(0,0,0,.32), 0 4px 8px rgba(0,0,0,.12);
    box-shadow: 0 0 4px rgba(0,0,0,.32), 0 4px 8px rgba(0,0,0,.12);
    position: static;
    top: 0;
    width: 100%;
}

.logo_image{
    display: block;
    width: 100%;
    height: 35px;
    padding: 0;
    margin: 0;
}

.avatar{
    width: 3em !important;
    height: 3em !important;
}

.file-upload-wrapper {
  /* position: relative;
  height: 50px; */
  width: 180px;
}

.file-upload-wrapper::after {
  content: attr(data-text);
  font-size: 10px;
  position: absolute;
  top: 0;
  left: 0;
  background: #4b4b4bcf;
  padding: 0px 15px;
  display: block;
  width: 100px;
  pointer-events: none;
  z-index: 20;
  height: 30px;
  line-height: 30px;
  color: #fff;
  border-radius: 5px 10px 10px 5px;
  font-weight: 300;
}

.file-upload-wrapper::before {
    content: 'Upload';
    position: absolute;
    top: 0;
    right: 0px;
    display: inline-block;
    height: 30px;
    background: #2196F3;
    color: #fff;
    font-weight: 700;
    z-index: 25;
    font-size: 8px;
    line-height: 30px;
    padding: 0px 15px;
    text-transform: uppercase;
    pointer-events: none;
    border-radius: 0 5px 5px 0;
}

.file-upload-wrapper:hover {
  &:before {
    background: darken(#4daf7c, 10%);
  }
}

.file-upload-wrapper > input {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    height: calc(60px - 20px);
    margin: 0;
    padding: 0;
    display: block;
    cursor: pointer;
    width: 100%;
}

.uk-nav-header:not(:first-child) {
    margin-top: 5px;
}




.uk-nav-sub a {
    padding: 5px 0;
}

.lnr {
  display: inline-block;
  fill: currentColor;
  width: 1em;
  height: 1em;
  vertical-align: -0.05em;
}



.app-module-container-div-chat-mode{
  display: flex;flex-basis: 100%;
  overflow-y: hidden;position: relative;
  box-sizing: border-box;
}

.menu{
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    min-width: 100%;
    box-sizing: border-box;
}

.menu > div{
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: left;
}

.menu > div:hover, .submenu > div > div:hover{
  background-color:#f0f0f0;
  cursor:pointer;
}

.new_task_options{
  position: fixed;
  background: #fff;
  width: auto;
  transform-origin: top left;
  opacity: 1;
  transform: scale(0);
  font-size: .75rem;
  font-weight: 300;
  z-index: 20;
  transition: 0.15s linear;
  border-radius: 3px;
  padding: 10px;
  border: 1px solid #cecece;
  box-shadow: 0 2px 12px 0 rgb(0 0 0 / 12%);
}

.app-modules > div{
  transition : 0.15s linear;
  cursor:pointer;
  padding: 5px;
  transform: scale(1); /* scale(0.85); */
  color: #646464;
}

.app-modules > div:hover > div{  /* Target the inner child icon and scale it */
  transform : scale(1.05);
}

.app-modules > div:hover{
  background: #f2f2f2;
  font-weight: bold;
  color: #e35a88;
}

.app-modules-active{
  background: #efefef;
  background: #ececec;
}

.app-modules-active > div{
  background: #f2f2f2;
  font-weight: bold;
  color: #000000;
}

.app-container{
  transition:0.25s linear;
  opacity:1;
}

.hide_reveal{
  opacity: 0;
}

.spinner-3 {
  width:50px;
  height:50px;
  border-radius:50%;
  border:8px solid;
  border-color:lightblue;
  border-right-color: orange;
  animation:s3 1s infinite linear;
  opacity: 0.5;
}
@keyframes s3 {to{transform: rotate(1turn)}}

.spinner-2 {
  --r1: 154%;
  --r2: 68.5%;
  width:60px;
  height:60px;
  border-radius: 50%;
  border: 1px solid #c7c7c7;
  background:
    radial-gradient(var(--r1) var(--r2) at top   ,#0000 79.5%,#269af2 80%) center left,
    radial-gradient(var(--r1) var(--r2) at bottom,#269af2 79.5%,#0000 80%) center center,
    radial-gradient(var(--r1) var(--r2) at top   ,#0000 79.5%,#269af2 80%) center right,
    #ccc;
  background-size: 50.5% 220%;
  background-position: -100% 0%,0% 0%,100% 0%;
  background-repeat:no-repeat;
  animation:p9 2s infinite linear;
}
@keyframes p9 {
    33%  {background-position:    0% 33% ,100% 33% ,200% 33% }
    66%  {background-position: -100%  66%,0%   66% ,100% 66% }
    100% {background-position:    0% 100%,100% 100%,200% 100%}
}

.app-module-menu{
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  box-sizing: border-box;
  height: 100%;
  transition: all 0.3s linear;
  max-width: 75px;
  background: rgba(255, 255, 255, 0.65);
}

.app-module-menu.isClosed{
  flex-grow: 0;
}

.app-module-menu-content{
  display: flex;
  flex-direction: column;
  width: 100%;
  opacity: 1;
  min-width: 65px;
  background: rgba(255, 255, 255, 0);
  flex-grow: 1;
  box-sizing: border-box;
  row-gap: 10px;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgb(230, 230, 230);
}

.app-module-menu-content.isClosed{
  display:none;
}

.app-module-menu-content > div{
  user-select: none;
  display: flex;
  align-items: center;
  flex-direction: column;
  font-size: 0.65rem;
  gap: 5px;
}

.apps_trigger_inactive{
  cursor:pointer;
  color: white;
  padding: 7px 7px;
  background: transparent;
  border-radius: 20px;
  background: #1157a7;
  background : rgb(37, 139, 255);
}

.apps_trigger_active{
  cursor:pointer;
  color: white;
  padding: 7px 7px;
  border-radius: 20px;
  background: #144d8e;
}


.user_profile_trigger_inactive{
  cursor:pointer;
  color: white;
  background: transparent;
  border-radius: 20px;
  background: #1157a7;
  background : rgb(37, 139, 255);
  background: #e7edf6;
}

.user_profile_trigger_active{
  cursor:pointer;
  color: white;
  background: #e7edf6;
}

.notification_trigger_inactive{
  cursor:pointer;
  color: white;
  padding: 7px 7px;
  background: transparent;
  border-radius: 20px;
  background: #1157a7;
  background : rgb(37, 139, 255);
  background: #e7edf6;
  transition: 0.25s linear;
}

.notification_trigger_active:hover, .notification_trigger_inactive:hover,
.notification_trigger_active:hover, .notification_trigger_inactive:hover
{
  background: #d0e3ff;
}

.notification_trigger_active:active, .notification_trigger_inactive:active,
.notification_trigger_active:active, .notification_trigger_inactive:active
{
  background: #d0e3ff;
}

.notification_trigger_active{
  cursor:pointer;
  color: white;
  padding: 7px 7px;
  border-radius: 20px;
  background: #e7edf6;
}

.show_apps_panel{
  display:flex;
}

.hide_apps_panel{
  display:none;
}


.show_user_profile_panel{
  display:flex;
}
.hide_user_profile_panel{
  display:none;
}

.user_profile_panel{
  overflow-y: hidden;
  position: absolute;
  top: 50px;
  right: 2%;
  width: 20%;
  height: 400px;
  border-radius: 0px;
  background-color: #fffffff7;
  z-index: 1000;
  border: 1px solid #8080808a;
  border-top: 0px;
  box-shadow: 0 0 14px 4px rgb(0 0 0 / 28%), 0 4px 8px rgb(0 0 0 / 0%);
  box-shadow: 0 0 4px rgb(0 0 0 / 22%), 0 4px 8px rgb(0 0 0 / 0%);
  border-radius: 0px 0px 4px 4px;
}

.user_profile_panel::after {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: -10px;
    right: auto;
    top: 0px;
    bottom: auto;
    border: 22px solid;
    border-color: #fff transparent transparent transparent;
    z-index: -1;
}

.show_notification_panel{
  display:flex;
}
.hide_notification_panel{
  display:none;
}

.notifications_panel{
    overflow-y:hidden;
    position:absolute;
    top:51px;
    right:0px;
    width:347px;
    height:500px;
    background-color: #ffffffed;
    z-index: 1000;
    -webkit-box-shadow: 0 0 4px rgba(0,0,0,.32), 0 4px 8px rgb(0 0 0 / 10%);
    /* box-shadow: 0 0 4px rgba(0,0,0,.32), 0 4px 8px rgb(0 0 0 / 10%);
    box-shadow: -3px 8px 6px 3px rgba(0,0,0,.32), -6px 6px 8px rgb(0 0 0 / 10%); */
    box-shadow: rgba(0, 0, 0, 0.27) -2px 3px 20px 0px;
    border-radius: 0px 0px 0px 4px;
}

.apps_panel{
    overflow-y:hidden;
    position:absolute;
    top:0px;
    right:0px;
    width:30%;
    height:100px;
    background-color:#f3f6f9;
    z-index: 1000;
    -webkit-box-shadow: 0 0 4px rgba(0,0,0,.32), 0 4px 8px rgb(0 0 0 / 10%);
    box-shadow: 0 0 4px rgba(0,0,0,.32), 0 4px 8px rgb(0 0 0 / 10%);
}

#msg{
    color:blue
}

ul.uk-nav-sub {
    padding: 5px 0 5px 0px;
}

.side-bar-light .uk-nav-sub>li.selected-menu>a {
    color: #333!important;
    font-weight: bold!important;
    font-size: .7rem;
}

.soc_connected{
  background: greenyellow;
}

.soc_disconnected{
  background: red;
}

.uk-notification-message-login-color{
  background-color: #4caf50d1;
  color: #fff;
}

.uk-notification-message-logout-color{
  background-color: #00000087;
  color: #fff;
}
