@import url('https://fonts.bunny.net/css2?family=Montserrat+Alternates:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.bunny.net/css2?family=Montserrat:wght@400;500;600&display=swap');

body { 
	padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  font-family: Montserrat;
  background-color: #ececec;
}

.row {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.row3 {
  display: flex;
  flex-direction: row;
}

.row_lock {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.col {
  display: flex;
  flex-direction: column;
}

.center{
  margin: 0 auto;
}

form {
  margin-bottom: 20px;
}

a {
  text-decoration: none;
}

.link_json {
  color: #2193b0;
}

.SmarginL {
  margin-left: 15px;
}

.mar_vert {
  margin: 20px 0 !important;
}

.info_block {
  margin: 6px 0px 0px 20px;
  display: grid;
  grid-template-columns: 18px 1fr;
  font-size: 14px;
  font-weight: 500;
  align-items: center;
}

/* .info_block svg{
  margin-right: 3px;
} */

.info_text {
  color: #959595;
  display: flex;
}

.info_text_accent {
  color: #7d7d7d;
  font-weight: 600;
}

/* LOGIN PAGE */

.login_form_title {
  font-size: 30px;
  font-weight: 600;
  color: #FFF;
  text-align: center;
  padding-bottom: 40px;
}

.login-box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  padding: 40px;
  transform: translate(-50%, -50%);
  background: rgba(24, 20, 20, 0.987);
  box-sizing: border-box;
  box-shadow: 0 15px 25px rgba(0,0,0,.6);
  border-radius: 10px;
}

.login-box .user-box {
    position: relative;
}

.login-box .user-box input {
  width: 100%;
  padding: 10px 0;
  font-size: 16px;
  color: #fff;
  margin-bottom: 30px;
  border: none;
  border-bottom: 1px solid #fff;
  outline: none;
  background: transparent;
}

.login-box .user-box label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 0;
  font-size: 16px;
  color: #fff;
  pointer-events: none;
  transition: .5s;
}

.login-box .user-box input:focus ~ label,
.login-box .user-box input:valid ~ label {
  top: -20px;
  left: 0;
  color: #bdb8b8;
  font-size: 12px;
}

.login-box form button {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  color: #ffffff;
  font-size: 16px;
  background-color: rgba(24, 20, 20, 0.987);
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  transition: .5s;
  margin-top: 40px;
  letter-spacing: 4px;
  border: 1px solid #ffd570;
  border-radius: 5px;
}

.login-box button:hover {
  background: #ffd570;
  color: #000;
  border: 1px solid #ffd87a;
}

.login-boxbuttonspan {
  position: absolute;
  display: block;
}


.forgot_pass {
  color: #fff;
  justify-content: center;
  display: flex;
  font-size: 16px;
  margin-top: 10px;
}

/* LOGIN PAGE END */


/* USERS PAGE */
.users_container {
  width: 80%;
  max-width: 1200px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 80px auto 0 auto;
  border-radius: 30px;
}

/* NEW REQUEST BUTTON */
.new_request_user_btn {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid #fd8a26;
  color: rgba(24, 20, 20, 0.987);
  font-size: 14px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.1s linear;
  cursor: pointer;
  text-decoration: none;
}

.new_request_user_btn:hover {
  transform: scale(1.2);
  background-color: #fd8a26;
}

.double_title {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 5px;
  flex-direction: row;
}

/* NEW REQUEST BUTTON END*/

/* HEADER */

.header {
  width: 100%;
  height: 60px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  background-color: #3e3e3e;
  position: fixed;
  z-index: 222;
}

.header_navi {
  text-decoration: none;
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
}

.header_navi:hover {
  color: #fd8a26;
}

.header_navi svg:hover{
  fill: #fd8a26;;
}

.header img {
  width: 200px;
  height: auto;
  cursor: pointer;
}

.header_nav_list {
  display: flex;
  justify-content: space-between;
  width: 70%;
  z-index: 1;
}

.header_nav_toggle {
  display: none; /* Скрываем кнопку на больших экранах */
  flex-direction: column;
  cursor: pointer;
}

.header_nav_toggle .bar {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 3px 0;
}

.header_nav_toggle.open .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg); /* Сдвиг и поворот верхней полоски */
}

.header_nav_toggle.open .bar:nth-child(2) {
  opacity: 0; /* Скрываем среднюю полоску */
}

.header_nav_toggle.open .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg); /* Сдвиг и поворот нижней полоски */
}

@media (max-width: 768px) {
  .header_logo {
    margin-left: 20px;
  }

  .header {
    justify-content: space-between;
  }

  .header_nav_list {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      background-color: #333;
      height: calc(100vh - 60px);
  }

  .header_nav_list.active1 {
      display: flex;
  }

  .header_nav_toggle {
      display: flex;
      margin-right: 20px;
  }

  .header_navi {
      margin: 20px auto;;
  }

  .header_nav_list {
    justify-content: normal !important;
  }
}

/* HEADER END */

