.main-sidebar .nav > .nav-item > .nav-link {
  cursor: pointer;
}

.copyInput {
  display: inline-block;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.copied::after {
  position: absolute;
  top: 0;
  right: 100%;
  display: block;
  content: "COPIED";
  font-size: 1em;
  padding: 2px 5px;
  color: #fff;
  background-color: #22a;
  border-radius: 3px;
  opacity: 0;
  will-change: opacity, transform;
  animation: showcopied 1.5s ease;
}

nav ul.pagination {
  justify-content: flex-end;
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  50% {
    opacity: 0.7;
    transform: translateX(40%);
  }
  70% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
  }
}

table thead tr th:last-child {
  text-align: right;
}

table tbody tr td:last-child {
  text-align: right;
}

.search-control {
  width: 100% !important;
}

.font-bold {
  font-weight: bold !important;
}
.font-bolder {
  font-weight: bolder !important;
}

.text-black {
  color: black !important;
}

.notice-scroll {
  /* null */
}

.notice-scroll .news-scroll a {
  text-decoration: none;
}

.notice-scroll .dot {
  height: 6px;
  width: 6px;
  margin-left: 3px;
  margin-right: 3px;
  margin-top: 2px !important;
  background-color: rgb(207, 23, 23);
  border-radius: 50%;
  display: inline-block;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.dropdown-menu.notification.show {
  width: 17rem;
}

@media only screen and (max-width: 991px) {
  nav.main-sidebar.bg-default {
    background-color: #2c2c54!important;
  }
  .main-sidebar .nav-item > .nav-link:hover, .main-sidebar .nav-item.active > .nav-link, .main-sidebar .nav-item.open > .nav-link {
    background: -webkit-linear-gradient(177deg, #41417b 0%, #40407a 80%) !important;
    border-left: 4px solid #5e72e4 !important;
  }
	/* .main-sidebar {
		width: 100% !important;
	} */

  /* #main-sidebar{
    height:calc(100vh - 120px)!important;
    padding-bottom:150px;
    overflow:auto
  } */

  .navbar-brand:focus, .navbar-brand:hover {
    text-decoration: none;
    text-align: center;
    margin: 0 auto;
  }
	.dropdown-menu.notification.show {
		width: 14rem;
	}
}