@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

@font-face {
  font-family: "piron";
  src: url("../font/piron.woff2") format("woff2"),
  url("../font/piron.woff") format("woff"),
  url("../font/piron.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "inlove";
  src: url("../font/inlove.woff2") format("woff2"),
  url("../font/inlove.woff") format("woff"),
  url("../font/inlove.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "inlove";
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  background: #f5f6f8;
}

img {
  max-width: 100%;
}

.form-control,
button {
  box-shadow: none !important;
}

/********** Template CSS **********/
:root {
  --primary: #009cff;
  --light: #f3f6f9;
  --dark: #191c24;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  transition: 0.5s;
  font-size: 14px;
}

.btn.btn-primary {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 50px;
}

/*** Layout ***/

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  transition: 0.5s;
  z-index: 999;
  background: #3e6ab4;
  border-radius: 20px;
  margin: 10px;
  height: calc(100vh - 20px);
  width: calc(250px - 20px);
}

footer {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  width: 100%;
}

.content {
  margin-left: 250px;
  min-height: calc(100vh - 93px);
  transition: 0.5s;
}

@media (min-width: 320px) {
  .sidebar.open {
    margin-left: -250px;
  }

  /* .content { */
  /* width: calc(100% - 250px); */
  /* width: 100%; */
  /* } */
  footer {
    margin-left: 250px;
    width: 100%;
  }

  .content.open {
    width: 100%;
    margin-left: 0;
  }

  .content.open + footer {
    padding-left: 1.5rem;
    margin-left: 0;
  }
}

.sidebar .navbar-nav {
  overflow-y: auto;
}

.sidebar .navbar-nav::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: transparent;
}

.sidebar .navbar-nav::-webkit-scrollbar {
  width: 8px;
  background-color: transparent;
}

.sidebar .navbar-nav::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #254985;
}

/*** Navbar ***/
.sidebar .navbar .navbar-nav .nav-link {
  padding: 10px 20px;
  color: white;
  font-weight: 400;
  border-radius: 8px;
  outline: none;
  background: transparent;
  position: relative;
}

.sidebar .navbar-nav .dropdown-menu {
  padding: 10px;
  background: #4578b7;
  margin: 8px 0 0;
  border-radius: 8px;
}

.sidebar .navbar-nav .dropdown-menu a.nav-item.nav-link.dropdown-item {
  font-size: 14px;
}

.sidebar .navbar .navbar-nav .nav-link img {
  height: 16px;
  width: 20px;
  object-fit: contain;
}

.sidebar .navbar-nav {
  padding: 0 15px;
  gap: 4px;
  height: calc(100% - 115px);
}

.sidebar nav.navbar {
  height: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 0;
}

.sidebar .navbar .navbar-nav .nav-link:hover,
.sidebar .navbar .navbar-nav .nav-link.active {
  color: white;
  background: #3361ad;
}

.sidebar .navbar .navbar-nav .nav-link i {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.sidebar .navbar .dropdown-toggle::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transition: 0.5s;
  margin: auto;
  height: 20px;
}

.sidebar .navbar .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(-180deg);
}

.sidebar img.logo-white {
  width: 150px;
}

.sidebar a.navbar-brand {
  margin: 0 0 35px;
}

.sidebar .navbar .dropdown-item {
  padding-left: 25px;
  border-radius: 0 30px 30px 0;
}

table.data-table th {
  white-space: nowrap;
}

.content .navbar .navbar-nav .nav-link {
  margin-left: 25px;
  padding: 12px 0;
  color: var(--dark);
  outline: none;
}

.content .navbar .navbar-nav .nav-link:hover,
.content .navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.content .navbar .sidebar-toggler,
.content .navbar .navbar-nav .nav-link i {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 40px;
}

.content .navbar .dropdown-toggle::after {
  margin-left: 6px;
  vertical-align: middle;
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transition: 0.5s;
}

.content .navbar .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(-180deg);
}

@media (max-width: 575.98px) {
  .content .navbar .navbar-nav .nav-link {
    margin-left: 15px;
  }
}

/*** Date Picker ***/
.bootstrap-datetimepicker-widget.bottom {
  top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
  border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
  font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
  padding: 10px;
  border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
  background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
  border-bottom-color: var(--primary);
}

/*** Testimonial ***/
.progress .progress-bar {
  width: 0px;
  transition: 2s;
}

/*** Testimonial ***/
.testimonial-carousel .owl-dots {
  margin-top: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  border: 5px solid var(--primary);
  border-radius: 15px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  background: var(--dark);
  border-color: var(--primary);
}

.login-module .lft-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.login-module .lft-content {
  height: 100%;
  /* background: url(../img/login-bg.png) no-repeat;
    background-size: cover;
    padding: 70px 80px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; */
}

section.login-module {
  height: 100vh;
  background: white;
}

.login-module .lft-content .top img.login-img {
  min-width: 220px;
}

.login-module .lft-content .top p {
  margin: 30px 0 20px;
  max-width: 80%;
  color: #fff;
}

.login-module .lft-content .bottom {
  text-align: center;
}

.login-module .lft-content .bottom img {
  max-height: 300px;
}

/* @media screen and (min-width: 1366px) {
    .login-module .lft-content .bottom img {
        width: 550px;
    }
} */

.login-module .lft-content .bottom p {
  text-align: center;
  margin: 25px 0 0;
  color: #fff;
  font-size: 13px;
}

.login-module .content-box {
  overflow: auto;
  max-height: 100vh;
  /*padding: 100px 92px 30px;*/
  padding: 6% 92px 30px;
  /* padding: 50px 45px 30px; */
}

.login-module .content-box img.logo {
  max-width: 220px;
  width: 100%;
  /*margin: 0 0 130px;*/
  margin: 0 0 10vh;
}

.login-module .content-box .head {
  margin: 0 0 25px;
}

.login-module .content-box .head h4 {
  margin: 0 0 5px;
  font-size: 28px;
  text-transform: capitalize;
}

.login-module .content-box .head p {
  margin: 0;
}

.login-module .content-box .head p a {
  color: #454ad8;
  text-decoration: underline;
}

.login-module .content-box .field .btn {
  width: 100%;
  height: 45px;
  border-radius: 8px;
  border: none;
  text-transform: capitalize;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 25px;
}

.black-btn {
  background: #000;
  color: #fff;
  border-radius: 8px;
  height: 40px;
  font-weight: 400;
  display: flex;
  align-items: center;
  column-gap: 15px;
  border: none;
  justify-content: center;
  white-space: nowrap;
}

.flat-btn {
  color: #000;
  background: #fff;
  box-shadow: inset 0 0 0 1px #ccc !important;
  min-width: 120px;
  height: 40px;
  font-weight: 500;
  border-radius: 8px;
  display: flex;
  align-items: center;
  column-gap: 15px;
  justify-content: center;
  white-space: nowrap;
}

.red-btn {
  color: #fff !important;
  background: #ed3237;
  min-width: 120px;
  height: 40px;
  font-weight: 500;
  border-radius: 8px;
  display: flex;
  align-items: center;
  column-gap: 15px;
  border: none;
  justify-content: center;
  white-space: nowrap;
}