.serch_btn {
  height: 44px;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* CUSTOM USERS TABLE */

.pagi_items_group {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.pagi_item {
  width: 30px; 
  height: 30px; 
  line-height: 30px;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 50%;
}

.pagi_item:hover {
  border: 2px solid #a3a3a3;
}

.pagi_item.active {
  border: 2px solid #a3a3a3;
}

.pagi_item.active:after {
  content: none;
}

.users_table_title {
  font-size: 30px;
  font-weight: 600;
  color: #000;
  text-align: center;
}

.table_wrapper {
  border: 2px solid #a3a3a3;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 20px;
  margin-bottom: 20px;
  
}

.employee_table {
  width: 97%;
  margin: 0 auto;
}

.emp_tab {
  background-color: #fff;
  padding: 5px;
  border-radius: 35px;
   margin-top: 20px;
  box-shadow: 0px 0px 4px 0px #9b9b9b;
}

.employee_table table {
  border: none;
  height: calc(100% - 67vh);
  width: 100%;
  table-layout: auto;
  border-collapse: collapse;
  border-spacing: 1px;
  text-align: center;
}

.employee_table th {
  border-bottom: 2px solid #a3a3a3;
  border-right: 2px solid #a3a3a3;
  background-color: #c2c2c2;
  color: #000000;
  padding: 5px;
}

.employee_table th:last-child {
  border-right: none;
}

.employee_table td {
  border-bottom: 2px solid #a3a3a3;
  border-right: 2px solid #a3a3a3;
  background-color: #ffffff;
  color: #000000;
  padding: 5px;
  font-size: 14px;
  font-weight: 500;
}

.employee_table td:last-child {
  border-right: none;
}

.employee_table tr:last-child td{
  border-bottom: none;
}

.row2 {
  display: flex;
}

.row_btn {
  margin: 20px 0px 0px 20px;
}

.row_btn:last-child {
  margin: 20px 0px 20px 20px;
}

th:nth-child(1), td:nth-child(1) { min-width: 170px; max-width: 200px; }
th:nth-child(2), td:nth-child(2) { min-width: 130px; max-width: 150px; }
th:nth-child(3), td:nth-child(3) { min-width: 150px; max-width: 150px; position: relative;}
th:nth-child(4), td:nth-child(4) { min-width: 120px; max-width: 120px; position: relative;}
th:nth-child(5), td:nth-child(5) { min-width: 130px; max-width: 130px; word-break: break-all; }
th:nth-child(6), td:nth-child(6) { min-width: 120px; max-width: 140px; }
th:nth-child(7), td:nth-child(7) { min-width: 80px; max-width: 100px; }
th:nth-child(8), td:nth-child(8) { min-width: 150px; max-width: 160px; }

.th_svg {
  position: absolute;
  top: 30%;
  left: 0;
}

@media (max-width: 1300px) {
  th:nth-child(2), td:nth-child(2) { min-width: 215px; max-width: 220px; }
  th:nth-child(4), td:nth-child(4) { min-width: 150px; max-width: 155px; }

  .table_wrapper {
    overflow-x: auto;
  }

  .search_group {
    margin: 10px auto 0 auto;
    width: 70% !important;
  }  
}

@media (max-width: 850px) {
  .double_input {
    flex-direction: column !important;
    align-items: start !important;
  }

  .rigt_arrow {
    margin: 0 150px !important;
    transform: rotate(90deg);
  }
}

@media (max-width: 768px) {
  .users_container {
    width: 100%;
  }

  .table_wrapper {
    overflow-x: auto;
  }

  .checkbox_row {
    flex-direction: column !important;
    margin-left: .5rem !important;
  }

  .checkbox_column {
    margin: 0 !important;
  }
  
  .new_employee_input {
    width: 70% !important;
  }

  .new_employee_select {
    width: 70% !important;
  }

  .new_employee_textarea {
    width: 70% !important;
  }

  .tzd_checkbox_block {
    width: 70% !important;
  }

  .select_group span.select2-container {
    width: 75% !important;
  }

  .location_type_select {
    width: 75% !important;
  }

  .select_group {
    margin: 20px 0px 0px 5px !important;
    width: 95% !important;
  }

  .input_group {
    margin: 20px 0px 0px 5px !important;
    width: 95% !important;
  }

  .input_group_info {
    margin: 20px 0px 0px 5px !important;
    width: 95% !important;
  }

  .search_group {
    width: 97% !important;
  }

  .users_container_accord {
    width: 100% !important;
  }

  .accordion {
    width: 85% !important;
  }

  .panel.open {
    width: 89% !important;
    padding: 0 10px !important;
  }

  .row_lock {
    display: block;
  }

  .adapt_btn {
    margin: 20px 20px !important;
  }

  .adapt_btn2 {
    margin: 0px 20px !important;
  }

  .adapt_select {
    margin: 20px 0 0 0 !important;
  }

  .row3 {
    display: block;
  }

  .row3 #select_brach_admin + span.select2-container {
    margin: 15px 0 15px 0 !important;
    width: 76% !important;
  }

  .info {
    left: 35% !important;
    top: -25px !important;
  }
}

@media (max-width: 450px) {
  .input_group {
    margin: 20px 0px 0px 5px !important;
    width: 95% !important;
  }

  .select_group span.select2-container {
      width: 100% !important;
  }

  .users_table_title {
    font-size: 21px;
  }
  .users_container {
    overflow: hidden;
    max-width: 450px;
  }

  .col_responsible{
    max-width: 100%;
  }

  .info_block {
    margin: 6px 0px 0px 5px;
  }

  .uv-checkbox-text {
    font-size: 15px;
  }
  
  .row {
    flex-direction: column !important;
    align-items: start !important;
    position: relative;
  }

  .row_btn {
    max-width: 356px;
    margin: 20px 0px 0px 5px;
  }
  .row_btn:last-child {
    margin: 20px 0px 20px 5px;
  }

  .dropdown-toggle {
    margin-left: 0 !important;
  }

  .new_employee_input {
    width: 90% !important;
  }

  .new_employee_select {
    width: 90% !important;
  }

  .new_employee_textarea {
    width: 90% !important;
  }

  .new_employee_input2 {
    width: 91% !important;
  }

  .new_employee_select2 {
    width: 67% !important;
  }

  .new_employee_textarea2 {
    width: 91% !important;
  }

  .tzd_checkbox_block {
    width: 82% !important;
  }

  .location_type_select {
    width: 102% !important;
  }

  .select2-container {
    width: 100% !important;
  }

  .row3 #select_brach_admin + span.select2-container {
    width: 86% !important;
  }

  .select_group {
    width: 96% !important;
  }

  .select_group2 {
    margin: 20px 0px 0px 5px !important;
    width: 71% !important;
  }

  .send_message_btn {
    position: absolute;
    top: 4px;
    left: 78%;
  }

  .change_pass_arrow {
    position: absolute;
    top: 4px;
    left: 78%;
  }

  .row2 {
    display: flex;
    /* margin: 0 auto; */
  }

  .send_sms_btn {
    margin: 0 !important;
  }

  .animated-button {
    margin: 15px auto !important;
    width: 60% !important;
  }

  .animated-button .arr-1 {
    right: 20px !important;
  }

  .animated-button .arr-2 {
      left: 20px !important;
  }

  .animated-button .text {
      transform: translateX(0) !important;
      width: 100% !important; 
      text-align: center !important; 
  }

  .animated-button:hover .text {
      transform: translateX(0) !important; 
  }

  .animated-button .circle {
      width: 40px !important;
      height: 40px !important;
  }

  .animated-button:hover .circle {
      width: 150% !important;
      height: 150% !important;
  }

  .btn-conteiner2 {
    margin: 15px auto 0 auto !important;
  }

  .adapt_btn {
    margin: 20px auto !important;
  }

  .adapt_btn2 {
    margin: 0px auto !important;
  }

  .serch_btn {
    position: fixed;
    left: 87%;
  }

  .info {
    left: 20% !important;
    top: -25px !important;
  }
}

