/* Google Fonts Import Link */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  background-image: url('https://img.freepik.com/free-photo/glowing-spaceship-orbits-planet-starry-galaxy-generated-by-ai_188544-9655.jpg?t=st=1744953845~exp=1744957445~hmac=b7298176f97ad2278e977b88bf4b6db0f0b663f92868242661fd5a7160a52ec0&w=1060');
  background-position: center;
  background-size: cover;
}
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 260px;
  background: rgba(60, 60, 60, 0.5);
  z-index: 100;
  transition: all 0.5s ease;
}
.sidebar.close {
  width: 78px;
}
.sidebar .logo-details {
  height: 60px;
  width: 100%;
  display: flex;
  align-items: center;
}
.sidebar .logo-details img {
  font-size: 30px;
  color: #fff;
  padding: 15px;
  height: 80px;
  min-width: 80px;
  text-align: center;
  line-height: 40px;
}
.sidebar .logo-details .logo_name {
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  transition: 0.3s ease;
  transition-delay: 0.1s;
}
.sidebar.close .logo-details .logo_name {
  transition-delay: 0s;
  opacity: 0;
  pointer-events: none;
}
.sidebar .nav-links {
  height: 100%;
  padding: 30px 0 150px 0;
  overflow: auto;
}
.sidebar.close .nav-links {
  overflow: visible;
}
.sidebar .nav-links::-webkit-scrollbar {
  display: none;
}
.sidebar .nav-links li {
  position: relative;
  list-style: none;
  transition: all 0.4s ease;
}
.sidebar .nav-links li:hover {
  background: #bd9500;
}
.sidebar .nav-links li .iocn-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar.close .nav-links li .iocn-link {
  display: block;
}
.sidebar .nav-links li i {
  height: 50px;
  min-width: 78px;
  text-align: center;
  line-height: 50px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.sidebar .nav-links li.showMenu i.arrow {
  transform: rotate(-180deg);
}
.sidebar.close .nav-links i.arrow {
  display: none;
}
.sidebar .nav-links li a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.sidebar .nav-links li a .link_name {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  transition: all 0.4s ease;
}
.sidebar.close .nav-links li a .link_name {
  opacity: 0;
  pointer-events: none;
}
.sidebar .nav-links li .sub-menu {
  padding: 6px 6px 14px 80px;
  margin-top: -10px;
  background: #bd9500;
  display: none;
}
.sidebar .nav-links li.showMenu .sub-menu {
  display: none;
}
.sidebar .nav-links li .sub-menu a {
  color: #fff;
  font-size: 15px;
  padding: 5px 0;
  white-space: nowrap;
  opacity: 0.6;
  transition: all 0.3s ease;
}
.sidebar .nav-links li .sub-menu a:hover {
  opacity: 0;
}
.sidebar.close .nav-links li .sub-menu {
  position: absolute;
  left: 100%;
  top: -10px;
  margin-top: 0;
  padding: 10px 20px;
  border-radius: 0 6px 6px 0;
  opacity: 0;
  display: block;
  pointer-events: none;
  transition: 0s;
}
.sidebar.close .nav-links li:hover .sub-menu {
  top: 0;
  opacity: 1;
  pointer-events: auto;
  transition: all 0.4s ease;
}
.sidebar .nav-links li .sub-menu .link_name {
  display: none;
}
.sidebar.close .nav-links li .sub-menu .link_name {
  font-size: 18px;
  opacity: 1;
  display: block;
}
.sidebar .nav-links li .sub-menu.blank {
  opacity: 0;
  pointer-events: auto;
  padding: 3px 20px 6px 16px;
  opacity: 0;
  pointer-events: none;
}
.sidebar .nav-links li:hover .sub-menu.blank {
  top: 50%;
  opacity: 0;
  transform: translateY(-50%);
}
.sidebar .profile-details {
  position: fixed;
  bottom: 0;
  width: 260px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: 
#bd9500;
  padding: 12px 0;
  transition: all 0.5s ease;
}
.sidebar.close .profile-details {
  background: none;
}
.sidebar.close .profile-details {
  width: 78px;
}
.sidebar .profile-details .profile-content {
  display: flex;
  align-items: center;
}
.sidebar .profile-details img {
  height: 52px;
  width: 52px;
  object-fit: cover;
  border-radius: 16px;
  margin: 0 14px 0 12px;
  background:   
#bd9500;
  transition: all 0.5s ease;
}
.sidebar.close .profile-details img {
  padding: 10px;
}
.sidebar .profile-details .profile_name,
.sidebar .profile-details .job {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
}
.sidebar.close .profile-details i,
.sidebar.close .profile-details .profile_name,
.sidebar.close .profile-details .job {
  display: none;
}
.sidebar .profile-details .job {
  font-size: 12px;
}
.home-section {
  position: relative;
  padding: 20px;
  height: 100vh;
  left: 260px;
  width: calc(100% - 260px);
  transition: all 0.5s ease;
}
.sidebar.close ~ .home-section {
  left: 78px;
  width: calc(100% - 78px);
}
.home-section .home-content {
  display: flex;
  height: 100px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row-reverse;
}
.home-section .home-content .bx-menu,
.home-section .home-content .text {
  color: #bd9500;
  font-size: 35px;
}
.home-section .home-content .bx-menu {
  margin: 0 15px;
  cursor: pointer;
}
.home-section .home-content .text {
  font-size: 26px;
  font-weight: 600;
}
@media (max-width: 420px) {
  .sidebar.close .nav-links li .sub-menu {
    display: none;
  }
}

.block_watch {
  background:rgba(60, 60, 60, 0.5);
  height: 80px;
  padding: 13px;
  font-size: 45px;
  border-radius: 15px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  align-items: center;
  display: flex;
  width: 225px;
}
.main_homeContent {
  display: grid;
  gap: 20px 50px;
  grid-template-columns:repeat(4, 400px);
  grid-template-rows: 20vh;
}
.infoBlock_employee {
  font-size: 13px;
  display: flex;
  flex-direction: row;
  justify-content:space-around;
}
.card_employee {
  color: gray;
  font-weight: 300;
  padding: 15px;
  width: 100%;
  max-width: 400px;
  background: #fff;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}
.card_employee:hover {
  box-shadow: 0px 5px 10px 3px rgba(60, 60, 60, 0.5);
}
.main_login {
  height: 100vh;
  background: url('https://img.freepik.com/free-photo/glowing-spaceship-orbits-planet-starry-galaxy-generated-by-ai_188544-9655.jpg?t=st=1744953845~exp=1744957445~hmac=b7298176f97ad2278e977b88bf4b6db0f0b663f92868242661fd5a7160a52ec0&w=1060');
  background-size: cover;
}
.btns_blockEmployee {
  justify-content: space-around;
  float: right;
  display: flex;
  flex-direction: row;
}
.info_employee ul{
  list-style-type: none;
}
.btns_blockEmployee button{
  font-size: 15px;
  cursor: pointer;
  border: none;
  color:gray;
  background: #fff;
  line-height: 15px;
  transition: 0.3s;
  border: none;
}
.btns_blockEmployee button:hover {
  color: #f0bd00;
}
.departament_employee {
  font-size: 20px;
  font-weight: 900;
  color:#f0bd00;
}
.buttonEmloyessRow {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  width: 100%;
  max-width:520px;
}
.buttonEmloyessRow button {
  border-radius: 7px;
  width: 600px;
  padding: 17px;
  background: #fff;
  margin: 10px 10px 10px 0;
  border:1px solid transparent;
  font-size: 16px;
  transition: 0.3s;
}
.buttonEmloyessRow button:hover {
  background: #f0bd00;
 cursor: pointer;
  box-shadow: 0px 5px 10px 3px rgba(60, 60, 60, 0.5);
}

.block_notifications {
  margin: 0 15px;
  background:rgba(60, 60, 60, 0.5);
  height: 20px;
  padding: 20px 15px;
  font-size: 25px;
  border-radius: 8px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  align-items: center;
  display: flex;
  transition: 0.3s;
}
.block_notifications:hover {
  color:#f0bd00;
}
.blockEmployees {
  padding:15px;
  color:#fff;
  background:rgba(60, 60, 60, 0.5);
  border-radius: 15px;
}
.blockTasks {
   padding:15px;
  color:#fff;
  background:rgba(60, 60, 60, 0.5);
  border-radius: 15px;
}
.blockEmployees h1 {
  font-size: 35px;
  margin: 10px 0px;
}
.board {
  width: 100%;
}

/* ---- BOARD ---- */
.lanes {
  display: flex;
  align-items: flex-start;
  justify-content: start;
  gap: 16px;
  padding: 24px 32px;
  height: 100%;
}

.heading {
  padding: 10px;
  border-radius: 13px;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 8px;
}

.swim-lane {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
  border-radius: 4px;
  width: 415px;
  min-height: 120px;
  flex-shrink: 0;
}

.task {
  background: white;
  color: black;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
  width: 390px;
  padding: 12px;
  border-radius: 4px;
  font-size: 16px;
  cursor: move;
}

.is-dragging {
  scale: 1.05;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.25);
  background: rgb(50, 50, 50);
  color: white;
}
.task_heading {
  text-decoration: none;
  color: #222;
  font-size: 25px;
  font-weight: 700;
}
.task_time {
  display: flex;
  flex-direction:row;
  align-items:center;
  font-size: 20px;
  font-weight: 700;
}
.task_time i {
  margin:0px 10px 0 0;
  font-size: 25px;
}

.calendar {
  background-color: #FFF;
  border-radius: 0.8rem;
  box-shadow: 0 0.8rem 1.6rem rgba(35, 131, 157, 0.2);
  padding: 4.2rem;
}
.calendar__header {
  color: #222;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  letter-spacing: 0.2rem;
  padding: 0 0.4rem 1.2rem;
  text-transform: uppercase;
}
.calendar__day-names {
  border-bottom: 0.1rem solid #828889;
  display: flex;
  gap: 1.2rem;
  margin-bottom: 0.8rem;
  padding: 0.8rem 0;
}
.calendar__day-name {
  aspect-ratio: 1;
  color: #828889;
  font-weight: normal;
  text-align: center;
  width: 2.4rem;
}
.calendar__day_numbers {
  display: flex;
  flex-direction: column;
}
.calendar__day-numbers-row {
  display: flex;
  gap: 1.2rem;
  padding: 0.6rem 0;
}
.calendar__day-numbers-row:first-child {
  justify-content: flex-end;
}
.calendar__day-number {
  align-content: center;
  justify-content: center;
  aspect-ratio: 1;
  color: #000;
  display: flex;
  line-height: 1.4;
  text-align: center;
  width: 2.4rem;
}
.calendar__day-number--current {
  background-color: #f0bd00;
  border-radius: 50%;
  box-shadow: 0 0 0 0.4rem #f0bd00;
  color: #FFF;
}
.blockNews {
  height: 650px;
  /* Включаем отображение полос прокрутки по горизонтали
  и по вертикали */
  overflow: auto;
  padding:35px;
  color:#fff;
  background:rgba(60, 60, 60, 0.5);
  border-radius: 15px;
}
.block_emoloyAdd {
  height: 650px;
  /* Включаем отображение полос прокрутки по горизонтали
  и по вертикали */
  overflow: auto;
  padding:35px;
  color:#fff;
  background:rgba(60, 60, 60, 0.5);
  border-radius: 15px;
}
.blockNews::-webkit-scrollbar {
  width: 10px;
  border-radius: 5px;
}
.blockNews::-webkit-scrollbar-track {
  background: transparent;
}
.blockNews::-webkit-scrollbar-thumb {
  background:#bd9500;
}
._warninng {
  border: 3px solid #bd9500;
  background:#bd9500 ;
}
._wait {
  border: 3px solid #89AC46;
  background: #89AC46;
}
._error {
  border: 3px solid #BF3131;
  background: #BF3131;
}
._liteTask {
  border: 3px solid gray;
  background: gray;
}
.background_resize {
  padding: 20px;
  overflow: hidden;
  border-radius: 15px;
}
.card_news img{
   border-radius: 15px;
   height: 100%;
   width: 100%;
   max-height: 270px;
   nax-width: 500px;
}
.card_news {
  background: #fff;
   color: #222;
   border-radius: 15px;
   padding: 20px;
   max-width: 500px;
   width: 100%;
   box-shadow: 0px 5px 10px 3px rgba(60, 60, 60, 0.5);
}
.row_news {
  display: grid;
  grid-template-columns:repeat(3, 550px);
  grid-template-rows:repeat(1, 600px);
}
.btn_news_reading {
  color: #fff;
  margin: 0px 0px 0px -6px;
  height: 100%;
  background: #bd9500;
  border-radius: 15px;
  padding: 10px;
  width: 100%;
  transition: 0.3s;
}
.btn_news_reading:hover {
  background: #d6aa04;
  cursor: pointer;
}

.background_resize h1 {
  font-size: 45px;
}
.form__login {
  background: rgba(206, 206, 206, 0.7);;
  width: 500px;
  height: 600px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.main_login {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;

}
.text_LogoLogin {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 17px;
}
.logo_login {
  align-items: center;
  display: flex;
  flex-direction: row;
}
.logo_login img {
  height: 60px;
  width: 60px;
}
.form__login form input {
  width: 100%;
  min-width: 300px;
  padding: 20px;
  border-radius: 10px;
  border:none;
  margin: 30px 0 30px 0;
}
.form__login form {
  display: flex;
  flex-direction: column;
}
.form__login form button {
  background: #bd9500;
  color: #fff;
  padding: 10px;
  border-radius: 15px;
  border: none;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
}
.form__login form button:hover {
  background: #FFD020;
  cursor: pointer;
}
.link_resetPass {
  color: #4B4B4B;
  text-decoration: none;
  cursor: pointer;
}
.input__div {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
}
.input__div input {
  min-height: 20px;
  width: 100%;
  padding: 10px;
  background: #fff;
  border: none;
  border-radius: 10px;
  margin: 0px;
}
.input__div label{
 font-size: 15px;
 font-weight: 600;
 color: #fff;
}
.emoloy__add span{
    color: #222;
    font-weight: 700;
    font-size: 20px;
}
.form_employAdd {
 background: rgba(206, 206, 206, 0.6);;
  padding: 20px;
  border-radius: 15px;
  overflow: hidden;
s
}
.block_emoloyAdd::-webkit-scrollbar {
  width: 10px;
  border-radius: 5px;
}
.block_emoloyAdd::-webkit-scrollbar-track {
  background: transparent;
}
.block_emoloyAdd::-webkit-scrollbar-thumb {
  background:#bd9500;
}
.row_form_employAdd {
  display: grid;
  grid-template-columns:repeat(2, 850px);
  grid-template-rows:500px;
} 
.form_employAdd h1{
  font-size: 45px;
  font-weight: 700;
}
.emoloy__add button{
  padding: 15px;
  background: #bd9500;
  border-radius: 10px;
  border: none;
  transition: 0.3s;
  min-width: 600px;
  height: 50px;
}

.emoloy__add button:hover {
  background: #FFD020;
  cursor: pointer;

}