body {
  background: url(/img/new/bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.enter-form {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 330px;
  max-width: calc(100% - 30px);
}

.enter-form__head {
  display: flex;
  position: relative;
  background: rgb(27, 91, 163);
  padding: 17px 28px;
  justify-content: space-between;
}

.enter-form__title {
  color: rgb(255, 255, 255);
  font-size: 28px;
  font-weight: 700;
  line-height: 38px;
}

.enter-form__close {
  width: 34px;
  height: 34px;
  background: rgb(248, 248, 248);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.enter-form__close:before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(/img/new/close.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.enter-form__inner {
  padding: 21px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.enter-form__input-wrap {
  color: rgb(66, 66, 66);
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  position: relative;
}

.enter-form__input {
  padding: 0px 11px 0px 38px;
  border: 1px solid rgb(223, 228, 239);
  border-radius: 6px;
  background: rgb(255, 255, 255);
  width: 370px;
  height: 42px;
  max-width: 100%;
  background-position: 11px center;
  background-repeat: no-repeat;
  background-size: 24px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.enter-form__input.login {
    background-image: url(/img/new/login.svg);
}

.enter-form__input.password {
    background-image: url(/img/new/password.svg);
}

.enter-form__input::placeholder {
	color: rgb(153, 153, 153);
}

.enter-form__pass-show {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 11px;
    width: 24px;
    min-width: 24px;
    height: 24px;
    background-image: url(/img/new/password-show.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
}

.enter-form__input-wrap.active .enter-form__pass-show {
    background-image: url(/img/new/password-show-active.svg);
}

.enter-form__submit {
  width: 275px;
  height: 46px;
  max-width: 100%;
  border-radius: 6px;
  background: rgb(27, 91, 163);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  border: none;
  margin-top: 10px;
}











.lk__inner {
  display: flex;
  padding: 30px;
  height: 100vh;
  width: 100%;
  max-width: 100%;
  /*gap: 35px;*/
  gap: 20px;
}

.lk__sidebar {
  /*width: 275px;*/
  /*min-width: 275px;*/
  width: 230px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: auto;
  scrollbar-width: none;
}

.lk__sidebar::-webkit-scrollbar {
  display: none;
}

.lk__sidebar__top {
  display: flex;
  gap: 10px;
}

.sidebar__menu-toggle {
  background: url(/img/new/menu.svg);
  display: block;
  width: 22px;
  min-width: 22px;
  height: 22px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}

.lk__sidebar__info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: -3px;
}

.sidebar__info-name {
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-weight: 700;
  line-height: 27px;
  text-decoration: none;
}

.sidebar__info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.sidebar__info-row a {
  border: 1px solid rgb(255, 255, 255);
  border-radius: 50px;
  padding: 1px 10px;
  color: rgb(255, 255, 255);
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  text-decoration: none;
}

.lk__sidebar__menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar__menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 17px 12px 14px;
  border-left: 3px solid transparent;
  color: rgb(255, 255, 255);
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  cursor: pointer;
}

.sidebar__menu-item:hover,
.sidebar__menu-item.active {
  border-left: 3px solid rgb(27, 91, 163);
  border-radius: 14px 4px 4px 14px;
  background: rgb(248, 250, 254);
  color: rgb(27, 91, 163);
}

.sidebar__menu-separate {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.sidebar__menu-item:hover svg path,
.sidebar__menu-item.active svg path {
  fill: rgb(27, 91, 163);
}

.sidebar__menu-item.exit {
  margin-top: 6px;
}

.lk__sidebar__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}

.sidebar__text-btn {
  color: rgb(177, 198, 239);
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
}

.lk__notifications {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sidebar__notifications-item {
  border-left: 6px solid rgb(27, 91, 163);
  border-radius: 21px 8px 8px 21px;
  box-shadow: 0px 4px 42px 0px rgba(0, 0, 0, 0.07);
  background: rgb(248, 250, 254);
  padding: 21px 22px 21px 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  cursor: pointer;
}

.sidebar__notifications-item:before {
  content: '';
  display: block;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 27px;
  height: 27px;
  border: 1px solid rgb(27, 91, 163);
  border-radius: 50px;
  background: url(/img/new/alert-active.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 17px;
}

.notifications-item__block {
  display: flex;
  flex-direction: column;
}

.notifications-item__title {
  color: rgb(153, 153, 153);
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}

.notifications-item__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  white-space: pre-line;
}




@media(min-width: 1025px){
  .lk__sidebar.sidebar-collapse .lk__sidebar__info,
  .lk__sidebar.sidebar-collapse .lk__sidebar__text,
  .lk__sidebar.sidebar-collapse .lk__notifications {
    display: none;
  }

  .lk__inner:has(.lk__sidebar.sidebar-collapse) {
    gap: 30px;
  }

  .lk__sidebar.sidebar-collapse {
    width: 55px;
    min-width: 55px;
  }

  .lk__sidebar.sidebar-collapse .sidebar__menu-toggle {
    width: 55px;
    height: 45px;
    background-size: 21px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.14);
  }

  .lk__sidebar.sidebar-collapse .sidebar__menu-item:hover,
  .lk__sidebar.sidebar-collapse .sidebar__menu-item {
    font-size: 0;
    gap: 0;
    width: 55px;
    height: 45px;
  }

  .lk__sidebar.sidebar-collapse .sidebar__menu-item:hover,
  .lk__sidebar.sidebar-collapse .sidebar__menu-item.active {
    border-radius: 50px;
  }
}

@media(max-width: 1024px){
  .lk__sidebar.active .lk__sidebar__info {
    display: flex;
  }

  .lk__sidebar.active .sidebar__menu-toggle {
    background-image: url(/img/new/cross.svg);
  }

  .lk__sidebar.active + .lk__content {
    display: none;
  }

  .lk__sidebar.active .lk__light-switch,
  .lk__sidebar.active .lk__sidebar__menu,
  .lk__sidebar.active .lk__sidebar__info,
  .lk__sidebar.active .lk__sidebar__text,
  .lk__sidebar.active .lk__notifications {
    display: flex;
  }

  .lk__sidebar.active {
    max-height: 100vh;
    min-height: auto;
  }
}



.lk__content {
  border-bottom: 5px solid rgb(234, 234, 234);
  border-top: 8px solid rgb(234, 234, 234);
  border-radius: 24px;
  box-shadow: 0px 0px 80px 0px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.97);
  flex-grow: 1;
  max-height: 100%;
  overflow: auto;
  box-sizing: border-box;
  display: flex;
  scrollbar-width: none;
}

.lk__content::-webkit-scrollbar {
  display: none;
}

.lk__content:empty {
  display: none;
}

.lk__content iframe {
  width: 100%;
  height: 100%;
  border: none;
}








@media(max-width: 1900px) {
	body {
		zoom: .9;
		height: 100%;
		min-height: 100%;
	}

	html {
		height: 100vh;
	}

	.lk__inner {
		min-height: 100%;
	}
}

@media(max-width: 1700px) {
	body {
		zoom: .88;
	}
}

@media(max-width: 1400px) {
	body {
		zoom: .85;
	}
}

@media(max-width: 1024px) {
	body {
		zoom: 1;
	}

	.enter-form {
		max-width: calc(100% - 30px);
	}

	.enter-form__head {
		padding: 14px 28px;
	}

	.enter-form__title {
		font-size: 25px;
		line-height: 34px;
	}

	.enter-form__inner {
		padding: 24px 28px 28px;
	}

	.lk__inner {
		padding: 22px 15px;
		flex-direction: column;
		gap: 22px;
	}

	.lk__sidebar {
		width: 100%;
		min-height: min-content;
	}

	.lk__sidebar__top {
		flex-direction: row-reverse;
		justify-content: space-between;
	}

	.lk__sidebar__menu {
		display: none;
	}

	.lk__sidebar__text {
		display: none;
	}

	.lk__notifications {
		display: none;
	}

	.lk__sidebar__info {
		max-width: 264px;
	}

	.sidebar__menu-toggle {
		width: 29px;
		height: 29px;
		min-width: 29px;
		background-size: cover;
	}

	.lk__content {
		border-bottom: 4px solid rgb(234, 234, 234);
		border-top: 4px solid rgb(234, 234, 234);
		border-radius: 14px;
	}
}