@media (max-width: 335px) {
  .send_message_btn {
    position: absolute;
    top: 4px;
    left: 71%;
  }

  .change_pass_arrow {
    position: absolute;
    top: 4px;
    left: 71%;
  }

  .new_employee_input {
    width: 93% !important;
  }

  .new_employee_select {
    width: 93% !important;
  }

  .new_employee_textarea {
    width: 93% !important;
  }

  /*  */
  .new_employee_input2 {
    width: 67% !important;
  }

  .new_employee_select2 {
    width: 67% !important;
  }

  .new_employee_textarea2 {
    width: 67% !important;
  }

  .tzd_checkbox_block {
    width: 93% !important;
  }
}

/* FILE PAGE */
.file_substrate {
  width: 97%;
  min-height: 500px;
  margin: 0 auto;
  background-color: #fff;
  padding: 5px;
  border-radius: 35px;
  margin-top: 10px;
  box-shadow: 0px 0px 4px 0px #9b9b9b;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.3s ease;
}

.file_substrate.highlight {
  background-color: #007bff56; /* Цвет при наведении файла */
}

.sub_title {
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  margin-top: 20px;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px 20px 20px;
  background: linear-gradient(135deg, #6dd5ed, #2193b0);
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  width: 40%;
  margin: auto;
}

.folder {
  position: relative;
  animation: float 2.5s infinite ease-in-out;
  transition: transform 0.3s ease;
}

.folder:hover {
  transform: scale(1.05);
}

.folder .top {
  background: linear-gradient(135deg, #ff9a56, #ff6f56);
  width: 80px;
  height: 20px;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

.folder .bottom {
  background: linear-gradient(135deg, #ffe563, #ffc663);
  width: 120px;
  height: 80px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-radius: 0 10px 10px 10px;
  position: relative;
  top: -10px;
}

.custom-file-upload {
  font-size: 1.1em;
  color: #ffffff;
  text-align: center;
  margin-top: 20px;
  padding: 15px 25px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background 0.3s ease;
  display: inline-block;
  width: 220px;
}

.custom-file-upload:hover {
  background: rgba(255, 255, 255, 0.4);
}

.custom-file-upload input[type="file"] {
  display: none;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}
/* FILE PAGE END */


/* TABLE BUTTON */
.btn-conteiner2 {
  display: flex;
  justify-content: center;
  --color-text: #000;
  --color-background: #fd8a26;
  --color-outline: #f63d00;
  --color-shadow: #00000080;
  cursor: pointer;
}

.btn-conteiner {
  display: flex;
  justify-content: center;
  --color-text: #000;
  --color-background: #fd8a26;
  --color-outline: #f63d00;
  --color-shadow: #00000080;
  cursor: pointer;
}
  
.btn-content {
  display: flex;
  align-items: center;
  padding: 0px 16px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text);
  background: var(--color-background);
  transition: 1s;
  border-radius: 100px;
  box-shadow: 0 0 0.2em 0 var(--color-background);
}

.btn-content:hover, .btn-content:focus {
  transition: 0.5s;
  -webkit-animation: btn-content 1s;
  animation: btn-content 1s;
  outline: 0.1em solid transparent;
  outline-offset: 0.2em;
  box-shadow: 0 0 0.4em 0 var(--color-background);
}

.btn-content .icon-arrow {
  transition: 0.5s;
  margin-right: 0px;
  transform: scale(0.6);
}

.btn-content:hover .icon-arrow {
  transition: 0.5s;
  margin-right: 25px;
}

.icon-arrow {
  width: 15px;
  margin-left: 5px;
  position: relative;
  top: 3%;
}

.td_button {
  min-width: 130px !important;
}
  
/* SVG */
#arrow-icon-one {
  transition: 0.4s;
  transform: translateX(-60%);
}

#arrow-icon-two {
  transition: 0.5s;
  transform: translateX(-30%);
}

.btn-content:hover #arrow-icon-three {
  animation: color_anim 1s infinite 0.2s;
}

.btn-content:hover #arrow-icon-one {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.6s;
}

.btn-content:hover #arrow-icon-two {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.4s;
}

/* SVG animations */
@keyframes color_anim {
  0% {
    fill: white;
  }

  50% {
    fill: var(--color-background);
  }

  100% {
    fill: white;
  }
}

/* Button animations */
@-webkit-keyframes btn-content {
  0% {
    outline: 0.2em solid var(--color-background);
    outline-offset: 0;
  }
}

@keyframes btn-content {
  0% {
    outline: 0.2em solid var(--color-background);
    outline-offset: 0;
  }
}
  
/* TABLE BUTTON END */

/* CUSTOM USERS TABLE END*/



/* USERS PAGE END */



/* NEW_EMPLOYEE */

/* Custom Select wrapper */
.new_employee_select {
  position: relative;
  display: flex;
  width: 300px;
  height: 44px;
  border-radius: .5rem;
  overflow: hidden;
  background-color: #05060f0a;
  cursor: pointer;
  border: 2px solid transparent;
  box-shadow: none;
  padding: 0 1rem;
  font-size: 1rem;
  transition: border-color .3s cubic-bezier(.25, .01, .25, 1) 0s, background .2s cubic-bezier(.25, .01, .25, 1) 0s;
  font-family: 'Montserrat';
}

.new_employee_select2 {
  position: relative;
  display: flex;
  width: 300px;
  height: 44px;
  border-radius: .5rem;
  overflow: hidden;
  background-color: #05060f0a;
  cursor: pointer;
  border: 2px solid transparent;
  box-shadow: none;
  padding: 0 1rem;
  font-size: 1rem;
  transition: border-color .3s cubic-bezier(.25, .01, .25, 1) 0s, background .2s cubic-bezier(.25, .01, .25, 1) 0s;
  font-family: 'Montserrat';
}

.employee_select_search {
  position: relative;
  display: flex;
  width: calc(100% - (2rem + 4px));
  height: 44px;
  border-radius: .5rem;
  overflow: hidden;
  background-color: #05060f0a;
  cursor: pointer;
  border: 2px solid transparent;
  box-shadow: none;
  padding: 0 1rem;
  font-size: 1rem;
  transition: border-color .3s cubic-bezier(.25, .01, .25, 1) 0s, background .2s cubic-bezier(.25, .01, .25, 1) 0s;
  appearance: none;
}

.select_group {
  margin: 20px 0px 0px 20px;
  position: relative;
}

.select_group2 {
  margin: 20px 0px 0px 20px;
  position: relative;
}

.search_group {
  margin: 10px auto 0 auto;
  width: 50%;
}

.new_employee_select:hover, .new_employee_select:focus {
  border-color: #32578a;
  outline: none;
}

.new_employee_select2:hover, .new_employee_select2:focus {
  border-color: #32578a;
  outline: none;
}

.employee_select_search:hover, .employee_select_search:focus {
  border-color: #32578a;
  outline: none;
}

/* Custom Select wrapper END*/

