/* @import url("https://fonts.googleapis.com/css2?family=Inter:wght@200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"); */

@import url('https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
    --primary: #0147a9;
    --secondary: #1590f8;
    --menu-bg: #405189;
    --primary-light: #ddf5ff;
    --grey: #999999;
    --grey-dark: #666666;
    --grey-light: #eeeeee;
    --black: #222222;
    --light-border: #e8e8e8;
    --bg1: #fef7e0;
    --bg2: #e3edfb;
    --bg3: #d0f5dc;
    --bg4: #f5deff;
    --bg5: #fae9f2;
    --bg6: #e9f5fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
    /* font-family: "Inter", sans-serif; */
    /* font-family: "Poppins", sans-serif; */
    font-family: "Public Sans", serif;
    color: #222222;
    background-color: #f8f9fd;
    font-size: 14px;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    /* font-family: "Poppins", sans-serif; */
    font-weight: 600;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
}

a:hover {
    color: inherit;
}

/*==== Start Login Css ====*/

.logo img {
    width: 100%;
    max-width: 200px;
}

/* .form-control, .form-select {
    width: 100%;
    height: 45px;
    margin-bottom: 10px;
}

.form-control:focus, .form-select:focus {
    box-shadow: none;
    border: solid 1px var(--primary-dark);
} */

.login-btn {
    width: 100%;
    height: 48px;
    color: #fff;
    background: var(--secondary);
    border: none;
    border-radius: 50px;
    background-position: center;
    transition: background 0.8s;
}

.login-btn:hover {
    background: var(--primary)
        radial-gradient(circle, transparent 1%, var(--primary) 1%) center/15000%;
}

.login-btn:active {
    background-color: var(--primary-dark);
    background-size: 100%;
    transition: background 0s;
}

.login-main {
    width: 100%;
    min-height: 100%;
    padding-top: 100px;
    position: relative;
    /* background-color: var(--primary); */
}

.login-main-register {
    background-color: var(--primary);
    position: relative;
    min-height: 100%;
}

.home-login {
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 400px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    position: relative;
}

.home-login-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    border-radius: 10px;
    padding: 50px;
    z-index: 10;
    /* background-color: rgba(255,255,255,0.4); */
    background: linear-gradient(
        -135deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0)
    );
    backdrop-filter: blur(10px);
    border: 1px solid #e8e8e8;
}

.home-login-inner .logo img {
    filter: brightness(100);
}

/* .ball-1 {
	display: block;
	width: 80px;
	height: 80px;
	border-radius: 50%;
    position: absolute;
    top: 10%;
    left: -5%;
    z-index: 1;
}

.ball-2 {
	display: block;
	width: 80px;
	height: 80px;
	border-radius: 50%;
    position: absolute;
    bottom: 10%;
    right: -5%;
    z-index: 1;
}

.ball-rotate {
  background: radial-gradient(circle at 65% 15%, white 1px, aqua 3%, darkblue 60%, aqua 100%);  
  animation: rotation 4s infinite linear;
}

.rotate {
  animation: rotation 4s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
} */

.home-login-list {
    width: 100%;
    margin-top: 60px;
    position: relative;
}

.home-login-list li {
    display: inline;
    margin-inline: 15px;
}

.home-login-list li a {
    padding: 12px 20px;
    color: #fff;
    background-color: var(--primary-dark);
    transition: all 0.4s;
    border-radius: 4px;
    /* font-size: 18px; */
}

.home-login-list li a:hover {
    background-color: var(--primary);
}

.login-inner {
    width: 100%;
    height: 100vh;
    background-color: var(--primary);
}

.login-box {
    width: 100%;
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    z-index: 10;
    position: relative;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/*==== End Home Login Css ====*/

/*==== Dashboard Css ====*/

header {
    width: 100%;
    background-color: var(--primary);
    height: 50px;
}

.dashboard-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
}

.dashboard-logo img {
    width: 100%;
    max-width: 100px;
}

.menu {
    text-align: left;
    height: 50px;
    padding-left: 20px;
}

.menu li {
    display: inline-flex;
    height: 50px;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.menu li a {
    color: #fff;
    font-size: 15px;
    padding: 15px 10px 10px 10px;
    min-height: 50px;
}

.menu li a.active {
    background-color: var(--secondary);
    position: relative;
}

.menu li a.active:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin-right: auto;
    margin-left: auto;
    top: 100%;
    width: 0;
    height: 0;
    border-top: 10px solid var(--secondary);
    border-right: 10px solid transparent;
    border-bottom: 0 solid transparent;
    border-left: 10px solid transparent;
}