.blue-btn {
  color: #fff !important;
  background: #3e6ab4;
  min-width: 120px;
  height: 40px;
  font-weight: 500;
  border-radius: 8px;
  display: flex;
  align-items: center;
  column-gap: 15px;
  border: none;
  justify-content: center;
  white-space: nowrap;
}

.black-btn {
  color: #fff !important;
  background: #000;
  min-width: 120px;
  height: 40px;
  font-weight: 500;
  border-radius: 8px;
  display: flex;
  align-items: center;
  column-gap: 15px;
  border: none;
  justify-content: center;
  white-space: nowrap;
}

.yellow-btn {
  color: #fff !important;
  background: #efad4d;
  min-width: 120px;
  height: 40px;
  font-weight: 500;
  border-radius: 8px;
  display: flex;
  align-items: center;
  column-gap: 15px;
  border: none;
  justify-content: center;
  white-space: nowrap;
}

.green-btn {
  color: #fff !important;
  background: #50c37e;
  min-width: 120px;
  height: 40px;
  font-weight: 500;
  border-radius: 8px;
  display: flex;
  align-items: center;
  column-gap: 15px;
  border: none;
  justify-content: center;
}

.blue-btn img,
.main-btn img,
.flat-btn img {
  height: 18px;
  margin-left: auto;
}

.main-btn {
  background: linear-gradient(180deg, #434f9f 0%, #202972 100%);
  color: #fff;
  min-width: 120px;
  height: 37px;
  font-weight: 500;
  border-radius: 8px;
  border: none;
  display: flex;
  align-items: center;
  column-gap: 15px;
  border: none;
  justify-content: center;
}

.login-module .content-box .forgot {
  text-align: center;
  text-transform: capitalize;
  font-weight: 600;
}

.login-module .content-box .forgot a {
  color: #000;
  text-decoration: underline;
}

.inputs input {
  width: 46px;
  height: 46px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

/*.input {
    width: 40px;
    !* border: 1px solid rgba(0, 0, 0, 0.5); *!
    margin: 0 10px 0 0;
    border: none;
    text-align: center;
    font-size: 22px;
    cursor: not-allowed;
    pointer-events: none;
    font-weight: 600;
    border-radius: 6px;
    background: #DBE3F6;
    color: #4d4d4d;
}*/

.input {
  width: 40px;
  /* border: 1px solid rgba(0, 0, 0, 0.5); */
  margin: 0 10px 0 0;
  border: none;
  text-align: center;
  font-size: 22px;
  /*cursor: not-allowed;*/
  /*pointer-events: none;*/
  font-weight: 600;
  border-radius: 6px;
  background: #dbe3f6;
  color: #4d4d4d;
}

.input:focus {
  border-color: rgba(0, 0, 0, 0.5);
  outline: none;
}

.input:nth-child(1) {
  cursor: pointer;
  pointer-events: all;
}

.login-module .otp {
  margin: 25px 0;
  font-weight: 600;
  font-size: 13px;
}

.login-module .otp a {
  display: block;
  color: #454ad8;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  opacity: 1;
}

.form-control:focus {
  color: #000;
}

.login .form-floating input {
  border: none;
  border-bottom: 2px solid #000;
  border-radius: 0;
  box-shadow: none;
  font-weight: 600;
  color: #4d4d4d;
  padding-left: 20px;
  font-size: 14px;
  padding-right: 20px;
  background: #f5f6f8;
}

.form-floating.select-box .form-select {
  padding-top: 0.625rem;
}

form .form-floating input {
  background: #fff;
  padding-left: 20px !important;
  padding-right: 20px !important;
  font-size: 14px;
  font-weight: 500;
}

.login-module .field.trouble-login .btns {
  display: flex;
  align-items: center;
  margin: 0 0 30px;
  gap: 15px;
}

.login-module .field.trouble-login .btns a.btn {
  margin: 0;
}

.login-module .field.trouble-login .btns span {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  color: #c9c9c9;
  position: relative;
  height: 50px;
  display: flex;
  align-items: center;
}

.login-module .field.trouble-login .btns span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 2px;
  height: 13px;
  background: #c9c9c9;
}

.login-module .field.trouble-login .btns span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 2px;
  height: 13px;
  background: #c9c9c9;
}

.login-module .field.trouble-login .forgot a {
  color: #454ad8;
  text-decoration: none;
}

.form-floating label {
  display: flex;
  font-weight: 500;
  align-items: center;
  color: #000;
  padding: 5px 20px;
}
.form-floating input {
  border: 1px solid #ccc;
  color: #000;
  border-radius: 8px;
}
.login-module .content-box .form-floating select {
  border: none;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: none;
  font-weight: 600;
  background: #f5f6f8 !important;
  color: #000;
  padding-left: 20px;
  padding-right: 20px;
  align-items: center;
  font-size: 14px;
}

.login-module .content-box .head h5 {
  font-family: "Poppins", sans-serif;
  color: #535353;
}

.select-box {
  position: relative;
}

.select-box::after {
  content: "";
  position: absolute;
  background: url(../img/arrow-down.png) no-repeat;
  background-size: 14px;
  right: 20px;
  top: 0;
  bottom: 0;
  width: 15px;
  margin: auto;
  height: 13px;
}

.select-box select {
  padding-right: 40px !important;
  font-size: 14px;
  background: #fff !important;
}

.login.signup .content-box .field .btn {
  width: 150px;
  margin: 55px 0 0 !important;
  color: #fff;
}
.plan {
  background: #3e6ab4;
  border-radius: 8px;
  color: #fff;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.plan span {
  margin-left: auto;
}

.plan span img {
  width: 20px;
}

.pricing-modal .modal-content {
  background: transparent;
  border: none;
  padding: 0;
}