.new_employee_input {
  width: 300px;
  height: 44px;
  background-color: #05060f0a;
  border-radius: .5rem;
  padding: 0 1rem;
  border: 2px solid transparent;
  font-size: 1rem;
  transition: border-color .3s cubic-bezier(.25, .01, .25, 1) 0s, background .2s cubic-bezier(.25, .01, .25, 1) 0s;
  font-family: 'Montserrat';
}

.new_employee_input2 {
  width: 300px;
  height: 44px;
  background-color: #05060f0a;
  border-radius: .5rem;
  padding: 0 1rem;
  border: 2px solid transparent;
  font-size: 1rem;
  transition: border-color .3s cubic-bezier(.25, .01, .25, 1) 0s, background .2s cubic-bezier(.25, .01, .25, 1) 0s;
  font-family: 'Montserrat';
}

.input_group {
  margin: 20px 0px 0px 20px;
  position: relative;
}

.input_group_info {
  margin: 8px 0px 0px 20px;
  position: relative;
}

.label {
  display: block;
  margin: .5rem;
  font-size: .9rem;
  font-weight: bold;
  color: #05060f99;
  transition: color .3s cubic-bezier(.25, .01, .25, 1) 0s;
}

.new_employee_input:focus,
.new_employee_input:hover {
  outline: none;
  border-color: #32578a !important;
}

.new_employee_input2:focus,
.new_employee_input2:hover {
  outline: none;
  border-color: #32578a !important;
}

/* CHECKBOX */
.uv-checkbox-wrapper {
  display: inline-block;
  margin-right: 50px;
}

.checkbox_column {
  display: flex;
  flex-direction: column;
  margin-right: 50px;
}

.checkbox_row {
  display: flex;
  flex-direction: row;
}

.uv-checkbox {
  display: none;
}

.uv-checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 20px;
}

.uv-checkbox-icon {
  position: relative;
  width: 2em;
  height: 2em;
  border: 2px solid #ccc;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  transition: border-color 0.3s ease, border-radius 0.3s ease;
}

.uv-checkmark {
  position: absolute;
  top: 0.1em;
  left: 0.2em;
  width: 1.6em;
  height: 1.6em;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  transition: stroke-dashoffset 0.5s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.uv-checkbox-text {
  margin-left: 0.5em;
  transition: color 0.3s ease;
}

.uv-checkbox:checked + .uv-checkbox-label .uv-checkbox-icon {
  border-color: #fd8a26;
  border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  background-color: #fd8a26;
}

.uv-checkbox:checked + .uv-checkbox-label .uv-checkmark {
  stroke-dashoffset: 0;
}

.uv-checkbox:checked + .uv-checkbox-label .uv-checkbox-text {
  color: #fd8a26;
}

/* CHECKBOX END*/

.new_employee_textarea {
  width: 300px;
  height: 80px;
  background-color: #05060f0a;
  border-radius: .5rem;
  padding: 0.1rem 1rem;
  border: 2px solid transparent;
  font-size: 1rem;
  transition: border-color .3s cubic-bezier(.25, .01, .25, 1) 0s, background .2s cubic-bezier(.25, .01, .25, 1) 0s;
}

.new_employee_textarea2 {
  width: 300px;
  height: 80px;
  background-color: #05060f0a;
  border-radius: .5rem;
  padding: 0.1rem 1rem;
  border: 2px solid transparent;
  font-size: 1rem;
  transition: border-color .3s cubic-bezier(.25, .01, .25, 1) 0s, background .2s cubic-bezier(.25, .01, .25, 1) 0s;
}

.new_employee_textarea:focus,
.new_employee_textarea:hover {
  outline: none;
  border-color: #32578a !important;
}

.new_employee_textarea2:focus,
.new_employee_textarea2:hover {
  outline: none;
  border-color: #32578a !important;
}

.double_input {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.rigt_arrow {
  font-size: 40px;
  margin: 0 20px;
}

.change_pass_arrow {
  font-size: 25px;
  margin-left: 20px;
  width: 48px;
  background-color: transparent;
  border-radius: 10px;
  border: 2px solid #0000004d;
  color: #000;
  text-align: center;
  cursor: pointer;
  font-size: 28px;
}

/* RADIO BTNS */

.radio-input input {
  display: none;
}

.radio-input {
  --container_width: 250px;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 10px;
  background-color: #212121;
  color: #eee;
  width: var(--container_width);
  overflow: hidden;
  /* margin: 20px 0px 0px 20px; */
}

.radio-input label {
  width: 100%;
  padding: 10px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  font-weight: 600;
  letter-spacing: -1px;
  font-size: 14px;
}

.selection_radio {
  display: none;
  position: absolute;
  height: 100%;
  width: calc(var(--container_width) / 2);
  z-index: 0;
  left: 0;
  top: 0;
  transition: 0.15s ease;
}

.radio-input label:nth-child(1):has(input:checked) {
  color: #fff;
}
.radio-input label:nth-child(2):has(input:checked) {
  color: #212121;
}
.radio-input label:nth-child(1):has(input:checked) ~ .selection_radio {
  background-color: #080;
  display: inline-block;
}
.radio-input label:nth-child(2):has(input:checked) ~ .selection_radio {
  background-color: rgb(255, 52, 52);
  display: inline-block;
}
.radio-input label:nth-child(1):has(input:checked) ~ .selection_radio {
  transform: translateX(calc(var(--container_width) * 0 / 2));
}

.radio-input label:nth-child(2):has(input:checked) ~ .selection_radio {
  transform: translateX(calc(var(--container_width) * 1 / 2));
}


/* RADIO BTNS END */


/* CONFIRM BTN */

.animated-button {
  width: 140px;
  height: 25px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 32px;
  border: 4px solid;
  border-color: transparent;
  font-size: 16px;
  background-color: inherit;
  border-radius: 100px;
  font-weight: 600;
  color: #1e1e1e;
  box-shadow: 0 0 0 2px #1e1e1e;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  /* margin: 20px 0 20px 20px; */
}

.animated-button svg {
  position: absolute;
  width: 24px;
  fill: #1e1e1e;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
  right: 16px;
}

.animated-button .arr-2 {
  left: -25%;
}

.animated-button .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: #fd8a26;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:hover {
  box-shadow: 0 0 0 12px transparent;
  color: #1e1e1e;
  border-radius: 12px;
}

.animated-button:hover .arr-1 {
  right: -25%;
}

.animated-button:hover .arr-2 {
  left: 16px;
}

.animated-button:hover .text {
  transform: translateX(12px);
}

.animated-button:hover svg {
  fill: #1e1e1e;
}

.animated-button:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px #fd8a26;
}

.animated-button:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}

