.navTop {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  background: #4477b9 url(/images/theme/blue-background-cover.jpg);
  background-size: 100%;
  z-index: 4;
  position: fixed;
  gap: 10px;
  padding: 0 10px;
}
@media only screen and (max-width: 600px) {
  .navTop {
    padding: 0 3px;
  }
}

.user_image {
  height: 30px;
  width: 30px;
  min-width: 30px;
  border-radius: 50%;
  border: 2px solid rgba(204, 204, 204, 0.8);
  overflow: hidden;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.2s;
}

.user_image:hover {
  box-shadow: 0 0 3px #000000;
}

.user_image img {
  min-height: 105%;
  min-width: 100%;
}

.school_name {
  color: #f7f8f8;
  white-space: nowrap;
  overflow: hidden;
  padding: 4px;
}
.school_name span {
  font-size: 13pt;
}
@media only screen and (max-width: 600px) {
  .school_name span {
    font-size: 11pt;
  }
}
.school_name .my-marquee {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 600px) {
  .school_name .my-marquee {
    animation: marquee 10s linear infinite;
  }
}
@keyframes marquee {
  0% {
    right: 100%;
  }
  100% {
    right: calc(-200% - 2px);
  }
}

.user_name {
  white-space: nowrap;
  overflow: auto;
  max-width: calc(40vw - 50px);
}

.menu_icon {
  font-size: 14pt;
  color: #f7f8f8;
  cursor: pointer;
  height: 35px;
  background: linear-gradient(#445a64, #546e7a);
  width: 35px;
  min-width: 35px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 5px;
}

.mainSidebar {
  background: #001c49;
  width: 150px;
  min-height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  padding-top: 40px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  z-index: 2;
}

.body-content {
  float: left;
  padding-top: 40px;
  min-height: 100vh;
  width: 100%;
  padding-right: 150px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.menu_items::-webkit-scrollbar {
  width: 4px;
}

.menu_items::-webkit-scrollbar-track {
  background: #767676;
}

.menu_items::-webkit-scrollbar-thumb {
  background: #4b4b4b;
}

.menu_items::-webkit-scrollbar-thumb:hover {
  background: #313131;
}

.menu_items {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
  max-height: calc(100vh - 40px);
  padding: 10px;
  overflow: auto;
}

.menu_item a {
  outline: 5px solid rgba(0, 0, 0, 0);
}

.menu_item.active a {
  outline: 5px solid #7a7a7a;
}

.menu_item a {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #f7f8f8;
  border-radius: 10px;
  padding: 10px;
  margin: 10px;
  min-width: 100px;
  font-weight: 500;
  color: #1a202c;
  width: 110px;
  text-align: center;
  height: calc(100% - 20px);
}

.menu_item .menu_item_icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 23pt;
}

body:not(.activeSideBar) .body-content {
  padding-right: 0;
}

body:not(.activeSideBar) .mainSidebar {
  right: -330px;
}

body:not(.activeSideBar) .menu_icon {
  background: #1a202c;
}

.popup_profile {
  display: inline-flex;
  min-width: 200px;
  min-height: 100px;
  padding-top: 40px;
  background: #001c49;
  color: #f7f8f8;
  position: fixed;
  left: 2px;
  top: 0;
  z-index: 3;
  border-radius: 10px;
}

.popup_profile:not(.active) {
  display: none;
}

@media only screen and (max-width: 600px) {
  .mainSidebar {
    width: 100%;
    right: -100%;
  }
  body:not(.activeSideBar) .mainSidebar {
    right: 0;
  }
  .body-content {
    padding-right: 0;
  }
  .menu_icon {
    background: #1a202c;
  }
  body:not(.activeSideBar) .menu_icon {
    background: linear-gradient(#445a64, #546e7a);
  }
}
.card-header:first-child {
  display: flex;
  justify-content: space-between;
}

.btn-group, .btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}

.btn-default {
  background-color: #f4f4f4;
  color: #444;
  border-color: #ddd;
}

.mailbox-controls {
  display: flex;
  margin: 5px;
  justify-content: end;
}

.form-group label {
  font-weight: bold;
  line-height: 30pt;
}

#show_msg .box_sendAnswer {
  background: #1a1e21;
  border-radius: 5px;
  display: none;
}
#show_msg .box_sendAnswer.active {
  display: block;
}

.loader {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 50;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.blur_tag:before {
  content: "";
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  background: rgba(238, 238, 238, 0.5803921569);
}

.homework-box .item-day {
  background: #eeeeee;
  border-bottom: 2px solid #585858;
  display: flex;
}
.homework-box .item-day.this-day {
  background: #d8ffde;
}
.homework-box .item-day.after-day {
  background: #fff3d8;
}
.homework-box .item-day .day-info {
  padding: 10px;
  text-align: center;
  font-weight: 600;
  border: 1px solid #585858;
  min-width: 150px;
}
.homework-box .item-day .homework-info {
  border: 1px solid #585858;
  width: 100%;
}
.homework-box .item-day .homework-info .item-homework {
  display: flex;
  border-bottom: 1px solid #585858;
}
.homework-box .item-day .homework-info .item-homework .col {
  text-align: center;
  border-left: 1px solid #585858;
  padding: 8px;
}
.homework-box .item-day .homework-info .item-homework .col:last-child {
  border-left: none;
}

.tabs {
  display: flex;
  background: #dedede;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.tabs .item_tab {
  background: #000000;
  color: #FFFFFF;
  margin: 4px;
  padding: 4px 6px;
}
.tabs .item_tab:hover {
  background: #f1f1f1;
  color: #000000;
  font-weight: bold;
  cursor: pointer;
}
.tabs .item_tab.active {
  background: #f1f1f1;
  color: #000000;
  font-weight: bold;
  cursor: pointer;
}

.selected_toolbar {
  position: sticky;
  bottom: 0;
  padding-top: 14px;
  z-index: 5;
  background: #eeeeee;
  display: none;
}
.selected_toolbar.active {
  display: block;
}
.selected_toolbar .selected_toolbar_info {
  position: absolute;
  top: -10px;
  background: #eee;
  border-radius: 5px;
  font-weight: 500;
  right: 5px;
  border: 1px solid #ccc;
  display: inline-block;
  height: 18px;
  line-height: 11px;
  padding: 2px 10px;
}
.selected_toolbar .selected_toolbar_info span {
  font-size: 7pt;
}
.selected_toolbar .btn-tools {
  width: 100%;
  border: 1px solid #6c6c6c;
  background: #CCCCCC;
  font-weight: 500;
  padding: 5px;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  font-size: 12pt;
}

.nav-sections {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  padding: 10px;
  gap: 5px;
}
.nav-sections .item-btn {
  font-weight: bold;
  border: 1px solid #1a202c;
  background: #eeeeee;
  padding: 3px 10px;
  border-radius: 5px;
  color: #494e5e;
}
.nav-sections .item-btn:hover {
  color: #1a202c;
}
.nav-sections .item-btn.active {
  color: #1a202c;
  border-bottom: 4px solid #1a202c;
}

/*# sourceMappingURL=admin_theme.css.map */