.pricing-modal .pricing .head-3 {
  text-align: center;
  margin: 0 0 40px;
}
.pricing-modal .pricing .head-3 span {
  text-transform: capitalize;
  color: #0ecd1d;
}
.pricing-modal .pricing .head-3 h4 {
  color: #000;
}
.pricing-modal .pricing .box {
  background: #fff;
  border-radius: 15px;
  padding: 35px;
}
 .pricing-modal .pricing .box.premium:hover h3,
   .pricing-modal .pricing .box:hover h3,
   .pricing-modal .pricing .box:hover h3 sub, 
 .pricing-modal .pricing .box.premium:hover h3 sub,
 .pricing-modal .pricing .box.premium.active h3 sub,
 .pricing-modal .pricing .box.active h3 sub,
 .pricing-modal .pricing .box.premium.active h3,
   .pricing-modal .pricing .box.active h3 {
  color: #2346f9;
} 
.pricing-modal .pricing .box h3 {
  color: #000;
  margin: 0 0 40px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
.pricing-modal .pricing .box h3 sub {
  font-size: 1rem;
  font-weight: 400;
  color: #767676;
}
.pricing-modal .pricing .box .inner-head {
  padding: 0 0 35px;
  margin: 0 0 45px;
  border-bottom: 2px solid #bbbbbb;
}
.pricing-modal .pricing .box .inner-head h5 {
  text-transform: capitalize;
  color: #333333;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}
.pricing-modal .pricing .box .inner-head p {
  margin: 15px 0 0;
  width: 90%;
  color: #000;
}
.pricing-modal .pricing .box ul li {
  margin: 0 0 25px;
  position: relative;
  padding-left: 30px;
  color: #333333;
  font-weight: 600;
}
.pricing-modal .pricing .box ul li:last-child {
  margin: 0;
}
.pricing-modal .pricing .box ul li img {
  height: 19px;
  position: absolute;
  left: 0;
  top: 3px;
}
.pricing-modal .pricing .box ul {
  margin: 0 0 30px;
}
.pricing-modal .pricing .box.active .common-btn,
.pricing-modal .pricing .box .common-btn.active,
.pricing-modal .pricing .box:hover .common-btn,
.pricing-modal .pricing .box .common-btn:hover {
  background: #2346f9;
  color: #fff;
}

/* .pricing-modal .pricing .box.premium:hover h3,
.pricing-modal .box:hover h3,
.pricing-modal .pricing .box:hover h5,
.pricing-modal .pricing .box:hover p {
    color: #fff;
}

.pricing-modal .box:hover {
    color: #fff;
} */

/* .pricing-modal .box:hover img,
.pricing-modal .box.premium:hover img, */
/* .pricing-modal .pricing .box:hover ul li , */

.pricing-modal .pricing .box.active .common-btn img,
.pricing-modal .pricing .box .common-btn.active img,
.pricing-modal .pricing .box .common-btn:hover img,
.pricing-modal .pricing .box.premium .common-btn:hover img {
  filter: brightness(0) invert(1);
}

.pricing-modal .pricing .box.premium .common-btn img {
  filter: invert(0);
}

/* .pricing-modal .pricing .box .common-btn img {
    filter: invert(1);
} */

.pricing-modal .pricing .box .common-btn {
  background: rgba(35, 70, 249, 0.1);
  border-radius: 11px;
  color: #000;
  text-transform: capitalize;
  width: 100%;
  text-align: left;
  display: flex;
  padding: 15px 35px;
  align-items: center;
  font-weight: 500;
}
.pricing-modal .pricing .box .common-btn img,
.pricing-modal .pricing .box.premium .common-btn img {
  margin-left: auto;
  height: 26px;
  filter: invert(1);
}

.pricing-modal .modal-content .head-3 span,
.pricing-modal .modal-content .head-3 h4 {
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.pricing-modal .modal-content .head-3 span {
  margin: 0 0 8px;
  display: block;
}


/****Dashboard****/

.dashboard {
  padding: 0 3rem;
  overflow: hidden;
}

nav.navbar .navbar-nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: "Poppins", sans-serif;
}

nav.navbar .navbar-nav ul li.notification img {
  width: 25px;
}

nav.navbar .navbar-nav ul li.notification a {
  position: relative;
}

nav.navbar .navbar-nav ul li.notification a span {
  position: absolute;
  background: #f44336;
  min-width: 20px;
  text-align: center;
  border-radius: 50px;
  left: 14px;
  top: -5px;
  font-size: 12px;
  color: #fff;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}

nav.navbar .navbar-nav ul li {
  display: flex;
  flex-wrap: wrap;
}

nav.navbar .navbar-nav ul li.user-profile {
  position: relative;
  padding-right: 55px;
  flex-direction: column;
  text-align: right;
}

nav.navbar .navbar-nav ul li.user-profile span {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

nav.navbar .navbar-nav ul li.user-profile span img {
  width: 35px;
}

nav.navbar .navbar-nav ul li.user-profile h5 {
  font-size: 15px;
  text-transform: capitalize;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  margin: 0;
  text-transform: capitalize;
}

nav.navbar .navbar-nav ul li.user-profile p {
  text-transform: capitalize;
  font-size: 12px;
}

section.toal-counts .card-box > span {
  min-width: 50px;
  height: 50px;
  display: inline-flex;
  background: #e6e6e6;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 50px;
}

section.toal-counts .card-box span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

section.toal-counts .card-box p {
  font-size: 23px;
  font-weight: 600;
  color: #4d4d4d;
  line-height: normal;
  display: flex;
  width: 100%;
  align-items: center;
}

section.toal-counts .card-box h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  text-transform: capitalize;
  font-size: 14px;
  color: #666666;
  width: 100%;
}

section.toal-counts .card-box p span {
  margin-left: auto;
}

section.toal-counts .card-box p span {
  font-size: 14px;
  position: relative;
  padding-left: 13px;
}

section.toal-counts .card-box {
  /* flex-wrap: wrap; */
  align-items: center;
}

section.toal-counts .card-box p span.up {
  color: #00a859;
}

section.toal-counts .card-box p span.down {
  color: #ed3237;
}

section.toal-counts .card-box p span.up::after {
  content: "";
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #00a859;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 0px;
}

section.toal-counts .card-box p span.down::after {
  content: "";
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #ed3237;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 0px;
  transform: rotate(180deg);
}

nav .sidebar-toggler i {
  color: #3e6ab4;
  position: relative;
  top: 1px;
}

nav .sidebar-toggler {
  background: red;
}

.navbar form input {
  background: #fff !important;
  border-radius: 8px;
  font-size: 14px;
  height: 40px;
  width: 350px;
  padding-left: 45px;
  box-shadow: none !important;
  outline: none;
  color: #000 !important;
  font-weight: 500;
}

.navbar form {
  position: relative;
}

.navbar form img {
  width: 15px;
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
}

nav .sidebar-toggler {
  background: #ebebeb !important;
}

.activity-filter {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
  margin: 0 0 30px;
}

.activity-filter ul {
  display: flex;
  gap: 30px;
}

.activity-filter ul li {
  text-transform: capitalize;
  font-weight: 500;
}

.activity-filter ul li a {
  color: #4d4d4d;
  border-bottom: 2px solid #f5f6f8;
  padding: 10px 0;
}

.activity-filter ul li a.active {
  border-color: #4d4d4d;
}

.activity-filter .ms-auto {
  display: flex;
  gap: 15px;
}

.activity-filter select.form-control {
  border-radius: 10px;
  padding: 11px 20px;
  padding-right: 65px !important;
  height: 45px;
  background: #fff;
  text-transform: capitalize;
  font-weight: 600;
  color: #4d4d4d;
  border-width: 2px;
}
.activity-filter button.btn.flat-btn {
  height: 45px;
  border-radius: 10px;
  text-transform: capitalize;
  font-weight: 600;
  color: #4d4d4d;
  min-width: 104px;
  box-shadow: inset 0 0 0 2px #ccc !important;
}

.bg-light-grey {
  background: #ebebeb !important;
}

.shadow {
  box-shadow: 0 0 15px 1px rgb(0 0 0 / 13%) !important;
}

.card-box h6 {
  font-family: "Poppins", sans-serif;
  color: #4d4d4d;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
}

.card-box ul {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.card-box ul li {
  display: flex;
  align-items: center;
  position: relative;
}

.card-box ul li label {
  color: #808080;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 15px;
  text-transform: capitalize;
  box-shadow: inset 0 0 0 1px #fff;
  border-radius: 8px;
  white-space: nowrap;
}

.card-box ul li input[type="radio"] {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.card-box ul li input[type="radio"]:checked + label {
  box-shadow: inset 0 0 0 1px #ccc;
}

.card-box a {
  color: #808080;
  font-weight: 500;
}

.card-box {
  height: 100%;
}

.country-box {
  padding: 0 50px;
}

.country-box .box {
  display: flex;
  padding: 20px;
  padding-left: 90px;
  position: relative;
  flex-direction: column;
  background: white;
  border-radius: 15px;
}

section.countries .country-content.reports .box {
  padding: 0;
  flex-direction: column;
}

section.countries .country-content.reports .box span {
  position: unset;
  display: block;
  border-radius: 50px;
  overflow: hidden;
  margin: 0 auto 10px;
}

section.countries .country-content.reports .box span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.countries .country-content.reports .box h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.country-box .box span {
  position: absolute;
  left: 20px;
  width: 50px;
  height: 50px;
  top: 0;
  display: flex;
  bottom: 0;
  margin: auto;
}

.country-box .box h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-transform: capitalize;
  color: #4d4d4d;
  margin: 0 0 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 20px;
  white-space: nowrap;
  width: 100%;
}

.country-box .box p {
  margin: 0;
  font-weight: 600;
}

.country-box button.slick-prev {
  left: -5px;
  opacity: 1;
  background: #e6e6e6;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50px;
}

.country-box button.slick-next {
  right: -5px;
  opacity: 1;
  background: #e6e6e6;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50px;
}

.country-box button.slick-arrow::before {
  opacity: 1;
  color: #fff;
}

.slick-dots {
  left: 0;
}

section.countries .country-content {
  margin: 30px 0;
}

section.countries .country-content ul {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

section.countries .country-content ul li {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

section.countries .country-content ul li span {
  width: 50px;
  height: 50px;
  display: block;
  border-radius: 50px;
  overflow: hidden;
}

section.countries .country-content ul li span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.countries .country-content ul li h6 {
  margin: 0;
  text-transform: capitalize;
  font-size: 14px;
  color: #838383;
  font-weight: 500;
}

.country-box1 {
  margin: 20px 0 0;
}

.country-box1 ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.country-box1 ul li {
  box-shadow: inset 0 0 0 2px #e6e6e6;
  border-radius: 18px;
  padding: 20px;
  display: block;
}

.country-box1 ul li .box {
  position: relative;
  display: flex;
  padding-left: 70px;
  position: relative;
  flex-direction: column;
  text-align: left;
}

.country-box1 ul li .box span {
  position: absolute;
  left: 0;
  width: 50px;
  height: 50px;
  top: 0;
  display: flex;
  bottom: 0;
  margin: auto;
}

.country-box1 ul li .box span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.country-box1 ul li .box h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-transform: capitalize;
  color: #4d4d4d;
  margin: 0 0 5px;
}

.country-box1 ul li .box p {
  margin: 0;
  font-weight: 600;
  text-transform: capitalize;
}

section.country-record .country-box button.slick-arrow {
  background: #11148a;
}

section.country-record .country-box .box {
  box-shadow: 0 0 0 2px #373435;
  border-radius: 12px;
  margin: 15px 0 0;
  padding: 9px;
  padding-left: 90px;
  flex-wrap: wrap;
  background: white;
}

section.country-record .country-box .box h4 {
  margin: 0;
  text-transform: uppercase;
  color: #000;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

section.country-record .country-box .box span {
  left: 20px;
  top: -30px;
  box-shadow: 0 0 0 2px #fff;
  border-radius: 50px;
}

section.country-record .country-box .outer-box {
  padding: 15px;
  border-radius: 12px 12px 0 0;
}

section.country-record .country-box .outer-box.active {
  background: #11148a;
}

section.country-record .country-box .outer-box.active .box {
  box-shadow: 0 0 0 2px #11148a;
}

.slick-slider {
  margin: 0 -10px;
}
.slick-slide {
  padding: 0;
  margin-right: 10px;
  margin-left: 10px;
}

.count-content {
  border-radius: 25px;
  background: #11148a;
  padding: 30px 45px;
  color: #fff;
}

.count-content ul {
  display: flex;
  gap: 20px;
}

.count-content ul li {
  width: 100%;
  position: relative;
  padding: 0 25px;
}

.count-content ul li h2 {
  font-size: 30px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin: 0 0 4px;
}

.count-content ul li::before {
  content: "";
  width: 2px;
  height: 100%;
  background: #fff;
  position: absolute;
  right: -12px;
}

.count-content ul li:last-child::before {
  display: none;
}

.count-content ul li p {
  font-size: 15px;
  text-transform: capitalize;
  font-weight: 500;
}

.border-dark {
  border: 2px solid #000;
}

.border-grey {
  border: 2px solid #cecece;
}

section.gic-revenue {
  border-radius: 15px;
}

section.gic-revenue a.main-btn {
  background: #11148a;
  font-size: 15px;
  color: #fff;
  border-radius: 12px;
  padding: 12px 25px;
  text-transform: capitalize;
  height: auto;
}

section.gic-revenue .list .box {
  box-shadow: inset 0 0 0 2px #e6e6e6;
  border-radius: 18px;
  padding: 10px 20px;
  margin: 0 0 15px;
  display: flex;
  padding-left: 80px;
  position: relative;
  flex-direction: column;
  text-align: left;
}

section.gic-revenue .list .box span {
  min-width: 50px;
  height: 50px;
  display: inline-flex;
  background: #e6e6e6;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 50px;
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
}

section.gic-revenue .list .box h4 {
  font-size: 23px;
  font-weight: 600;
  color: #4d4d4d;
  line-height: normal;
  display: flex;
  align-items: center;
  font-family: "Poppins", sans-serif;
  margin: 0;
}

section.gic-revenue .list .box p {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  text-transform: capitalize;
  font-size: 14px;
  color: #666666;
}

section.gic-revenue .list .box span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

section.gic-revenue .list button.btn {
  background: #5bb85d;
  border-radius: 18px;
  width: 100%;
  color: #fff;
}

section.gic-revenue .list button.btn span {
  display: block;
  font-size: 18px;
  font-weight: 600;
}

.card-box {
  border-radius: 15px;
  background: white;
}

.sidebar .navbar-nav .bottom {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: auto;
}

a.btn.btn-lg.btn-primary.btn-lg-square.back-to-top {
  background: #3e6ab4;
  border: none;
}

table.data-table tr,
table.data-table td,
table.data-table th {
  vertical-align: middle;
  color: #000;
  padding: 8px 15px;
}

th {
  border-color: #ccc !important;
}

table.data-table td span {
  background: #fff;
  white-space: nowrap;
  text-transform: capitalize;
  padding: 5px 15px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid;
}

table.data-table td span.active {
  color: #50c37e;
  border-color: #50c37e;
}

table.data-table td span.inactive {
  color: #ff3f5b;
  border-color: #ff3f5b;
}

table.data-table td:first-child img {
  width: 35px;
}

.table-data-box .filter {
  text-align: left;
}

.table-data-box .filter .form-group {
  display: inline-block;
}

.table-data-box .filter .form-group {
  position: relative;
}

.table-data-box .filter .form-group.search-box input {
  padding-left: 40px;
  border-color: #ccc;
  border-radius: 10px;
  height: 40px;
  font-size: 14px;
  box-shadow: none;
  width: auto;
  display: inline-block;
  font-weight: 600;
  color: #4d4d4d;
  max-width: 180px;
}

.table-data-box .filter button.btn {
  min-height: 40px;
  height: auto;
  min-width: auto;
}

.table-data-box .filter .form-group.calendar-box input {
  border-color: #ccc;
  border-radius: 10px;
  height: 40px;
  font-size: 14px;
  box-shadow: none;
  width: auto;
  display: inline-block;
  font-weight: 600;
  /* color: #4d4d4d; */
  color: #000;
}

.table-data-box .filter .form-group.search-box img {
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 15px;
  filter: contrast(0.1);
}

.table-data-box .filter form {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
}

.table-data-box .filter .form-group.select-box select {
  height: 40px;
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
  outline: none !important;
  font-weight: 600;
  /* color: #4d4d4d; */
  color: #000;
}

table.data-table td a {
  font-weight: 500;
  color: #3e6ab4;
}

table.data-table td:last-child {
  white-space: nowrap;
}

table.data-table td:last-child button {
  padding: 0;
  width: 30px;
  height: 30px;
}

table.data-table td:last-child button img {
  width: 100%;
}

.slick-next:before {
  content: "" !important;
  background: url(../img/arrow-white.svg) no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  background-position: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.slick-prev:before {
  content: "" !important;
  background: url(../img/arrow-white.svg) no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  background-position: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(180deg);
}

h1.main-heading {
  font-size: 22px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
}

.information-box h4 {
  margin: 0 0 24px;
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

.information-box form .form-group textarea.form-control {
  min-height: 200px;
}

/* .information-box form .form-group label.form-control span {
    background: #585855;
    padding: 3px 12px;
    font-size: 10px;
    border-radius: 50px;
    color: white;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    position: relative;

} */

.information-box .form-group label.form-control span {
  background: #f8f7f5;
  padding: 3px 12px;
  font-size: 10px;
  border-radius: 50px;
  color: #585855;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  position: relative;
  /* margin-left: 8px; */
}

p.follow {
  margin-left: 50px;
  margin-bottom: 0px;
}

span.date.m-0 {
  margin-left: 55px !important;
}

.information-box form .form-group label.form-control span button {
  padding: 0;
  border: none;
  margin-left: 6px;
  background: transparent;
  display: flex;
  align-items: center;
}

.information-box form .form-group label.form-control span button i {
  color: #ffffff;
  font-size: 14px;
}

.information-box form .form-group label.form-control {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.information-box form .form-group .form-control {
  border-radius: 8px;
  min-height: 40px;
  font-weight: 500;
  font-size: 14px;
  border-color: #cecece;
  color: #000;
  outline: none;
  background: #fff;
  padding: 8px 20px;
  /* padding-right: 50px; */
}

.form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #000;
}

.form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #000;
}

.form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: #000;
}

.form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #000;
}

.information-box .inner-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 25px;
}

.information-box .inner-head h4 {
  margin: 0;
  margin-right: 25px;
}

.information-box .inner-head button {
  margin-left: auto;
  height: 40px;
}

.information-box form .row {
  row-gap: 15px;
}

.repeat-sec {
  position: relative;
}

.repeat-sec .btn.delete,
.repeat-sec .btn.add {
  position: absolute;
  right: -22px;
  top: 0;
  bottom: 0;
  margin: auto;
  padding: 0;
  height: 22px;
}

.repeat-sec .btn.delete {
  color: #ff3f5b;
}

.repeat-sec .btn.add {
  color: #0d9f27;
}

.repeat-sec .btn i {
  font-size: 18px;
}

.radio-check-box {
  position: relative;
}

.radio-check-box input[type="checkbox"] {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.radio-check-box label {
  display: flex;
  align-items: center;
  padding-right: 20px !important;
}

.radio-check-box img {
  position: absolute;
  right: 15px;
  bottom: 0;
  top: 0;
  margin: auto;
  height: 20px;
  opacity: 0;
}

.radio-check-box input[type="checkbox"]:checked + label + img {
  opacity: 1;
}

.radio-check-box input[type="checkbox"]:checked + label {
  background: #3e6ab4;
  color: #fff;
  border-color: #3e6ab4;
}

.radio-check-box label span {
  margin-left: auto;
  color: #8d8d8d;
  font-weight: 500;
  opacity: 1;
}

.radio-check-box input[type="checkbox"]:checked + label span {
  opacity: 0;
}

.information-box form .form-group .plan {
  padding: 9px 20px;
  height: 40px;
}

.flex-box {
  display: flex;
  align-items: center;
  column-gap: 15px;
}

.flex-box input.form-control {
  width: 100%;
}

.flex-box .upload {
  position: relative;
}

.flex-box .upload input[type="file"] {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  opacity: 0;
  cursor: pointer;
}

.flex-box .upload .btn {
  white-space: nowrap;
  height: 40px;
  font-size: 14px;
}

.flex-box .upload .btn img {
  margin-left: 0;
}

input {
  text-overflow: ellipsis;
}

.profile-box {
  display: flex;
  align-items: center;
  /* flex-wrap: wrap; */
  gap: 45px;
}

.profile-box .pic {
  display: flex;
  align-items: center;
  gap: 45px;
  /* flex-wrap: wrap; */
}

.profile-box .pic .upload-img {
  position: relative;
}

.profile-box .pic .upload-img span {
  width: 150px;
  height: 150px;
  overflow: hidden;
  display: block;
  border-radius: 100px;
  border: 1px solid #3e6ab4;
}

.profile-box .pic .upload-img span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-box .pic .upload-img .upload-btn {
  background: #cddbfc;
  border-radius: 6px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  position: absolute;
  right: 20px;
  bottom: 0px;
  cursor: pointer;
}

.profile-box .pic .upload-img .upload-btn input[type="file"] {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}

.profile-box .pic .upload-img .upload-btn i {
  color: #454ad8;
  font-size: 16px;
  cursor: pointer;
}

.profile-box .pic .content-box h4 {
  font-family: "Poppins", sans-serif;
  color: #3e6ab4;
  font-weight: 600;
  font-size: 25px;
  white-space: nowrap;
}

.profile-box .pic .content-box p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #3e6ab4;
  display: flex;
  align-items: center;
  gap: 8px;
}

.profile-box .pic .content-box span {
  background: #fff;
  white-space: nowrap;
  text-transform: uppercase;
  padding: 5px 15px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid;
  margin: 10px 0 0;
  display: inline-flex;
}

.profile-box .pic .content-box span.active {
  color: #50c37e;
  border-color: #50c37e;
}

.profile-box .pic .content-box span.inactive {
  color: #ff3f5b;
  border-color: #ff3f5b;
}

.profile-box .detail {
  height: 100%;
  padding: 15px 0;
  padding-left: 40px;
  border-left: 2px solid #cecece;
}

.profile-box .detail ul {
  display: flex;
  flex-direction: column;
}

.profile-box .detail ul li {
  color: #000;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  padding-left: 30px;
}

.profile-box .detail ul li i {
  position: absolute;
  left: 0;
  top: 3px;
}

.student-single-profile .detail ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: masonry;
}

.student-single-profile .detail ul li span {
  font-weight: 600;
}

.information-box ul {
  margin: 0 0 25px;
  border: none;
  gap: 20px;
}

.information-box ul li button {
  border-radius: 8px !important;
  font-size: 16px;
  font-weight: 500;
  border: none !important;
  min-width: 145px;
  color: #666666 !important;
  box-shadow: inset 0 0 0 2px #e2e2e2 !important;
  transition: none !important;
  height: 45px;
}

.information-box ul li button.active {
  background-color: #3e6ab4 !important;
  color: #fff !important;
  box-shadow: inset 0 0 0 2px #3e6ab4 !important;
}

.detail-box {
  margin: 0 0 25px;
}

.detail-box:last-child {
  margin: 0;
}

.detail-box h3 {
  margin: 0 0 24px;
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-transform: capitalize;
}

.detail-box ul:last-child {
  margin: 0;
}

.detail-box ul {
  border: 2px solid #cecece;
  gap: 0;
  border-radius: 15px;
  margin: 0 0 20px;
}

.detail-box ul li {
  width: 50%;
  display: inline-block;
  padding: 15px 20px;
  color: #000;
  border-top: 2px solid #cecece;
}

.detail-box ul li span {
  font-weight: 600;
  margin-right: 5px;
}

.detail-box ul li:nth-child(1),
.detail-box ul li:nth-child(2) {
  border-top: 0;
}

.detail-box .flex.box {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
}

.detail-box .flex.box h3 {
  margin: 0;
  display: flex;
  align-items: center;
}

.detail-box .flex.box button {
  margin-left: auto;
  padding: 0;
}

.detail-box .flex.box button img {
  width: 26px;
}

.detail-box .flex.box h3 span {
  background: #50c37e;
  border-radius: 6px;
  font-size: 14px;
  color: #fff;
  padding: 10px 20px;
  display: inline-block;
  margin-left: 15px;
  font-weight: 400;
}

.our-teams .flex-box {
  display: flex;
  margin: 0 0 15px;
  align-items: center;
  flex-wrap: wrap;
}

.our-teams .flex-box h3 {
  margin: 0;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #4d4d4d;
}

.our-teams .flex-box button.btn {
  height: 35px;
  margin-left: auto;
}

.our-teams .count {
  font-weight: 600;
  color: #000;
  padding: 5px 0;
  padding-left: 15px;
  position: relative;
}

.our-teams .count::before {
  content: "";
  width: 5px;
  height: 100%;
  background: #ff3f5b;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50px;
}

.leave-type .card-box h4[data-letters]:before {
  content: attr(data-letters);
  display: inline-block;
  font-size: 1em;
  width: 2.5em;
  height: 2.5em;
  line-height: 2.5em;
  text-align: center;
  border-radius: 50%;
  background: #3e6ab4;
  vertical-align: middle;
  color: white;
  position: absolute;
  left: 15px;
  bottom: 0;
  top: 0;
  margin: auto;
}

.leave-type .card-box h4 {
  margin: 0 0 10px;
  font-size: 18px;
}

.leave-type .card-box p {
  font-weight: 500;
}

.leave-type .card-box {
  padding-left: 75px !important;
  position: relative;
  /* height: auto !important; */
  height: 100%;
}

/* The side navigation menu */

.sidenav.open {
  width: 40%;
  right: 0;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.sidenav.open::-webkit-scrollbar {
  display: none;
}
.sidenav {
  height: 100%;
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  background-color: #fff;
  overflow-x: hidden;
  transition: 0.5s;
  width: 40%;
  right: -40%;
  padding: 60px 50px 30px;
}

/* The navigation menu links */
.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
  color: #f1f1f1;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 22px;
  background: #c7c7c7;
  padding: 0;
  height: 25px;
  width: 25px;
  border-radius: 50px;
  text-align: center;
  color: #fff;
  line-height: 28px;
}

.sidenav .information-box {
  border: 1px solid #cecece;
  border-radius: 15px;
  padding: 25px;
}

.sidenav .information-box h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin: 0 0 20px;
  font-size: 26px;
}

.red_btn {
  color: #ff3f5b !important;
  height: 40px;
}

.head-label {
  display: flex;
  align-items: center;
}

label.head-label.paid {
  background: #5bb85d !important;
  color: #fff !important;
  border-color: #5bb85d !important;
}

label.head-label.pending {
  background: #3e6ab4 !important;
  color: #fff !important;
  border-color: #3e6ab4 !important;
}

.form-group.paid-box .form-control {
  background: #383dc5 !important;
  border: none;
  display: flex;
  align-items: center;
}

.form-group.paid-box .form-control h4 {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.form-group.paid-box .form-control h4 span {
  margin-left: auto;
}

.modal-content.modal-content {
  border-radius: 25px;
}

.modal-header button.btn {
  height: 35px;
  padding: 0 20px;
  border-radius: 6px;
}

.modal-header h1 {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
}

.modal-header {
  border: none;
}

.modal-body .form-group {
  margin: 0 0 15px;
}

.modal-body .form-group .form-control {
  border-radius: 8px;
  height: 40px;
  font-weight: 500;
  font-size: 14px;
  border-color: #cecece;
  color: #000;
  outline: none;
  background: #fff;
  padding: 8px 20px;
}

.modal-body .form-group textarea.form-control {
  min-height: 200px;
}

.modal-footer {
  justify-content: flex-start;
  border: none;
}

.modal-body .form-group:last-child {
  margin: 0;
}

#FollowupSidenav.sidenav .information-box .flex-box {
  margin: 0 0 40px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

#FollowupSidenav.sidenav .information-box .flex-box h2 {
  margin: 0;
}

#FollowupSidenav.sidenav .information-box .flex-box span {
  margin-left: auto;
  font-weight: 500;
}

#FollowupSidenav.sidenav .information-box .or {
  margin: 30px 0 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

#FollowupSidenav.sidenav .information-box .or span {
  font-weight: 600;
  color: #000;
}