/* CONFIRM BTN END*/

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

.tzd_checkbox_block {
  position: relative;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  width: 300px;
  height: 225px;
  border-radius: .5rem;
  overflow: hidden;
  color: #05060fc2;
  background-color: #05060f0a;
  cursor: pointer;
  border: 0;
  box-shadow: none;
  padding: 0.5rem 1rem;
  overflow-y: scroll;
}

/* Send SMS btn */

.send_sms_btn {
  font-family: inherit;
  font-size: 20px;
  background: royalblue;
  color: white;
  padding: 0.7em 1em;
  padding-left: 0.9em;
  display: flex;
  align-items: center;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
  margin-left: 15px;
}

.send_sms_btn span {
  display: block;
  margin-left: 0.3em;
  transition: all 0.3s ease-in-out;
}

.send_sms_btn svg {
  display: block;
  transform-origin: center center;
  transition: transform 0.3s ease-in-out;
}

.send_sms_btn:hover .svg-wrapper {
  animation: fly-1 0.6s ease-in-out infinite alternate;
}

.send_sms_btn:hover svg {
  transform: translateX(2.8em) rotate(45deg) scale(1.1);
}

.send_sms_btn:hover span {
  transform: translateX(7em);
}

.send_sms_btn:active {
  transform: scale(0.95);
}

@keyframes fly-1 {
  from {
    transform: translateY(0.1em);
  }

  to {
    transform: translateY(-0.1em);
  }
}


/* Send SMS btn END */


/* NEW_EMPLOYEE END*/

/* --------------NEW ADMIN -------------------*/

/* DB button btn */
.db_btn {
  height: 20px;
  width: 20px;
  text-decoration: none;
  transition: transform 0.1s linear;
  border: 2px solid #fd8a26;
  border-radius: 50%;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.db_btn:hover {
  transform: scale(1.2);
  background-color: #fd8a26;
}

/* .st1:hover {
  stroke: #fff;
}

.st0:hover {
  stroke: #fff;
} */
/* DB button btn  END*/

/* BTN LOADER */

.btn_loader {
  position: relative;
  width: 2.5vh;
  height: 2.5vh;
  transform: rotate(165deg);
}
 
.btn_loader:before, .btn_loader:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0.5vh;
  height: 0.5vh;
  border-radius: 0.25em;
  transform: translate(-50%, -50%);
}
 
.btn_loader:before {
  animation: before8 2s infinite;
}
 
.btn_loader:after {
  animation: after6 2s infinite;
}
 
@keyframes before8 {
  0% {
   width: 0.5vh;
   box-shadow: 1em -0.5em #FE4193, -1em 0.5em #37BDE3;
  }
 
  35% {
   width: 2vh;
   box-shadow: 0 -0.5em #FE4193, 0 0.5em #37BDE3;
  }
 
  70% {
   width: 0.5vh;
   box-shadow: -1em -0.5em #FE4193, 1em 0.5em #37BDE3;
  }
 
  100% {
   box-shadow: 1em -0.5em #FE4193, -1em 0.5em #37BDE3;
  }
}
 
@keyframes after6 {
  0% {
   height: 0.5vh;
   box-shadow: 0.5em 1em #9D7EBA, -0.5em -1em #E3C85F;
  }
 
  35% {
   height: 2vh;
   box-shadow: 0.5em 0 #9D7EBA, -0.5em 0 #E3C85F;
  }
 
  70% {
   height: 0.5vh;
   box-shadow: 0.5em -1em #9D7EBA, -0.5em 1em #E3C85F;
  }
 
  100% {
   box-shadow: 0.5em 1em #9D7EBA, -0.5em -1em #E3C85F;
  }
 }
 
.btn_loader {
  position: absolute;
  top: calc(50% - 1.25vh);
  left: calc(50% - 1.25vh);
}

/* MESSAGES */

.message-popup {
  position: fixed;
  top: 20px;
  right: 20px;
  border-radius: 10px;
  padding: 15px;
  z-index: 10000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  animation: fadeOut 3s ease-in-out 7s forwards;
}

.success-popup {
  background-color: #489928;
}

.error-popup {
  background-color: #963030;
}

.info-popup {
  background-color: #d0d0d0;
  color: #000 !important;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

 /* NEW ADMIN END */

 /* EMPLOYEE DITAILS */

.send_message_btn {
  margin-left: 20px;
  width: 48px;
  background-color: transparent;
  border-radius: 10px;
  border: 2px solid #0000004d;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* delete employee btn */ 
.delete_employee_btn{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgb(20, 20, 20);
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.164);
  cursor: pointer;
  transition-duration: .3s;
  overflow: hidden;
  position: relative;
  margin-left: 15px;
}

.svgIcon {
  width: 12px;
  transition-duration: .3s;
}

.svgIcon path {
  fill: white;
}

.delete_employee_btn:hover {
  width: 140px;
  border-radius: 50px;
  transition-duration: .3s;
  background-color: rgb(255, 69, 69);
  align-items: center;
}

.delete_employee_btn:hover .svgIcon {
  width: 50px;
  transition-duration: .3s;
  transform: translateY(60%);
}

.delete_employee_btn::before {
  position: absolute;
  top: -20px;
  content: "Видалити";
  color: white;
  transition-duration: .3s;
  font-size: 2px;
}

.delete_employee_btn:hover::before {
  font-size: 13px;
  opacity: 1;
  transform: translateY(30px);
  transition-duration: .3s;
}


/* is_public BTN */
.is_public {
  --color: #a5a5b0;
  --size: 30px;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  font-size: var(--size);
  margin-left: 15px;
  fill: var(--color);
}

.is_public .eye {
  position: absolute;
  animation: keyframes-fill .5s;
}

.is_public .eye-slash {
  position: absolute;
  animation: keyframes-fill .5s;
  display: none;
}

/* ------ On check event ------ */
.is_public input:checked ~ .eye {
  display: none;
}

.is_public input:checked ~ .eye-slash {
  display: block;
}

/* ------ Hide the default checkbox ------ */
.is_public input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* ------ Animation ------ */
@keyframes keyframes-fill {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  50% {
    transform: scale(1.2);
  }
}
/* is_public BTN END */

/* POPUP */

#popup-bg1 {
  position: fixed;
  overflow: hidden;
  z-index: 9999;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000;
  opacity: 0.3;
  display: none;
}

#popup-bg {
  position: fixed;
  overflow: hidden;
  z-index: 9999;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000;
  opacity: 0.3;
  display: none;
}

#popup-container {
  position: fixed;
  z-index: 10000;
  width: 50%;
  max-width: 60vh !important;
  height: auto;
  min-height: 15vh;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

