.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  max-width: var(--lk-max-width-container);
}
.ilk_menu_panel{
  width: var(--lk-max-width-menu-panel);
}
.row{
  margin-left:0;
  margin-right: 0;
}
.lk_callback_item_icon .fa-phone-volume{
  transform: rotate(-45deg);
}
img {
  max-width: 100%;
  height: auto;
}

html {
  font-size: var(--lk-base-font-size);
  line-height: 1.5;
}

body {
  color: var(--lk-primary-color);
  background-color: var(--lk-blue-ligth-bg-color);
  /*font-family: 'Noto Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans',
    'Helvetica Neue', sans-serif;*/
}

body.overflow_hidden {
  overflow: hidden;
}

html,
body,
.lk_page {
  height: 100%;
}

.lk_page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.lk_header,
.lk_footer {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.lk_main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.lk_main_inner {
  margin: 1rem 0;
}

.lk_page_title {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.25;
  color: #000;
  margin-bottom: 3.125rem;
  color: var(--lk-primary-color);
  display: none;
}

/* HEADER */

header {
	margin-bottom: 0px;
}

header2 {
  margin-top: 80px;
  margin-bottom: 10px;
}

.lk_header {
  background-color: var(--lk-header-bg-color);
  padding: 0.6rem 0;
  color: var(--Surface-02-bg-color);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 65px;
  border-bottom: 1px solid var(--lk-header-divider-color);
}

.colorgray {
    color: var(--Surface-02-bg-color);
    text-decoration: none;
    transition: all 0.5s ease;
}
.colorgray:hover {
    color:var(--lk-white-bg-color);
}

.lk_header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lk_header_left {
  display: flex;
  align-items: center;
  /*width: 600px;*/
}

.lk_header_right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}

.lk_header_left{
  .lk_logo {
    flex-shrink: 0;
    margin-right: 0.7rem;
  }
  .lk_org_name{
    flex-shrink: 0;
    margin-right: 2rem;
    text-transform: uppercase;
    color: var(--link-color);
    font-size: 12px;
    line-height: 1.2;
    width: calc(var(--font-size)* 29);
    a {
    text-decoration: none;
    color: var(--link-color);
    }
  }
}

.lk_header_title {
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.25;
}

.lk_toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
}

.lk_toolbar__item {
  width: 44px;
  height: 44px;
  border-radius: var(--lk-radius-s);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.3125rem;
  transition: all 0.5s ease;
  color: var(--Surface-02-bg-color);
  text-decoration: none;
  font-weight: 500;
}

.lk_toolbar__item svg {
  transition: all 0.5s ease;
}

.lk_toolbar__item.lk_toolbar__item-eyes svg {
  margin-top: 3px;
}

.lk_toolbar__item:hover {
  color: var(--lk-white-bg-color);
  transform: translateY(-2px);
}
.lk_toolbar__item:hover svg path {
  fill: var(--lk-white-bg-color);
}

.lk_toolbar__item svg {
  max-width: 100%;
  height: auto;
}

.lk_header_hamburger {
  display: none;
}