#FollowupSidenav.sidenav .information-box .add-follow {
  margin: 0 0 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

#FollowupSidenav.sidenav .information-box .add-follow h5 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
}

#FollowupSidenav.sidenav .information-box .add-follow span {
  margin-left: auto;
  font-weight: 500;
}

#FollowupSidenav.sidenav .added-on {
  margin: 30px 0 0;
}

#FollowupSidenav.sidenav .added-on ul {
  margin: 0;
  padding-left: 60px;
  position: relative;
}

#FollowupSidenav.sidenav .added-on ul:after {
  content: "";
  position: absolute;
  left: 10px;
  width: 2px;
  background: #cecece;
  height: 100%;
  top: 0;
  bottom: 0;
  border-radius: 50px;
}

#FollowupSidenav.sidenav .added-on ul li {
  margin: 0 0 30px;
  position: relative;
}

#FollowupSidenav.sidenav .added-on ul li:last-child {
  margin: 0;
}

#FollowupSidenav.sidenav .added-on ul li .head {
  display: flex;
  margin: 0 0 15px;
  align-items: center;
}

#FollowupSidenav.sidenav .added-on ul li .head h5 {
  padding: 8px 12px;
  font-size: 15px;
  font-family: Poppins, sans-serif;
  border: 1px solid #cecece;
  border-radius: 6px;
  font-weight: 600;
}