.right-menu {
    text-align: right;
    display: flex;
    height: 50px;
    align-items: center;
    justify-content: flex-end;
}

.right-menu .dropdown-toggle::after {
    display: none;
}

.right-menu .dropdown-menu li a{
    padding: 8px 8px;
}

.profile-img {
    width: 100%;
    max-width: 40px;
}

.dashboard-title {
    font-weight: 600;
}

.dashboard-title i {
  font-size: 20px;
  padding: 3px 5px;
  background-color: var(--secondary);
  color: #fff;
  border-radius: 4px;
  }

.main-cont {
    width: 100%;
    padding: 10px;
    background-color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    min-height: 100px;
    border-radius: 10px;
}

.info-box {
    text-align: center;
    padding: 10px 5px;
    border-radius: 5px;
    border: solid 1px #e9e9e9;
    min-height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.info-box h5 span {
    display: block;
    padding-bottom: 7px;
    font-size: 20px;
    font-weight: 500;
}

.info-box h5 {
    font-size: 13px;
    font-weight: 500;
}

.info-box.bg1 {
    background-color: var(--bg1);
}

.info-box.bg2 {
    background-color: var(--bg2);
}

.info-box.bg3 {
    background-color: var(--bg3);
}

.info-box.bg4 {
    background-color: var(--bg4);
}

.info-box.bg5 {
    background-color: var(--bg5);
}
.info-box.bg6 {
    background-color: var(--bg6);
}

.info-box.bg1 h5 span {
    color: #cea009;
}

.info-box.bg2 h5 span {
    color: #4870a8;
}

.info-box.bg3 h5 span {
    color: #46b469;
}

.info-box.bg4 h5 span {
    color: #8f3ab6;
}

.info-box.bg5 h5 span {
    color: #8d1957;
}

.info-box.bg6 h5 span {
    color: #156d92;
}

label {
    display: block !important;
    padding-bottom: 3px;
    color: var(--black) !important;
    font-weight: 500;
}

.form-control, .form-select {
    border: solid 1px #999;
    /* height: 40px; */
    /* height: 30px; */
    height: 35px;
    border-radius: 0;
}

.form-control:focus, .form-select:focus {
    border: solid 1px var(--secondary);
    box-shadow: none;
}

div.dataTables_wrapper div.dataTables_filter label {
    text-align: right !important;
}

div.dataTables_wrapper .form-control {
    height: 25px !important;
}

.dataTables_length .form-select {
    height: 30px !important;
}

.dselect-wrapper .form-select.show {
    box-shadow: none !important;
}

.input-group-text {
    border-color: #999999 !important;
    border-top-left-radius: 5px !important;
    border-bottom-left-radius: 5px !important;
}

.delete-btn {
    padding: 5px;
    background-color: #d40000;
    color: #fff;
    border-radius: 4px;
    outline: none;
    border: none;
    font-size: 16px !important;
}

.edit-btn {
    padding: 5px;
    background-color: #ffc107;
    color: #111;
    border-radius: 4px;
    outline: none;
    border: none;
    font-size: 16px !important;
}


.view-btn {
    padding: 5px;
    background-color: #198754;
    color: #fff;
    border-radius: 4px;
    outline: none;
    border: none;
    font-size: 16px !important; 
}

.view-btn:hover, .delete-btn:hover {
    color: #fff;
}

.edit-btn:hover {
    color: #111;
}

.popover-header {
    margin-top:0 ;
    font-weight: 500;
}

.popover-body li {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    position: relative;
}


/*==== CHECKBOX CSS ====*/

.switch {
    display: inline-block;
    height: 25px;
    position: relative;
    width: 60px;
  }
  
  .switch input {
    display:none;
  }
  
  .slider {
    background-color: #ccc;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
  }
  
  .slider:before {
    background-color: #fff;
    bottom: 3px;
    content: "";
    height: 20px;
    left: 4px;
    position: absolute;
    transition: .4s;
    width: 20px;
  }
  
  input:checked + .slider {
    background-color: #66bb6a;
  }
  
  input:checked + .slider:before {
    transform: translateX(32px);
  }
  
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }

  /*==== END CHECKBOX CSS ====*/