.hamburger_btn {
  color: var(--lk-header-color);
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger_btn span {
  position: relative;
  margin-top: 7px;
  margin-bottom: 7px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.hamburger_btn span:after,
.hamburger_btn span:before {
  position: absolute;
  content: '';
}

.hamburger_btn span:before {
  top: -7px;
}

.hamburger_btn span:after {
  top: 7px;
}

.hamburger_btn span,
.hamburger_btn span:after,
.hamburger_btn span:before {
  display: block;
  width: 25px;
  height: 2px;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, -webkit-transform;
  transition-property: background-color, transform;
  transition-property: background-color, transform, -webkit-transform;
  outline: 1px solid transparent;
  background-color: var(--lk-header-divider-color);
}

.hamburger_btn.open span {
  background-color: transparent;
}

.hamburger_btn.open span:before {
  -webkit-transform: translateY(7px) rotate(45deg);
  -ms-transform: translateY(7px) rotate(45deg);
  transform: translateY(7px) rotate(45deg);
}
.hamburger_btn.open span:after {
  -webkit-transform: translateY(-7px) rotate(-45deg);
  -ms-transform: translateY(-7px) rotate(-45deg);
  transform: translateY(-7px) rotate(-45deg);
}

/* FOOTER */
.lk_footer {
  background-color: var(--lk-header-bg-color);
  padding: 0.6rem 0;
  color: var(--Surface-02-bg-color);
  z-index: 100;
  small{
    font-size: var(--lk-footer-small-fsize);
  }
  small{
    font-size: var(--lk-footer-small-fsize);
  }
}

.lk_footer_inner {
  display: flex;
  justify-content: space-between;
  align-items: end;
  align-items: center;
}

.lk_footer_organization {
  font-size: 12px;;
}

.lk_callback_item {
  align-items: center;
  font-weight: 500;
  color: var(--lk-footer-color);
  text-decoration: none;
  font-size: 1.5rem;
  line-height: 1.25;
  transition: all 0.5s ease;
  &:hover{
    color: var(--lk-footer-color-hover);
  }
}

.lk_callback_item:last-child {
  margin-bottom: 0;
}

.lk_callback_item:hover {
  opacity: 0.8;
}

.lk_callback_item svg {
  max-width: 100%;
  height: auto;
}

.lk_callback_item_icon {
  width: 44px;
  height: 44px;
  background-color: var(--lk-footer-bg-color);;
  border-radius: var(--lk-radius-s);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  transition: all 0.5s ease;
  color: var(--lk-footer-color);
  text-decoration: none;
  font-weight: 500;
  margin-right: 0.625rem;
}

/* SIDEBAR */
.lk_navigate {
  border-radius: .375rem;
  box-shadow: 0 1px 3px rgba(221, 224, 234, .5), 0 1px 2px rgba(221, 224, 234, .5);
  background-color: var(--lk-white-color);
}

.authuser {
  border-radius: var(--lk-radius-xs);
  padding: 1.25rem;
}

.lk_navigate_list_item {
  background-color: var(--lk-white-color);
  border-radius: var(--lk-radius-xs);
}

.lk_navigate_list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.lk_navigate_list .lk_navigate_item {
}

.lk_navigate_list .lk_navigate_item.is-active .lk_navigate_link {
  background-color: var(--lk-left-nav-bg-color-hover);
  color: var(--lk-left-nav-color-hover);
  border-radius: var(--lk-radius-xs);
}

.lk_navigate_list .lk_navigate_item:last-child {
  margin-bottom: 0px;
}

.lk_navigate_list .lk_navigate_link {
  color: var(--link-color);
  display: block;
  text-decoration: none;
  padding: 1rem 1.25rem;
  transition: all 0.5s ease;
  margin: 0.1rem 0;
}

.lk_navigate_list .lk_navigate_link:hover {
  background-color: var(--lk-left-nav-bg-color-hover);
  color: var(--lk-left-nav-color-hover);
  border-radius: var(--lk-radius-xs);
}

.lk_user {
  background-color: var(--lk-footer-bg-color);
  color: var(--lk-footer-color);
  border-radius: var(--lk-radius-l);
  padding: 2rem;
  margin-bottom: 2rem;
}

.lk_user .lk_user_avatar {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.lk_user .lk_user_avatar img {
  width: 200px;
  max-width: 100%;
}

.lk_user .lk_user_title {
  font-weight: 500;
  font-size: 1.125rem;
  text-align: center;
}

.lk_container {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: var(--lk-white-color);
  border-radius: var(--lk-radius-xs);
  background-image: url('/static/client/tpl/ursmu_lk/img/logo-b.png');
  background-size: 374px 408px;
  background-position: calc(100% - 20px) 100px;
  background-repeat: no-repeat;
}

.lk_content_bg_block {
  flex-grow: 1;
}

/* news */
.lk_news-grid {
  display: grid;
  column-gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 60px;
}

.lk_news .lk_news_item {
  color: var(--lk-primary-color);
  text-decoration: none;
  transition: all 0.5s ease;
}

.lk_news .lk_news_item:hover {
  color: var(--lk-secondary-color);
}

.lk_news .lk_news_preview {
  margin-bottom: 1.5rem;
  border-radius: var(--lk-radius-s);
  overflow: hidden;
  padding-bottom: 69.5%;
  position: relative;
}

.lk_news .lk_news_preview img {
  object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.lk_news .lk_news_date {
  margin-bottom: 1rem;
}
.lk_news .lk_news_title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  font-size: 1.125rem;
  font-weight: 500;
  -webkit-line-clamp: 3;
}

/*---news flex---*/
.lk_news-flex {
  display: flex;
  column-gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 40px;
  align-content: flex-start;
  flex-wrap: wrap;
  flex-direction: row;

  &.lk_news {
    
    .lk_news_item {
      color: var(--lk-primary-color);
      text-decoration: none;
      transition: all 0.5s ease;
      width: calc(50% - 10px);
    }
    .lk_news_preview {
      margin-bottom: 1.5rem;
      border-radius: var(--lk-radius-s);
      overflow: hidden;
      /* padding-bottom: 69.5%; */
      position: relative;
      width: 100%;
      aspect-ratio: 3 / 2;
    }
    .lk_news_preview img {
      object-fit: cover;
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      display: block;
      width: 100%;
      height: 100%;
    }
    .lk_news_date {
      margin-bottom: 1rem;
    }
    .lk_news_title {
      display: -webkit-box;
      overflow: hidden;
      -webkit-box-orient: vertical;
      font-size: 1.125rem;
      font-weight: 500;
      -webkit-line-clamp: 3;
    }

  }

}






/* navigate */
.lk_navigate_list {
}

.lk_navigate_list.lk_navigate_list-grid {
  display: grid;
  column-gap: 40px;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 60px;
}

.lk_navigate_list.lk_navigate_list-flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  flex-direction: row;
  background-color: var(--lk-blue-ligth-bg-color);
  padding: 0 0 0.5rem;
}

.lk_navigate_list_link {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  border-radius: var(--lk-radius-xs);
  background-color: var( --lk-top-nav-bg-color);
  padding: 1rem 1.15rem;
  text-decoration: none;
  height: 100%;
  transition: all 0.5s ease;
  line-height: 1.25;
  color: var(--link-color);
}
.lk_navigate_list_link_title {
  font-weight: 500;
  color: var(--link-color);
}
.lk_navigate_list_link:hover,
.lk_navigate_list_item.is-active .lk_navigate_list_link {
  background-color: var(--lk-top-nav-bg-color-hover);
  outline: 1px solid var( --lk-top-nav-outline-color-hover);

}

.lk_navigate_list_link:hover .lk_navigate_list_link_title,
.lk_navigate_list_item.is-active .lk_navigate_list_link_title {
  color: var(--lk-top-nav-color-hover);
}

.lk_sidebar .lk_toolbar.lk_toolbar-links {
  display: none;
}

.lk_content_bg_block {
  border-radius: var(--lk-radius-xl);
  padding: 40px;
  background-color: var(--lk-blue-bg-color);
  margin-top: 2.5rem;
}

.lk_content_centered {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lk_content_bg_block.mt-0 {
  margin-top: 0;
}

@media screen and (max-width: 600px){
.lk_header_inner {
    padding: 0 10px;
}
.lk_footer_inner {
    padding: 0 10px;
}
}

@font-face {
	font-family: "Montserrat Regular";
	src: url("../montserrat-regular/montserrat-regular.eot");
	src:    url("../montserrat-regular/montserrat-regular.ttf") format("truetype"),
		url("../montserrat-regular/montserrat-regular.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}

.table th {
  color: var(--lk-primary-color);
}

.modal-content, .form-control {
    border-radius: var(--lk-radius-xs);
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--link-color);
    --bs-btn-border-color: var(--lk-header-bg-color);
    --bs-btn-hover-bg: var(--link-color);
    --bs-btn-hover-border-color: var(--link-color);
    --bs-btn-active-bg: var(--link-color);
    --bs-btn-active-border-color: var(--link-color);
    --bs-btn-disabled-bg: var(--link-color);
    --bs-btn-disabled-border-color: var(--link-color);
}

.btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: var(--lk-header-bg-color);
    border-color: var(--lk-header-bg-color);
}

.btn-secondary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--link-color);
    --bs-btn-border-color: var(--lk-header-bg-color);
    --bs-btn-hover-bg: var(--link-color);
    --bs-btn-hover-border-color: var(--link-color);
    --bs-btn-active-bg: var(--link-color);
    --bs-btn-active-border-color: var(--link-color);
}

thead{
    top: 4rem !important;
}

.listEducationPlan table {
    font-size:12px; !important;
}