#FollowupSidenav.sidenav .added-on ul li .head span {
  margin-left: 25px;
  color: #000;
  font-weight: 500;
}

#FollowupSidenav.sidenav .added-on ul li p {
  color: #000;
}

#FollowupSidenav.sidenav .added-on ul li .date {
  margin: 10px 0 0;
  display: block;
  color: #000;
  font-weight: 600;
}

#FollowupSidenav.sidenav .added-on ul li .date i {
  margin-right: 5px;
}

#FollowupSidenav.sidenav .added-on ul li .head span i {
  margin-right: 5px;
}

#FollowupSidenav.sidenav .added-on ul li::after {
  content: "";
  width: 11px;
  height: 11px;
  position: absolute;
  left: -55px;
  top: 4px;
  background: white;
  border-radius: 50px;
  z-index: 1;
}

#FollowupSidenav.sidenav .added-on ul li::before {
  content: "";
  width: 19px;
  height: 19px;
  position: absolute;
  left: -59px;
  top: 0;
  background: #858585;
  border-radius: 50px;
  z-index: 1;
}

#FollowupSidenav.sidenav .added-on ul li.active::before {
  background: #00a859;
}

.student-applications ul li {
  margin: 0 0 15px;
  padding: 20px;
}

.student-applications ul li:last-child {
  margin: 0;
}