@media (max-width: 590px) {
  #popup-container {
      width: 80%;
  }
}

.content_box {
  max-width: 30%;
  background: #fff;
  box-shadow: 0px 0px 5px #939191;
  /* font-size: 1.2vh; */
  padding: 1.4vh;
  border-radius: 0.8vh;
}

@media (max-width: 1220px) {

  .content_box {
      max-width: 45%;
  }
}


@media (max-width: 900px) {

  .content_box {
      max-width: 100%;
  }
  
}

@media (max-width: 768px) {

  .content_box {
      width: 100%;

  }
  
}

.content_box_save_btn {
  margin: 15px 0 0 auto;
  height: 3.5vh;
  min-width: 13vh;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  background: #489928;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  transition: 0.5s;
  border: 1px solid #489928;
  position: relative;
  flex-shrink: 0;
  padding: 0 1vh;
}

.content_box_save_btn:hover {
  background: transparent;
  color: #000;
}

.content_box_headline {
  font-size: 20px;
  font-weight: 500;
  width: 100%;
  border-bottom: 0.5px solid #939191;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

/* admins Btn button */
.Btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 80px;
  height: 40px;
  border: none;
  padding: 0px 20px;
  background-color: rgb(168, 38, 255);
  color: white;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  border-radius: 10px;
  transition-duration: .3s;
}

.svg {
  width: 13px;
  position: absolute;
  right: 0;
  margin-right: 20px;
  fill: white;
  transition-duration: .3s;
}

.Btn:hover {
  color: transparent;
}

.Btn:hover svg {
  right: 43%;
  margin: 0;
  padding: 0;
  border: none;
  transition-duration: .3s;
}

.Btn:active {
  transform: translate(3px , 3px);
  transition-duration: .3s;
  box-shadow: 2px 2px 0px rgb(140, 32, 212);
}

.del_btn{
  width: 150px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  background: red;
  border: none;
  border-radius: 5px;
  box-shadow: 1px 1px 3px rgba(0,0,0,0.15);
  background: #e62222;
  position: relative;
}

.del_btn, .del_btn span {
 transition: 200ms;
}

.del_btn .text {
 transform: translateX(35px);
 color: white;
 font-weight: bold;
 font-size: 14px;
 margin-left: -15px;
}

.del_btn .icon {
 position: absolute;
 border-left: 1px solid #c41b1b;
 transform: translateX(110px);
 height: 40px;
 width: 40px;
 display: flex;
 align-items: center;
 justify-content: center;
}

.del_btn svg {
 width: 15px;
 fill: #eee;
}

.del_btn:hover {
 background: #ff3636;
}

.del_btn:hover .text {
 color: transparent;
}

.del_btn:hover .icon {
 width: 150px;
 border-left: none;
 transform: translateX(0);
}

.del_btn:focus {
 outline: none;
}

.del_btn:active .icon svg {
 transform: scale(0.8);
}

/* accordion */
.users_container_accord {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 20px auto;
  border-radius: 30px;
}

.accordion-container {
  width: 100%;
  margin: 0 auto;
  transition: height 0.2s ease-out;
}

.accordion {
  background-color: #dbdbdb;
  color: #181818;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  padding: 18px;
  width: 80%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  margin: 0 auto;
}

.active, .accordion:hover {
  background-color: #ccc;
}

