:root {
  --bodybg: #f8f9fe;
  --primary-text-color: #0a3251;
  --primary-bg-color: #213855;
  --primary-secondary-color: #0099ff;
}
* {
  color: var(--primary-text-color);
}

@font-face {
	font-family: 'FiraGO';
	src: url('/assets/fonts/FiraGO-Regular.eot');
	src: local('ÃƒÂ¢Ã‹Å“Ã‚Âº'), url('/assets/fonts/FiraGO-Regular.woff') format('woff'), url('/assets/fonts/FiraGO-Regular.ttf') format('truetype'), url('/assets/fonts/FiraGO-Regular.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

body {
  background: var(--bodybg);
  font-family: 'FiraGO';
}
h1, h2, h3, h4, h5, h6 {
  font-feature-settings: 'case' on;
}
label {
  opacity: 1 !important;
}
/* core */
.f-25 {
  font-size: 25px;
}
.f-22 {
  font-size: 22px;
}
.h-45 {
  height: 45px;
}
.h-50px {
  height: 50px;
}
.w-150px {
  width: 150px;
}
.mt-24 {
  margin-top: 24px;
}
.b-t-r-0 {
  border-top-right-radius: 0;
}
.b-b-r-0 {
  border-bottom-right-radius: 0;
}
.b-t-l-0 {
  border-top-left-radius: 0;
}
.b-b-l-0 {
  border-bottom-left-radius: 0;
}
.h-45 {
  height: 45px !important;
}


@media (max-width: 767px) {
    .table-responsive .dropdown-menu {
        position: static !important;
    }
}
@media (min-width: 768px) {
    .table-responsive {
        overflow: visible;
    }
}

.main-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/img/login.jpg');
    background-size: cover;
    opacity: 0.05;
    z-index: -1;
}
.login-form {
  padding: 30px;
  max-width: 450px;
  width: 100%;
  background-color: #fff;
  box-shadow: 4px 4px 40px 0 #ededed;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: fit-content;
  position: absolute;
  display: table;
  border-radius: 15px;
}
.login-form h4 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 22px;
}
.login-form h6 {
  font-size: 14px;
  margin-bottom: 25px;
  color: #555;
}
.login-form label {
  font-weight: 600;
  margin-bottom: 5px;
}
.input-group-text {
    background: none;
}
.input-group input {
  border-left: 0;
}
.form-control {
  height: 45px;
  outline: none !important;
  box-shadow: none !important;
  border-color: #ced4da !important;
}
.btn-primary {
  background-color: var(--primary-bg-color) !important;
  border-color: var(--primary-bg-color) !important;
  position: relative;
  overflow: hidden;
  transition-duration: 0.6s;
}
.reset-pass {
  color: var(--primary-secondary-color) !important;
  text-decoration: none;
}
.reset-pass:hover {
  color: var(--primary-bg-color) !important;
}
.btn-primary::before {
  content: '';
  pointer-events: none;
  background: rgb(255 255 255 / 3%);
  width: 100%;
  height: 500px;
  position: absolute;
  top: 0;
  left: 0;
  transition-duration: 0.6s;
  border-radius: 50%;
}
.btn-primary:hover::before {
  transform: translateY(-10%);
}
.auth-devider {
  position: relative;
  margin-bottom: 20px;
  margin-top: 20px;
  z-index: 2;
}
.auth-devider::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #999;
  z-index: -1;
}
.auth-devider h5 {
  font-weight: 600;
  font-size: 16px;
  color: var(--primary-text-color);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  background-color: #fff;
}
header {
  background: #fff;
  -webkit-box-shadow: 0 0 20px rgb(25 124 207 / 8%);
  box-shadow: 0 0 20px rgb(25 124 207 / 8%);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-pt-1 {
  width: 300px;
  border-right: 1px solid #ddd;
}
.header-pt-1, .header-pt-2 {
  padding: 20px;
  position: relative;
}
.togglenav {
  position: absolute;
  top: 50%;
  transform: translateY(-22px);
  right: 0;
  font-size: 30px;
  background: #fff;
  margin-right: -15px;
  cursor: pointer;
}
.header-pt-2 ul {
  padding: 0;
  margin: 0;
}
.header-pt-2 ul li {
  display: inline-block;
  font-size: 24px;
  margin-left: 10px;
  cursor: pointer;
  vertical-align: middle;
}
.header-pt-2 {
  padding: 0 20px;
}
.profile strong {
  display: block;
}
.profile {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  border-left: 1px solid #ddd;
  padding-left: 30px;
}
.profile-inner {
  line-height: 15px;
}
.profile-inner strong {
  font-size: 16px;
}
.profile-inner span {
  font-size: 13px;
}
.profile-image {
  height: 45px;
  width: 45px;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  margin-right: 15px;
}
.content {
  padding-top: 80px;
  min-height: 100vh;
  display: flex;
  justify-content: space-between;
}
aside {
  background: #fff;
  width: 100%;
  position: fixed;
  height: 100%;
  width: inherit;
}
.left-content {
  width: 300px;
  min-width: 300px;
  transition-duration: 0.5s;
  white-space: nowrap;
}
.right-content {
  width: 100%;
  padding: 20px;
}
aside {
  overflow-x: hidden;
  overflow-y: auto;
}
aside ul {
  padding: 20px 0 0 0;
  margin: 0;
}
aside ul li {
  list-style: none;
  padding: 0 15px;
}
aside ul li a {
  display: block;
  padding: 10px 20px;
  color: var(--primary-text-color);
  text-decoration: none;
  font-size: 15px;
  opacity: 0.9;
}
aside ul li a.active {
  background: rgb(26 163 255 / 15%);
  border-radius: 30px;
}

aside ul li h4 {
  font-size: 13px;
  font-weight: bold;
  color: var(--primary-secondary-color);
  margin: 0;
  padding: 0 20px;
  margin-top: 30px;
  margin-bottom: 15px;
  letter-spacing: 2px;
}
aside ul li a i {
  font-size: 25px;
  vertical-align: middle;
  margin-right: 15px;
}
.right-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
}
.tittle-wrapper {
  background-color: var(--primary-bg-color);
  padding: 15px 17px;
  border-radius: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tittle-wrapper h6 {
  color: #fff;
  margin-bottom: 5px;
  letter-spacing: 0.40px;
}
.tittle-wrapper p {
  color: #fff;
  font-size: 11px;
  margin-bottom: 0;
  text-transform: capitalize;
  line-height: 1;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.msdropdown {
  position: absolute;
  z-index: 1000;
  min-width: 10rem;
  padding: .5rem 0;
  margin: 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,.15);
  border-radius: .25rem;
  right: 0;
}

.nobg {
  background: none;
  outline: none;
  box-shadow: none;
  border: 0;
}
.nobg::after {
  display: none;
}


.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 20px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 1px;
  bottom: 1px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: var(--primary-bg-color);
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(30px);
  -ms-transform: translateX(30px);
  transform: translateX(30px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
.bridge {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 10px;
}
.bridge a {
  color: var(--primary-secondary-color);
  text-decoration: 0;
  margin: 0 10px;
}
.homecl {
  color: var(--primary-bg-color) !important;
}
.left-content.closed {
  width: 0;
  min-width: 0;
  transition-duration: 0.5s;

}
.header-pt-2 .dropdown-menu li {
  display: block !important;
  margin: 0;
}
.header-pt-2 .dropdown-item {
  font-size: 15px;
  padding: 8px;
}
.header-pt-2 ul.dropdown-menu {
  padding: 10px;
}


.ring
{
  position: fixed;
  top: 50%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  text-align: center;
  line-height: 150px;
  font-family: sans-serif;
  color: var(--primary-secondary-color);
  letter-spacing: 4px;
  text-transform: uppercase;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
  margin-top: -50px;
  margin-left: -50px;
  z-index: 2;
}
.ring::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter:blur(3px);
  z-index: -1;
}
.ring:before
{
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  border: 2px solid transparent;
  border-top: 2px solid var(--primary-secondary-color);
  border-right: 2px solid var(--primary-secondary-color);
  border-radius: 50%;
  animation: animateC 2s linear infinite;
}
.ring span
{
  display:block;
  position:absolute;
  top:calc(50% - 2px);
  left:50%;
  width:50%;
  height:4px;
  background:transparent;
  transform-origin:left;
  animation:animate 2s linear infinite;
}

@keyframes animateC
{
  0%
  {
    transform:rotate(0deg);
  }
  100%
  {
    transform:rotate(360deg);
  }
}
@keyframes animate
{
  0%
  {
    transform:rotate(45deg);
  }
  100%
  {
    transform:rotate(405deg);
  }
}
.search-btn {
  min-width: 80px;
}
.select2-container .select2-selection--single, .select2-container--default .select2-selection--single .select2-selection__rendered, .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 45px;
  line-height: 45px;
}
.select2-container--default .select2-selection--single {
  border: 1px solid #ced4da;
}
.sort-box {
  background: #f8f9fe;
  border: 1px solid #ddd;
  margin-bottom: 10px;
  padding: 5px;
  border-radius: 5px;
  margin-left: 0 !important;
  cursor: move;
}
.maingroupcheck .form-check .form-check-input {
  margin-left:5px;
  margin-right: 10px;
  cursor: pointer;
}
.maingroupcheck .form-check .form-check-input.ignore {
  float: right;
}

.ui-state-highlight {
  height: 36px;
  background: var(--primary-bg-color);
  border-radius: 5px;
  top: 0;
  margin-bottom: 10px;
}
.showblank {
  display: none;
}