.student-applications ul li .head {
  display: flex;
  align-items: center;
  margin: 0 0 15px;
}

.student-applications ul li .head h5 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

.student-applications ul li .head .badge {
  margin-left: auto;
  background: #000;
  font-weight: 500;
  text-transform: capitalize;
  padding: 10px 25px;
  font-size: 12px;
  color: #fff;
}

.student-applications ul li .head .badge.offer-applied {
  background: #a53692;
}

.student-applications ul li .head .badge.visa-approved {
  background: #50c37e;
}

.student-applications ul li .head .badge.application-submitted {
  background: #11148a;
}

.student-applications ul li .head h5 span {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  overflow: hidden;
}

.student-applications ul li .head h5 span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.student-applications ul li span.university-name {
  padding: 8px 12px;
  font-size: 15px;
  font-family: Poppins, sans-serif;
  border: 1px solid #cecece;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
  text-transform: uppercase;
  color: #000;
  margin: 0 0 15px;
}

.student-applications ul li .row {
  align-items: flex-end;
}

.student-applications ul li .data p {
  margin: 0;
  color: #000;
}

.student-applications ul li .data {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.student-applications ul li .row button.btn img {
  width: 25px;
}

.student-applications ul li .row button.btn {
  padding: 0;
  margin-left: auto;
  display: block;
}

.student-applications ul li .data p b {
  font-weight: 600;
}

#applicationPopupModal .buttons-position {
  position: absolute;
  right: -210px;
  bottom: 0;
  top: 0;
  margin: auto;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 204px;
}