.accordion:after {
  content: '\002B';
  color: #181818;
  font-weight: 500;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.panel {
  background-color: white;
  overflow: hidden;
  transition: height 0.2s ease-out, padding 0.2s ease-out;
  height: 0;
  padding-top: 0;
  padding-bottom: 0;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  display: none; /* Добавляем display: none; */
  width: 80%;
}

.panel.open {
  padding: 0 18px;
  position: relative;
  clip: auto;
  display: block; /* Добавляем display: block; */
  width: 80%;
  margin: 0 auto;
  height: auto;
}

.location_type_select {
  position: relative;
  font-size: 1rem;
  display: flex;
  width: 336px;
  height: 44px;
  border-radius: .5rem;
  overflow: hidden;
  background-color: #05060f0a;
  cursor: pointer;
  border: 2px solid transparent;
  box-shadow: none;
  padding: 0 1rem;
  transition: border-color .3s cubic-bezier(.25, .01, .25, 1) 0s, background .2s cubic-bezier(.25, .01, .25, 1) 0s;
}

.location_type_select:focus,
.location_type_select:hover {
  outline: none;
  border-color: #32578a !important;
}

/* LOADER */
.wrapper {
  width: 200px;
  height: 60px;
  position: fixed;
  display: none;
  z-index: 10909;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.circle_load {
  width: 20px;
  height: 20px;
  position: absolute;
  border-radius: 50%;
  background-color: #fff;
  left: 15%;
  transform-origin: 50%;
  animation: circle7124 .5s alternate infinite ease;
}

@keyframes circle7124 {
  0% {
    top: 60px;
    height: 5px;
    border-radius: 50px 50px 25px 25px;
    transform: scaleX(1.7);
  }

  40% {
    height: 20px;
    border-radius: 50%;
    transform: scaleX(1);
  }

  100% {
    top: 0%;
  }
}

.circle_load:nth-child(2) {
  left: 45%;
  animation-delay: .2s;
}

.circle_load:nth-child(3) {
  left: auto;
  right: 15%;
  animation-delay: .3s;
}

.shadow {
  width: 20px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(0,0,0,0.9);
  position: absolute;
  top: 62px;
  transform-origin: 50%;
  z-index: -1;
  left: 15%;
  filter: blur(1px);
  animation: shadow046 .5s alternate infinite ease;
}

@keyframes shadow046 {
  0% {
    transform: scaleX(1.5);
  }

  40% {
    transform: scaleX(1);
    opacity: .7;
  }

  100% {
    transform: scaleX(.2);
    opacity: .4;
  }
}

.shadow:nth-child(4) {
  left: 45%;
  animation-delay: .2s
}

.shadow:nth-child(5) {
  left: auto;
  right: 15%;
  animation-delay: .3s;
}

/* download btn */
.download-btn {
  height: 45px;
  width: 95px;
  cursor: pointer;
  background: white;
  border: none;
  background: #8080ff;
  border-radius: 30px;
  overflow: hidden;
  margin-left: 15px;
}

.button-content {
  transform: translateY(-45px);
  transition: all 250ms ease-in-out;
}

.svg-container,
.text-container {
  height: 45px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-container .text {
  font-size: 13px;
  color: #fff;
  font-weight: 600;
  opacity: 1;
  transition: opacity ease-in-out 250ms;
}

.download-icon {
  height: 25px;
  width: 25px;
  fill: #fff;
  opacity: 0;
  transition: opacity ease-in-out 250ms;
}

/* hover state for the button */
.download-btn:hover .button-content {
  transform: translateY(0px);
}

.download-btn:hover .text {
  opacity: 0;
}

.download-btn:hover .download-icon {
  opacity: 1;
}

.download-btn:focus .download-icon {
  -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
  animation: heartbeat 1.5s ease-in-out infinite both;
}

@-webkit-keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
    transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
    transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
    transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
    transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.tzd-fields {
  display: none;
}

.c-fields {
  display: none;
}

.rpd-fields {
  display: none;
}


.dropdown-up {
  position: relative;
}

.dropdown-toggle {
  background-color: royalblue;
  color: #FFF;
  padding: 0.7rem 1rem;
  border-radius: 16px;
  cursor: pointer;
  min-width: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 15px;
}

.dropdown-toggle span {
  font-size: 20px;
  margin-left: 0.3rem;
}

.dropdown-menu {
  position: absolute;
  bottom: 100%; /* Розміщуємо меню над кнопкою */
  left: 0;
  z-index: 1000;
  display: none; /* Приховано за замовчуванням */
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
  margin-left: 15px;
}

.dropdown-item {
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: #1e2125;
  background-color: #f8f9fa;
}

/* Стиль для відображення меню */
.dropdown-up.show .dropdown-menu {
  display: block;
}

/* SELECT2 */

.select2-container--default .select2-selection--single {
  height: 48px !important;
  padding: 0.5rem 0rem;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 9px !important;
}

.select2-container {
  width: 336px !important;
}

.select2-container .select2-selection--single:hover {
  border-color: #32578a !important;
  outline: none !important;
}

.select2-container .select2-selection--single:focus {
  border-color: #32578a !important;
  outline: none !important;
}

.select2-selection--single {
  background-color: #05060f0a !important;
  border: 2px solid transparent !important;
  border-radius: .5rem !important;
}

.select2-selection__rendered {
  color: #000 !important;
  padding-left: 1rem !important;
}

#select_brach_admin + span.select2-container {
  margin-left: 15px;
}

.select2-dropdown {
  z-index: 99999 !important;
}

/* INFO */
.info {
  width: fit-content;
  padding: 12px;
  display: flex; /* <-- Измените на flex (или block, inline-block, в зависимости от желаемого отображения) */
  flex-direction: row;
  align-items: center;
  justify-content: start;
  background: #D7F1FD;
  border-radius: 8px;
  box-shadow: 0px 0px 5px -3px #111;
  position: absolute;
  top: 28px;
  left: 350px;

  /* Стили для начального скрытого состояния с анимацией */
  opacity: 0;
  transform: translateX(20px); /* Сдвигаем немного вправо для эффекта появления */
  transition: opacity 0.3s ease-out, transform 0.3s ease-out; /* Плавный переход */
  pointer-events: none; /* Чтобы элемент не был интерактивным, пока он скрыт */
}

.info.fade-in {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto; /* Делаем интерактивным при появлении */
}

.info.hidden {
  display: none; /* <-- Этот класс будет полностью скрывать элемент */
}

/* Остальные стили .info__icon, .info__title, .info__close остаются без изменений */
.info__icon {
  width: 20px;
  height: 20px;
  transform: translateY(-2px);
  margin-right: 8px;
}

.info__icon path {
  fill: #509AF8;
}

.info__title {
  font-weight: 600;
  font-size: 14px;
  color: #0C2A75;
}

.info__close {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-left: 10px;
}

.info__close path {
  fill: #0C2A75;
}


/* PLUG */

#maintenance-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #3e3e3e;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Убедимся, что заглушка поверх всего */
    text-align: center;
    font-family: sans-serif; /* Можно выбрать любой другой шрифт */
}

#maintenance-overlay p {
    font-size: 2em;
    color: #e3e3e3;
    margin-bottom: 2em; /* Отступ между текстом и анимацией */
}

#maintenance-overlay.active {
    display: flex; /* Показываем заглушку, когда есть класс active */
}

/* Код для анимации хомяка */
.wheel-and-hamster {
    --dur: 1s;
    position: relative;
    width: 12em;
    height: 12em;
    font-size: 14px;
}

.wheel,
.hamster,
.hamster div,
.spoke {
    position: absolute;
}