#applicationPopupModal .buttons-position button.btn {
  width: 100%;
  border: 1px solid #b5b5b5;
}

section.checkout .head h5 {
  font-size: 28px;
  margin: 0 0 25px;
  color: #454ad8;
}

section.checkout .checkout-content .price h3 {
  margin: 0 0 40px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #2346f9;
}

section.checkout .checkout-content .price h3 sub {
  font-size: 1rem;
  font-weight: 400;
  color: #767676;
}

section.checkout .checkout-content .price .inner-head h5 {
  text-transform: capitalize;
  color: #333333;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

section.checkout .checkout-content .price .inner-head p {
  margin: 15px 0 0;
  width: 90%;
  color: #000;
}

section.checkout .checkout-content .price {
  background: #f1f1f1;
  border-radius: 15px;
}

section.checkout .checkout-content {
  border-radius: 15px;
}

section.checkout .checkout-content .cards h3 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 600;
  color: #535353;
}

section.checkout .checkout-content .cards .text-left {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

section.checkout .checkout-content .cards .text-left img {
  width: auto;
}

section.checkout .checkout-content .cards form {
  margin: 30px 0 0;
}

section.checkout .checkout-content .cards .form-group {
  margin: 0 0 18px;
}

section.checkout .checkout-content .cards .form-control {
  border-radius: 8px;
  height: 40px;
  font-weight: 500;
  font-size: 14px;
  border-color: #cecece;
  color: #000;
  outline: none;
  background: #fff;
  padding: 8px 20px;
}

section.checkout .checkout-content .cards form button.btn {
  width: 100%;
  padding: 0 22px;
}

section.checkout .checkout-content .cards form button.btn img {
  width: 10px;
}

section.checkout {
  display: flex;
}

section.checkout .checkout-content {
  width: 60%;
  padding: 3rem 3rem;
}

section.checkout .content-box {
  width: 100%;
  padding: 3rem 3rem;
}

section.checkout .checkout-content {
  background: #fff;
  border-radius: 0;
  box-shadow: inset 30px 0px 100px 0px rgb(64 70 153 / 14%);
  padding-left: 6rem;
  padding-right: 6rem;
}

button.go-back img {
  width: 10px;
  transform: rotate(180deg);
}

.upload button img {
  position: absolute;
  left: 20px;
}

.upload button {
  padding-left: 50px;
}

.select-box.branch select.form-control {
  border-radius: 10px;
  padding: 11px 15px;
  padding-right: 45px !important;
  height: 45px;
  background: #fff;
  text-transform: capitalize;
  font-weight: 600;
  color: #4d4d4d;
  border-width: 0;
}

.select-box.branch {
  margin-right: 50px;
}

.countings .card-box {
  padding: 16px 16px 16px 80px;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 80px;
}

.countings .card-box span {
  width: 50px;
  height: 50px;
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #e9e9e9;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  color: #fff;
}

.countings .card-box span h4 {
  margin: 0;
  font-size: 35px;
}

.countings .card-box h4 {
  margin: 0;
  font-size: 17px;
  color: #414141;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

.lightblue-clr {
  background: #3e6ab4 !important;
}

.blue-clr {
  background: #2e2d84 !important;
}

.pink-clr {
  background: #d3147c !important;
}

.skyblue-clr {
  background: #18aee5 !important;
}

.lightgreen-clr {
  background: #80c99a !important;
}

.orange-clr {
  background: #f15c31 !important;
}

.purple-clr {
  background: #5e3a97 !important;
}

.green-clr {
  background: #21b26b !important;
}

.mehroon-clr {
  background: #a81c51 !important;
}

.yellow-clr {
  background: #f2ab43 !important;
}

.red-clr {
  color: #ee1d23 !important;
}

.table-data-box .filter .form-group.cad-box input {
  padding-left: 60px;
  border-color: #ccc;
  border-radius: 10px;
  height: 40px;
  font-size: 14px;
  box-shadow: none;
  width: auto;
  display: inline-block;
  font-weight: 600;
  color: #000;
  max-width: 180px;
}

.table-data-box .filter .form-group.cad-box span {
  background: #e6e9e8;
  position: absolute;
  height: 100%;
  display: flex;
  align-items: center;
  border-radius: 10px;
  padding: 0 10px;
  font-weight: 600;
  color: #000;
  border: 1px solid #ced4da;
}

.slick-dotted.slick-slider {
  padding: 0;
}

.country-box button.slick-arrow {
  z-index: 10;
}

.checklist-radio {
  margin: 25px 0 0;
}

.checklist-radio ul li {
  width: 50%;
}

.checklist-radio ul {
  gap: 0;
  row-gap: 5px;
}

.checklist-radio ul li .form-check {
  display: flex;
}

.checklist-radio ul li .form-check input {
  min-width: 18px;
  min-height: 18px;
  cursor: pointer;
  box-shadow: none !important;
  position: relative;
  top: -1px;
  width: 18px;
  height: 18px;
}

.checklist-radio ul li .form-check input:checked {
  background-color: #ee1d23;
  border-color: #ee1d23;
}

.checklist-radio ul li .form-check label {
  color: #000;
  font-weight: 500;
  white-space: normal;
  height: auto;
  padding-top: 0;
  padding-bottom: 0;
}

.university-detail .pic .content-box p {
  color: #000;
  font-size: 16px;
}

.university-detail .detail ul {
  grid-template-columns: repeat(1, 1fr);
}

.about-content {
  border-radius: 10px;
  background: #f9fafb;
  border: 1px solid #cbcac9;
}

.about-content h3 {
  margin: 0 0 30px;
  font-family: "Heebo", sans-serif;
  font-weight: 600;
  font-size: 25px;
}

.about-content ul {
  gap: 18px;
  margin: 0;
}

.about-content ul li {
  display: block;
  width: 100%;
}

.about-content ul li label {
  color: #000;
  font-weight: 600;
  padding: 0;
  display: inline-block;
  height: auto;
  margin: 0 0 5px;
  box-shadow: none;
  text-align: left;
}

.about-content ul li p {
  color: #000;
}

.about-content ul .dot-list span {
  position: relative;
  display: block;
  color: #000;
  font-weight: 600;
  padding-left: 25px;
}

.about-content ul .dot-list span::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: #e6e9e8;
  position: absolute;
  left: 0;
  top: 5px;
  margin: auto;
}

.overview-content .box {
  margin: 0 0 20px;
}

.overview-content .box:last-child {
  margin: 0;
}

.overview-content .box h4 {
  font-size: 15px;
  text-transform: capitalize;
  margin: 0 0 10px;
}

.overview-content .box p:last-child {
  margin: 0;
}

.programs {
  margin: 20px 0 0;
  padding: 0 0 20px;
  border-bottom: 1px solid #cbcac9;
}

.programs .head {
  margin: 0 0 15px;
}

.programs .head h5 {
  margin: 0 0 5px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

/* .programs .detail { */
/* } */

.programs .detail .box {
  display: flex;
  color: #000;
  margin: 0 0 5px;
  width: 100%;
  gap: 15px;
}

.programs .detail .box ul {
  margin: 0;
  align-items: flex-start;
  width: 100%;
}

.programs .detail .box label {
  text-transform: capitalize;
  width: 180px;
  white-space: normal;
  padding-right: 15px;
}

.programs .detail .box:last-child {
  margin: 0;
}

.programs:last-child {
  border: none;
  padding: 0;
}

.programs .detail .box ul li span {
  position: relative;
  display: block;
  color: #000;
  font-weight: 600;
  padding-left: 25px;
  text-transform: capitalize;
}

.programs .detail .box ul li span::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: #e6e9e8;
  position: absolute;
  left: 0;
  top: 5px;
  margin: auto;
}

.programs .detail .box ul li span .close {
  text-transform: uppercase;
  color: #ee1d23;
}

.programs .detail .box ul li span .open {
  color: #4fb753;
}

.programs .detail .box ul li span p {
  display: inline-block;
}

.sticky-top {
  z-index: 9 !important;
}

.checkout label.form-control {
  padding-left: 0px !important;
  padding-right: 0px !important;
  font-size: 14px;
  font-weight: 500;
  height: 45px;
  background: #ffff !important;
  display: flex;
  align-items: center;
  color: #000;
  border: none;
  border-bottom: 2px solid #000;
  border-radius: 0;
}

@media screen and (max-width: 1365px) {
  .student-single-profile.profile-box .detail {
    border-left: 0;
    border-top: 2px solid #cecece;
    padding-left: 0;
    width: 100%;
  }
}

@media screen and (max-width: 1366px) {
  .profile-box {
    gap: 25px;
  }
}

@media screen and (max-width: 1024px) {
  .content > nav.navbar form input {
    width: 220px;
  }

  td {
    white-space: nowrap;
  }

  /* section.login-module{height: auto;} */
  section.checkout {
    flex-wrap: wrap;
  }

  section.checkout .content-box,
  section.checkout .checkout-content {
    padding: 1.5rem !important;
    width: 100%;
  }

  .content {
    /* width: calc(100% - 250px); */
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .student-single-profile .detail ul {
    grid-template-columns: repeat(1, 1fr);
  }

  .activity-filter,
  .profile-box {
    row-gap: 30px;
  }

  .count-content ul {
    flex-wrap: wrap;
  }

  .count-content ul li::before {
    width: 100%;
    height: 2px;
    right: -12px;
    bottom: -10px;
  }

  h1.main-heading {
    font-size: 18px;
  }

  .information-box ul li button {
    min-width: 110px;
  }

  .profile-box .detail ul li {
    align-items: flex-start;
  }

  .programs .detail .box {
    gap: 5px;
    flex-wrap: wrap;
  }

  .programs .detail .box ul {
    gap: 5px;
  }
}

@media screen and (max-width: 580px) {
  .content > nav.navbar form input,
  .content > nav.navbar form {
    width: 100%;
  }

  .content > nav.navbar.navbar-expand {
    flex-wrap: wrap !important;
    gap: 15px;
    border-bottom: 1px solid #e6e6e6;
  }

  .content > nav.navbar.navbar-expand .navbar-nav {
    margin-left: auto;
  }

  .profile-box {
    flex-wrap: wrap;
  }

  .profile-box .detail {
    padding-left: 0;
    border-left: 0;
    border-top: 2px solid #cecece;
  }

  .profile-box .pic .upload-img span {
    width: 110px;
    height: 110px;
  }

  .profile-box .pic {
    gap: 25px;
  }

  .information-box .inner-head button {
    margin-left: 0;
  }

  .information-box .inner-head {
    gap: 15px;
  }

  nav.navbar .navbar-nav ul li.user-profile {
    padding: 0;
  }

  nav.navbar .navbar-nav ul li.user-profile h5,
  nav.navbar .navbar-nav ul li.user-profile p {
    display: none;
  }

  nav.navbar .navbar-nav ul li.user-profile span {
    position: unset;
  }

  h1.main-heading {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .login-module .content-box {
    padding: 50px 52px 30px;
  }
}

.custom-close-btn {
  color: black; /* Set the cross color to black */
  font-weight: bold;
  position: absolute;
  top: 0;
  right: calc(-5%); 
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 8px;
  border: none;
}