.wheel,
.spoke {
    border-radius: 50%;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wheel {
    background: radial-gradient(100% 100% at center,hsla(0,0%,60%,0) 47.8%,hsl(0,0%,60%) 48%);
    z-index: 2;
}

.hamster {
    animation: hamster var(--dur) ease-in-out infinite;
    top: 50%;
    left: calc(50% - 3.5em);
    width: 7em;
    height: 3.75em;
    transform: rotate(4deg) translate(-0.8em,1.85em);
    transform-origin: 50% 0;
    z-index: 1;
}

.hamster__head {
    animation: hamsterHead var(--dur) ease-in-out infinite;
    background: hsl(30,90%,55%);
    border-radius: 70% 30% 0 100% / 40% 25% 25% 60%;
    box-shadow: 0 -0.25em 0 hsl(30,90%,80%) inset,
        0.75em -1.55em 0 hsl(30,90%,90%) inset;
    top: 0;
    left: -2em;
    width: 2.75em;
    height: 2.5em;
    transform-origin: 100% 50%;
}

.hamster__ear {
    animation: hamsterEar var(--dur) ease-in-out infinite;
    background: hsl(0,90%,85%);
    border-radius: 50%;
    box-shadow: -0.25em 0 hsl(30,90%,55%) inset;
    top: -0.25em;
    right: -0.25em;
    width: 0.75em;
    height: 0.75em;
    transform-origin: 50% 75%;
}

.hamster__eye {
    animation: hamsterEye var(--dur) linear infinite;
    background-color: hsl(0,0%,0%);
    border-radius: 50%;
    top: 0.375em;
    left: 1.25em;
    width: 0.5em;
    height: 0.5em;
}

.hamster__nose {
    background: hsl(0,90%,75%);
    border-radius: 35% 65% 85% 15% / 70% 50% 50% 30%;
    top: 0.75em;
    left: 0;
    width: 0.2em;
    height: 0.25em;
}

.hamster__body {
    animation: hamsterBody var(--dur) ease-in-out infinite;
    background: hsl(30,90%,90%);
    border-radius: 50% 30% 50% 30% / 15% 60% 40% 40%;
    box-shadow: 0.1em 0.75em 0 hsl(30,90%,55%) inset,
        0.15em -0.5em 0 hsl(30,90%,80%) inset;
    top: 0.25em;
    left: 2em;
    width: 4.5em;
    height: 3em;
    transform-origin: 17% 50%;
    transform-style: preserve-3d;
}

.hamster__limb--fr,
.hamster__limb--fl {
    clip-path: polygon(0 0,100% 0,70% 80%,60% 100%,0% 100%,40% 80%);
    top: 2em;
    left: 0.5em;
    width: 1em;
    height: 1.5em;
    transform-origin: 50% 0;
}

.hamster__limb--fr {
    animation: hamsterFRLimb var(--dur) linear infinite;
    background: linear-gradient(hsl(30,90%,80%) 80%,hsl(0,90%,75%) 80%);
    transform: rotate(15deg) translateZ(-1px);
}

.hamster__limb--fl {
    animation: hamsterFLLimb var(--dur) linear infinite;
    background: linear-gradient(hsl(30,90%,90%) 80%,hsl(0,90%,85%) 80%);
    transform: rotate(15deg);
}

.hamster__limb--br,
.hamster__limb--bl {
    border-radius: 0.75em 0.75em 0 0;
    clip-path: polygon(0 0,100% 0,100% 30%,70% 90%,70% 100%,30% 100%,40% 90%,0% 30%);
    top: 1em;
    left: 2.8em;
    width: 1.5em;
    height: 2.5em;
    transform-origin: 50% 30%;
}

.hamster__limb--br {
    animation: hamsterBRLimb var(--dur) linear infinite;
    background: linear-gradient(hsl(30,90%,80%) 90%,hsl(0,90%,75%) 90%);
    transform: rotate(-25deg) translateZ(-1px);
}

.hamster__limb--bl {
    animation: hamsterBLLimb var(--dur) linear infinite;
    background: linear-gradient(hsl(30,90%,90%) 90%,hsl(0,90%,85%) 90%);
    transform: rotate(-25deg);
}

.hamster__tail {
    animation: hamsterTail var(--dur) linear infinite;
    background: hsl(0,90%,85%);
    border-radius: 0.25em 50% 50% 0.25em;
    box-shadow: 0 -0.2em 0 hsl(0,90%,75%) inset;
    top: 1.5em;
    right: -0.5em;
    width: 1em;
    height: 0.5em;
    transform: rotate(30deg) translateZ(-1px);
    transform-origin: 0.25em 0.25em;
}

.spoke {
    animation: spoke var(--dur) linear infinite;
    background: radial-gradient(100% 100% at center,hsl(0,0%,60%) 4.8%,hsla(0,0%,60%,0) 5%),
        linear-gradient(hsla(0,0%,55%,0) 46.9%,hsl(0,0%,65%) 47% 52.9%,hsla(0,0%,65%,0) 53%) 50% 50% / 99% 99% no-repeat;
}

/* Animations */
@keyframes hamster {
    from, to {
        transform: rotate(4deg) translate(-0.8em,1.85em);
    }

    50% {
        transform: rotate(0) translate(-0.8em,1.85em);
    }
}

@keyframes hamsterHead {
    from, 25%, 50%, 75%, to {
        transform: rotate(0);
    }

    12.5%, 37.5%, 62.5%, 87.5% {
        transform: rotate(8deg);
    }
}

@keyframes hamsterEye {
    from, 90%, to {
        transform: scaleY(1);
    }

    95% {
        transform: scaleY(0);
    }
}

@keyframes hamsterEar {
    from, 25%, 50%, 75%, to {
        transform: rotate(0);
    }

    12.5%, 37.5%, 62.5%, 87.5% {
        transform: rotate(12deg);
    }
}

@keyframes hamsterBody {
    from, 25%, 50%, 75%, to {
        transform: rotate(0);
    }

    12.5%, 37.5%, 62.5%, 87.5% {
        transform: rotate(-2deg);
    }
}

@keyframes hamsterFRLimb {
    from, 25%, 50%, 75%, to {
        transform: rotate(50deg) translateZ(-1px);
    }

    12.5%, 37.5%, 62.5%, 87.5% {
        transform: rotate(-30deg) translateZ(-1px);
    }
}

@keyframes hamsterFLLimb {
    from, 25%, 50%, 75%, to {
        transform: rotate(-30deg);
    }

    12.5%, 37.5%, 62.5%, 87.5% {
        transform: rotate(50deg);
    }
}

@keyframes hamsterBRLimb {
    from, 25%, 50%, 75%, to {
        transform: rotate(-60deg) translateZ(-1px);
    }

    12.5%, 37.5%, 62.5%, 87.5% {
        transform: rotate(20deg) translateZ(-1px);
    }
}

@keyframes hamsterBLLimb {
    from, 25%, 50%, 75%, to {
        transform: rotate(20deg);
    }

    12.5%, 37.5%, 62.5%, 87.5% {
        transform: rotate(-60deg);
    }
}

@keyframes hamsterTail {
    from, 25%, 50%, 75%, to {
        transform: rotate(30deg) translateZ(-1px);
    }

    12.5%, 37.5%, 62.5%, 87.5% {
        transform: rotate(10deg) translateZ(-1px);
    }
}

@keyframes spoke {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(-1turn);
    }
}

/* PLUG END */


/* SELECT IN TABLE */


/* Стилизация Select2 контейнера внутри th */
.table_filter_select + .select2-container {
    width: 100% !important; /* Важно, чтобы Select2 занимал всю ширину th */
    box-sizing: border-box; /* Учитываем padding и border в ширине */
}

.table_filter_select + .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #000;
}

.table_filter_select + .select2-container .select2-selection--single {
    height: auto !important; /* Или задай конкретную высоту */
    border: none; /* Убери границу, чтобы селект сливался с шапкой таблицы */
    background-color: transparent !important; /* Сделай фон прозрачным */
    padding: 5px 10px; /* Отступы внутри селекта */
    box-shadow: none; /* Убери тени */
}

.table_filter_select + .select2-container .select2-selection__rendered {
    line-height: normal; /* Выровняй текст */
    padding: 0 !important;
    text-align: center; /* Центрируем текст внутри селекта */
}

.table_filter_select + .select2-container .select2-selection__arrow {
    /* height: 100%;
    right: 50%; 
    width: auto !important; */
    display: none;
}

/* При наведении или фокусе, чтобы было понятно, что это интерактивный элемент */
.table_filter_select + .select2-container .select2-selection--single:focus,
.table_filter_select + .select2-container .select2-selection--single:hover {
    background-color: rgba(0, 0, 0, 0.05); /* Легкий фон при наведении */
}

/* Стили для Select2 дропдауна (который появляется при открытии) */
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #5897fb; /* Цвет выделения */
    color: white;
}


/* SELECT IN TABLE END */
