@charset "UTF-8";
/*!
* Absolute Billing System 
Design and Developed By: Fusion Informatics
*/
/*Google font*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*==========================================
Global Styling CSS
============================================*/
*html {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
}

a:hover {
  color: #51C0DF;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 15px;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.text-muted {
  color: #7E7E7E;
}

.text-dark {
  color: #000000;
  text-decoration: none;
}

.vh100 {
  height: 100vh;
}

.min-height560 {
  min-height: 450px;
}

.d-right {
  text-align: right;
}

.bg-gray {
  background-color: #f0f0f2;
}

.bg-blue {
  background-color: #51C0DF !important;
}

.badge {
  padding: 0.75rem;
  border-radius: 33px;
}

.default-badge {
  background: #F3F3F3;
  color: #000;
  font-size: 0.9rem;
  font-weight: normal;
}

.point {
  background: #F3F3F3;
  color: #000;
  font-size: 0.8rem;
  font-weight: normal;
  padding: 5px 10px;
  border-radius: 30px;
}

.vseprator {
  min-height: 50px;
  width: 1px;
  background: #CCC;
  display: block;
  position: relative;
}
.stretch-card {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-justify-content: stretch;
  justify-content: stretch;
}

.stretch-card .card {
  width: 100%;
  min-width: 100%;
}

/*=============================================
Menu navigation CSS
==============================================*/
main {
  background: #F0F0F2;
  border-radius: 20px;
  margin: 15px 0 15px 0;
  height: 100%;
}


.fixed-top,
.sb-nav-fixed #layoutSidenav #layoutSidenav_nav,
.sb-nav-fixed .sb-topnav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: 1045;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  visibility: hidden;
  background-color: #fff;
  background-clip: padding-box;
  outline: 0;
  transition: transform 0.3s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .offcanvas {
    transition: none;
  }
}

.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.offcanvas-backdrop.fade {
  opacity: 0;
}

.offcanvas-backdrop.show {
  opacity: 0.5;
}

.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
}

.offcanvas-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin-top: -0.5rem;
  margin-right: -0.5rem;
  margin-bottom: -0.5rem;
}

.offcanvas-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.offcanvas-body {
  flex-grow: 1;
  padding: 1rem 1rem;
  overflow-y: auto;
}

.offcanvas-start {
  top: 0;
  left: 0;
  width: 400px;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateX(-100%);
}

.offcanvas-end {
  top: 0;
  right: 0;
  width: 400px;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
}

.offcanvas-top {
  top: 0;
  right: 0;
  left: 0;
  height: 30vh;
  max-height: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateY(-100%);
}

.offcanvas-bottom {
  right: 0;
  left: 0;
  height: 30vh;
  max-height: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
}

.offcanvas.show {
  transform: none;
}


.clearfix::after {
  display: block;
  clear: both;
  content: "";
}


#layoutAuthentication {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#layoutAuthentication #layoutAuthentication_content {
  min-width: 0;
  flex-grow: 1;
}

#layoutAuthentication #layoutAuthentication_footer {
  min-width: 0;
}

#layoutSidenav {
  display: flex;
}

#layoutSidenav #layoutSidenav_nav {
  flex-basis: 280px;
  flex-shrink: 0;
  transition: transform 0.15s ease-in-out;
  z-index: 1038;
  transform: translateX(-280px);
}

#layoutSidenav #layoutSidenav_content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  flex-grow: 1;
  min-height: calc(100vh - 70px);
  margin-left: -280px;
}

.sb-sidenav-toggled #layoutSidenav #layoutSidenav_nav {
  transform: translateX(0);
}

.sb-sidenav-toggled #layoutSidenav #layoutSidenav_content:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 1037;
  opacity: 0.5;
  transition: opacity 0.3s ease-in-out;
}

.close-humberger {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  color: #FFF !important;
  display: none !important;
}

.large-logo {
  display: block;
}

.small-logo {
  display: none;
}

@media (min-width: 992px) {
  #layoutSidenav #layoutSidenav_nav {
    transform: translateX(0);
  }

  #layoutSidenav #layoutSidenav_content {
    margin-left: 0;
    transition: margin 0.30s ease-in-out;
    transition: 0.5s;
  }

  /*Only icon menu changes 12-09-2022*/
  .sb-sidenav-toggled #layoutSidenav #layoutSidenav_nav {
    transform: translateX(0px);
    width: 82px !important;
  }

  .sb-sidenav-toggled #layoutSidenav #layoutSidenav_nav span {
    display: none;
  }

  .sb-sidenav-toggled #layoutSidenav #layoutSidenav_nav .large-logo {
    display: none;
  }

  .sb-sidenav-toggled #layoutSidenav #layoutSidenav_nav .small-logo {
    display: block;
  }

  .sb-sidenav-toggled .sb-sidenav .sb-sidenav-menu .nav .sb-sidenav-menu-nested {
    margin-left: 3.7rem;
    z-index: 100;
    position: absolute;
    top: 120px;
    width: 230px;
  }

  .top210 {
    top: 210px !important;
  }

  .sb-sidenav-toggled .sb-sidenav-light .sb-sidenav-menu .nav-link.active {
    color: #51C0DF;
    background: #F0F0F2;
    border-radius: 100px 0px 0px 100px;
  }

  .sb-sidenav-toggled .sb-sidenav-light .sb-sidenav-menu .nav-link.active::before,
  .sb-sidenav-toggled .sb-sidenav-light .sb-sidenav-menu .nav-link.active::after {
    display: none;
  }

  .sb-sidenav-toggled #layoutSidenav #layoutSidenav_content {
    margin-left: -170px;
  }

  .sb-sidenav-toggled #layoutSidenav #layoutSidenav_content:before {
    display: none;
  }
}

.sb-nav-fixed .sb-topnav {
  z-index: 1039;
}

.sb-nav-fixed #layoutSidenav #layoutSidenav_nav {
  width: 230px;
  height: 100vh;
  z-index: 9999;
  transition: 0.5s;
}

/* .sb-nav-fixed #layoutSidenav #layoutSidenav_nav .sb-sidenav {
  padding-top: 100px;
} */
.sb-nav-fixed #layoutSidenav #layoutSidenav_nav .sb-sidenav {
  padding-top: 30px;
  text-align: center;
}

/* .sb-nav-fixed #layoutSidenav #layoutSidenav_nav .sb-sidenav .sb-sidenav-menu {
  overflow-y: auto;
} */
.sb-nav-fixed #layoutSidenav #layoutSidenav_content {
  padding-left: 230px;
  top: 70px;
}

#layoutError {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#layoutError #layoutError_content {
  min-width: 0;
  flex-grow: 1;
}

#layoutError #layoutError_footer {
  min-width: 0;
}

.img-error {
  max-width: 20rem;
}

.nav .nav-link .sb-nav-link-icon,
.sb-sidenav-menu .nav-link .sb-nav-link-icon {
  margin-right: 0.5rem;
}

.sb-topnav {
  /* padding-left: 0; */
  padding-left: 240px;
  height: 70px;
  z-index: 1039;
}

.sb-topnav .navbar-brand {
  width: 250px;
  margin: 0;
  background-color: #51c0df;
}

.sb-topnav.navbar-dark #sidebarToggle {
  color: rgba(255, 255, 255, 0.5);
}

.sb-topnav.navbar-light #sidebarToggle {
  color: #212529;
}

.sb-sidenav {
  display: flex;
  flex-direction: column;
  height: 100%;
  flex-wrap: nowrap;
}

.sb-sidenav .sb-sidenav-menu {
  flex-grow: 1;
}

.sb-sidenav .sb-sidenav-menu .nav {
  flex-direction: column;
  flex-wrap: nowrap;
}

.sb-sidenav .sb-sidenav-menu .nav .sb-sidenav-menu-heading {
  padding: 1.75rem 1rem 0.75rem;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
}

.sb-sidenav .sb-sidenav-menu .nav .nav-link {
  display: flex;
  align-items: center;
  padding-top: 0.62rem;
  padding-bottom: 0.62rem;
  position: relative;
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.sb-sidenav .sb-sidenav-menu .nav .nav-link img {
  filter: revert(1);
  /* IE5+ */
  -webkit-filter: revert(1);
  /* Webkit Nightlies & Chrome Canary */
  -webkit-transition: all .8s ease-in-out;
}

.sb-sidenav .sb-sidenav-menu .nav .nav-link .sb-nav-link-icon {
  font-size: 1.2rem;
}

.sb-sidenav .sb-sidenav-menu .nav .nav-link .sb-sidenav-collapse-arrow {
  display: inline-block;
  margin-left: auto;
  transition: transform 0.15s ease;
}

.sb-sidenav .sb-sidenav-menu .nav .nav-link.collapsed .sb-sidenav-collapse-arrow {
  transform: rotate(-90deg);
}

.sb-sidenav .sb-sidenav-menu .nav .sb-sidenav-menu-nested {
  margin-left: 0.65rem;
  flex-direction: column;
  margin-right: 2rem;
  background-color: #2C3B6B;
  border-radius: 5px 0px 5px 5px;
}

.sb-sidenav .sb-sidenav-menu .nav .sb-sidenav-menu-nested .nav-link {
  font-size: 0.9rem;
  padding: 0.75rem;
  font-weight: 400;
  margin-bottom: 0px;
  color: #C9C9C9;
}

.sb-sidenav .sb-sidenav-menu .nav .sb-sidenav-menu-nested .nav-link.activate {
  color: #FFF;
}

.sb-sidenav .sb-sidenav-menu .nav .sb-sidenav-menu-nested .nav-link::before {
  content: "\F2EA";
  font-family: "bootstrap-icons";
  margin-right: 0.375rem;
}

.sb-sidenav .sb-sidenav-footer {
  padding: 0.75rem;
  flex-shrink: 0;
}

.sb-sidenav-dark {
  background-color: #212529;
  color: rgba(255, 255, 255, 0.5);
}

.sb-sidenav-dark .sb-sidenav-menu .sb-sidenav-menu-heading {
  color: rgba(255, 255, 255, 0.25);
}

.sb-sidenav-dark .sb-sidenav-menu .nav-link {
  color: rgba(255, 255, 255, 0.5);
}

.sb-sidenav-dark .sb-sidenav-menu .nav-link .sb-nav-link-icon {
  color: rgba(255, 255, 255, 0.25);
}

.sb-sidenav-dark .sb-sidenav-menu .nav-link .sb-sidenav-collapse-arrow {
  color: rgba(255, 255, 255, 0.25);
}

.sb-sidenav-dark .sb-sidenav-menu .nav-link:hover {
  color: #fff;
}

.sb-sidenav-dark .sb-sidenav-menu .nav-link.active {
  color: #fff;
}

.sb-sidenav-dark .sb-sidenav-menu .nav-link.active .sb-nav-link-icon {
  color: #fff;
}

.sb-sidenav-dark .sb-sidenav-footer {
  background-color: #343a40;
}

.sb-sidenav-light {
  /*background-color: #51C0DF;*/
  background-color: #002981;
  color: #FFF;
}

.sb-sidenav-light .sb-sidenav-menu .sb-sidenav-menu-heading {
  color: #adb5bd;
}

.sb-sidenav-light .sb-sidenav-menu .nav-link {
  color: #FFF;
}

.sb-sidenav-light .sb-sidenav-menu .nav-link .sb-nav-link-icon {
  color: #FFFF;
}

.sb-sidenav-light .sb-sidenav-menu .nav-link .sb-sidenav-collapse-arrow {
  color: #FFF;
}

.sb-sidenav-light .sb-sidenav-menu .nav-link.active .sb-sidenav-collapse-arrow {
  color: #51C0DF;
}

.sb-sidenav-light .sb-sidenav-menu .nav-link:hover {
  color: #FFF;
}

.sb-sidenav-light .sb-sidenav-menu .nav-link.active {
  color: #00566D;
  background: #F0F0F2;
  border-radius: 100px 0px 0px 100px;
}

.sb-sidenav .sb-sidenav-menu .nav .nav-link.active img {
  filter: invert(1);
  /* IE5+ */
  -webkit-filter: invert(1);
  /* Webkit Nightlies & Chrome Canary */
  -webkit-transform: scale(1.01);
}

.sb-sidenav-light .sb-sidenav-menu .nav-link.active::before {
  content: "";
  background-image: url("../img/active-top.png");
  position: absolute;
  top: -28px;
  right: 0;
  width: 27px;
  height: 28px;
  background-repeat: no-repeat;
}

.sb-sidenav-light .sb-sidenav-menu .nav-link.active::after {
  content: "";
  background-image: url("../img/active-bottom.png");
  background-repeat: no-repeat;
  position: absolute;
  bottom: -28px;
  right: 0;
  width: 27px;
  height: 28px;
}

.sb-sidenav-light .sb-sidenav-menu .nav-link.active .sb-nav-link-icon {
  color: #00566D;
}

.sb-sidenav-light .sb-sidenav-footer {
  background-color: #51C0DF;
}

.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.navbar-expand .navbar-nav .nav-link {
  color: #000;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
  border: none;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.navbar-expand .navbar-nav .dropdown-menu .dropdown-item {
  padding: 0.50rem 1rem;
}

.navbar-expand .navbar-nav .dropdown-menu::before {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #FFF;
  content: "";
  position: absolute;
  top: -10px;
  right: 10px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.bell-button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f0f0f2;
  position: relative;
  top: 10px;
  text-align: center;
  line-height: 26px;
}

.bell-button .red-dot {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 6px;
  right: 6px;
  border-radius: 50%;
  background: #ff8686;
}

.bell-button .green-dot {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 6px;
  right: 6px;
  border-radius: 50%;
  background: #7ed781;
}


.avtar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #45525b;
  margin-right: 5px;
  object-fit: cover;
  box-shadow: #00000005 0 1px 3px, #1b1f2326 0 0 0 1px;
  top: -18px;
  position: relative;
}

.username {
  width: 130px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  top: 5px;
  padding-left: 5px;
  position: relative;
}

.username span {
  font-size: 0.8rem;
  font-weight: 300;
}

.belldropdown-toggle::after {
  display: none;
}

.dropdown-menu-notification {
  min-width: 320px;
  padding: 10px;
}

.user-logindropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  top: 25px;
  position: absolute;
  right: 0;
}

#sidebarToggle {
  color: #229ABB;
  font-size: 1.5rem;
}

.scrollbar {
  height: 200px;
  width: 96.4%;
  overflow-y: scroll;
  padding: 0.75rem 0.75rem 0 0.75rem;
}

#style-4::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.3);
  background-color: #F5F5F5;
}

#style-4::-webkit-scrollbar {
  width: 4px;
  background-color: #F5F5F5;
}

#style-4::-webkit-scrollbar-thumb {
  background-color: #000000;
  border: 2px solid #142353;
}

.navbar-brand {
  padding-top: 0.3125rem;
  padding-bottom: 1.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  text-decoration: none;
  white-space: nowrap;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0;
  margin-bottom: 1rem;
  list-style: none;
}

.breadcrumb li {
  font-size: 12px;
}

.breadcrumb li a {
  color: #229ABB;
  text-decoration: none;
}

.avtar-medium {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: #00000005 0 1px 3px, #1b1f2326 0 0 0 1px;
  position: relative;
}

.avtar-medium img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.avtar-small {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  box-shadow: #00000005 0 1px 3px, #1b1f2326 0 0 0 1px;
  position: relative;
}

.avtar-small img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.v-text-elipsis {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  min-height: 34px
}

.text-elipsis {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

/*==================================
Comman using classes
====================================*/
/*color classes*/
.bg-darkblue {
  background-color: #51C0DF;
}

.bg-light {
  background-color: #FFF !important;
}

.btn-link-white {
  color: #FFF;
}

.title-h1 {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
}

.title-h2 {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #2D2D2D;
  margin-bottom: 0;
}

.red-bg {
  background-color: #FD5B60;
}

.blue-bg {
  background-color: #51C0DF;
}

.green-bg {
  background-color: #329F5B;
}

.bg-white {
  background-color: #FFF !important;
}

.text-success {
  color: #159800 !important;
}

.text-danger {
  color: #FF1D1D !important;
}

.p-6 {
  font-size: 6px !important;
  position: relative;
  top: -3px;
}

.p-10 {
  font-size: 10px !important;
}

.p-12 {
  font-size: 12px !important;
}

.p-13 {
  font-size: 13px !important;
}

.p-16 {
  font-size: 16px !important;
}

.p-18 {
  font-size: 18px;
}

.p-22 {
  font-size: 22px !important;
}

.p-32 {
  font-size: 32px;
}

.p-500 {
  font-weight: 500;
}

.p-600 {
  font-weight: 600;
}

.wmb-3 {
  margin-bottom: 3rem;
}

.align-items-centerme {
  align-items: center;
}

.body-bg {
  background-color: #F0F0F2;
}

.bg-default-progress {
  background-color: #1A1A1A !important;
}

.ml-1 {
  margin-left: 1rem;
}

.ml-2 {
  margin-left: 2rem;
}

.ml-3 {
  margin-left: 3rem;
}

.mr-1 {
  margin-right: 1rem;
}

.mr-2 {
  margin-right: 2rem;
}

.mr-3 {
  margin-right: 3rem;
}

.mh-390 {
  min-height: 390px;
}

.w-120 {
  width: 120px;
}

.desktop-right {
  text-align: right;
}

.border-box {
  position: relative;
  padding: 15px;
  border: 1px solid #DBDBDB;
  border-radius: 3px;
}

.box48 {
  /*background: #42A7C3;*/
  background: #002981;
  border-radius: 3px;
  width: 48px;
  height: 48px;
  color: #FFF;
  text-align: center;
  line-height: 48px;
}

.iconbox {
  background: transparent;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  color: #FFF;
  text-align: center;
  line-height: 44px;
  border: 1px solid #42a7c3;
}

.image60 {
  border-radius: 3px;
  width: 60px;
  height: 60px;
}

.image60 img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 3px;
}

.image64 {
  border-radius: 3px;
  width: 64px;
  height: 64px;
}

.image64 img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 3px;
}

.image-box74 {
  width: 74px;
  height: 74px;
  margin: 15px auto;
  border-radius: 50%;
}

.image-box74 img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
}

.img32 {
  border-radius: 3px;
  width: 32px;
  height: 32px;
  display: inline-block;
  margin-right: 5px;
}

.img32 img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 3px;
}

.fullrounded {
  border-radius: 30px !important;
}

/*====================================
Card CSS
======================================*/
.FlatCard {
  background: #FFFFFF;
  border: 1px solid #EFEFEF;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
}

.card {
  background: #FFFFFF;
  border: 1px solid #E6E9EC;
  border-radius: 8px;
  position: relative;
}

.card-header {
  background: #FFFFFF;
  padding: 1rem;
  border-radius: 8px !important;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}

.dashboard-card {
  position: relative;
  margin-bottom: 1.5rem !important;
  ;
}

.dashboard-card h6 {
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 0px;
}

.graph-card-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  background-color: #FFF;
  border-bottom: 1px solid rgba(0, 0, 0, .125);
  border-radius: 8px 8px 0 0;
}

.page-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0px;
}

.chapter-card {
  background: #FFFFFF;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  border: none;
}

.chapter-card .chapter-card-banner {
  width: 100%;
  height: 155px;
  position: relative;
}

.chapter-card .chapter-card-banner img {
  width: 100%;
  height: 155px;
  object-fit: cover;
}

.cahpter-title {
  margin-bottom: 0.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.initial {
  width: 32px;
  height: 32px;
  background-color: #42A7C3;
  border-radius: 50%;
  color: #FFF;
  text-align: center;
  line-height: 32px;
}

.chapter-card .card-footer {
  background-color: #FFF;
  padding: 10px 8px;
  text-align: center;
}

.chapter-card .card-footer .btn-sm {
  margin-left: 1px;
  margin-right: 1px;
}

.delete-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #E7FAFF;
  border-radius: 3px;
  color: #42A7C3;
  padding: 3px 6px;
  font-size: 1rem;
}

.quiz-card {
  background: #FFFFFF;
  position: relative;
  border: 1px solid #DBDBDB;
  border-radius: 3px;
}

.quiz-card .card-header {
  padding: 0.75rem;
  background: #F9F9F9;
  border-radius: 2px 2px 0px 0px;
}

.quiz-card .card-header p {
  margin-bottom: 0;
}

.score-box {
  background: #FFFFFF;
  border: 1px solid #EFEFEF;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  position: relative;
}

.score-box .left-container {
  width: 85%;
  position: relative;
  float: left;
}

.score-box .right-container {
  width: 15%;
  position: relative;
  float: right;
}

.shadow-card {
  background: #FFFFFF;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.scorecard {
  background: #FFFFFF;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  cursor: pointer;
}

.scorecard:hover,
.scorecard.active {
  border-color: #51C0DF;
}

.employee-btnbox {
  position: absolute;
  top: 10px;
  right: 10px;
}

.employee-btnbox .emp-actionbtn {
  padding: 2px 4px;
  font-size: 0.9rem;
  border-radius: 3px;
  display: block;
  margin-bottom: 5px;
  position: relative;
  background: #E7FAFF;
  color: #42A7C3;
  ;
}

/*====================================
Listing Styles
======================================*/
ul.chart-indicator li {
  display: inline-block;
  font-size: 0.8rem;
  padding-right: 5px;
}

ul.chart-indicator li span {
  width: 12px;
  height: 12px;
  position: relative;
  display: inline-block;
  border-radius: 100%;
  padding-right: 5px;
}

.chart-legend li span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 5px;
}

ul.learner-features li {
  padding: 8px 0;
  list-style-type: none;
}

ul.learner-features li p {
  margin-bottom: 0;
}

ul.module-listing li {
  display: block;
  padding: 15px;
  border-bottom: 1px solid #E4E4E4;
  font-size: 13px;
}

ul.review-list li {
  display: block;
  padding: 15px 0;
}

ul.review-list li p {
  margin-bottom: 5px;
}

ul.QuestionList li {
  display: block;
  margin-bottom: 30px;
}

ul.resourcesList li {
  background: #FFFFFF;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  display: block;
  padding: 15px;
  margin-bottom: 15px;
}


ul.resourcesList li p {
  margin-bottom: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
}

ul.myLearningList li {
  background: #FFFFFF;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  display: block;
  padding: 15px;
  margin-bottom: 15px;
}
ul.myLearningList li p {
  margin-bottom: 0;
  text-overflow: ellipsis;
  /* white-space: nowrap; */
  overflow: hidden;
  width: 100%;
}
.whiteimg {
  filter: brightness(0) invert(1);
}

ul.notification-setting li {
  display: block;
  padding: 15px 0px;
  border-bottom: 1px solid #F1F1F1;
}

ul.notification-setting li:last-child {
  border-bottom: none;
}

ul.notification-setting li p {
  margin-bottom: 0px;
}

ul.chapter-imf {
  background: #f0f0f2;
}

ul.chapter-imf li {
  display: inline-block;
}

ul.chapter-imf li a {
  display: block;
  text-decoration: none;
  padding: 15px 30px;
  color: #000;
  border-bottom: 2px solid transparent;
}

ul.chapter-imf li a.active {
  border-bottom: 2px solid #1B86A4;
  color: #1B86A4;
}

ul.outcomes-list li {
  list-style-type: none;
  display: block;
  background: #FBFBFB;
  border: 1px solid #D9D9D9;
  border-radius: 5px;
  padding: 10px 5px;
  margin-bottom: 15px;
  cursor: pointer;
}

/* ul.outcomes-list li .percent{
  background: #FFFFFF;
border: 1px solid #D9D9D9;
border-radius: 5px;
padding: 5px;
min-width: 40px;
text-align: center;
} */
ul.outcomes-list li .percent-form-group {
  position: relative;
  margin-bottom: 0px;
}

ul.outcomes-list li .percent-form-group i {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 1rem;
  font-weight: 500;
  color: #90979e;
}

.percent-text {
  width: 65px;
  display: inline-block;
}

ul.accessible-chapter-list li {
  padding-bottom: 15px;
  padding-top: 15px;
  border-bottom: 1px solid #E4E4E4;
  list-style-type: none;
}

ul.accessible-chapter-list li:last-child {
  border-bottom: none
}

ul.accessible-chapter-list li ul li {
  padding-top: 0px;
  padding-bottom: 0px;
  border-bottom: none;
  list-style-type: disc;
}


.percent-col {
  flex: 0 0 auto;
  width: 10%;
}

.learnertextbox-col {
  flex: 0 0 auto;
  width: 83%;
}

.del-col {
  flex: 0 0 auto;
  width: 7%;
  text-align: center;
}

.format-lbl {
  width: 24px !important;
  display: inline-block;
}

/*====================================
Button Styles
======================================*/
.btn-60 {
  height: 60px;
}

.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.55rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.15rem;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn-default {
  background: rgba(177, 177, 177, 0.2);
  color: #2D2D2D;
}

.btn-primary {
  /*background-color: #42A7C3;
  border-color: #42A7C3;*/
  background-color: #002981;
  border-color: #002981;
  border-radius: 5px;
  color: #FFF;
}

.btn-primary.disabled,
.btn-primary:disabled {
  background-color: #002981;
  border-color: #002981;
}

.btn-primary:hover,
.btn-check:focus+.btn-primary,
.btn-primary:focus {
  background-color: #0a2764;
  border-color: #0a2764;
  /*background-color: #2d90ac;
  border-color: #2d90ac;*/
  color: #FFF;
}

.btn-group-sm>.btn,
.btn-sm {
  padding: 0.25rem 0.4rem;
  font-size: .850rem;
  font-weight: 300;
  border-radius: 0.2rem;
}

.help-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #51C0DF;
  padding: 10px 15px;
  border-radius: 60px;
  color: #FFF;
  text-decoration: none;
}

.help-btn:hover {
  color: #FFF;
}

.default-large-btn {
  position: relative;
  width: 100%;
  display: block;
  background: #F9F9F9;
  border: 1px solid #DBDBDB;
  border-radius: 2px 2px 0px 0px;
  text-align: left;
}

.default-large-btn p {
  margin-bottom: 0px;
}

.default-large-btn::before {
  content: "\F285";
  font-family: "bootstrap-icons";
  position: absolute;
  top: 20px;
  right: 15px;
  font-weight: 800;
}

.default-large-btn2 {
  position: relative;
  width: 100%;
  display: block;
  background: #F5F5F5;
  border-radius: 3px;
  text-align: left;
}

.default-large-btn2 p {
  margin-bottom: 0px;
}

.btn-dark {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-success {
  color: #fff;
  background-color: #31ac41;
  border-color: #31ac41;
}

/*====================================
Chart Styles
======================================*/
#topFiveChart {
  height: 285px;
}

/*====================================
Table Styles
======================================*/
.table {
  font-size: 0.9rem;
}

.table>thead.theade-gray {
  background-color: #F7F7F7;
}

.table>:not(caption)>*>* {
  padding: 0.5rem 1rem;
  background-color: var(--bs-table-bg);
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}

.table>thead.theade-gray th {
  font-weight: 500;
}

.table>:not(:last-child)>:last-child>* {
  border-bottom-color: #E6E9EC;
}

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #51C0DF;
  border-color: #51C0DF;
}

.page-link {
  color: #51C0DF;
}

.search {
  position: relative;
  box-shadow: 0 0 40px rgba(51, 51, 51, .1);
}

.search input {
  height: 40px;
  text-indent: 25px;
  border: 1px solid #E6E9EC;
  border-radius: 2px;
  background-color: #F6F6F6;
  font-size: 14px;
}

.search input:focus {
  box-shadow: none;
  border: 1px solid #51C0DF;
}

.search .fa-search {
  position: absolute;
  top: 10px;
  left: 16px;
  color: #838383;
  font-size: 12px;
}

.search .fa-search1 {
  position: absolute;
  top: 10px;
  left: 16px;
  color: #838383;
  font-size: 12px;
}


.search button {
  position: absolute;
  top: 5px;
  right: 5px;
  height: 50px;
  width: 110px;
  background: blue;
}

.actionbtn {
  display: inline-block;
  padding: 0.25rem;
  color: #000;
  cursor: pointer;
}
.actionbtn3{
  display: inline-block;
  padding: 0.25rem;
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.actionbtn2 {
  display: inline-block;
  padding: 0.25rem;
  color: #545454;
  font-size: 1.2rem;
  cursor: pointer;
}

.actionbtn2:hover {
  color: #1B86A4;
}

.bi-reply-fill::before {
  transform: rotateY(180deg) !important;
}

/*=====================================
Login / Registration CSS
=======================================*/
.half,
.half .container>.row {
  height: 100vh;
}

.half .contents,
.half .bg {
  width: 50%;
}

.half .bg {
  background-size: cover;
  background-position: center;
  position: relative;
  background-repeat: repeat-x;
  height: 100%;
}

.blue-panel {
  position: relative;
  height: 100%;
  border-radius: 15.0837px;
  padding: 60px 0;
}

.blue-panel-outer {
  background-image: url("../img/Login/login-background.png");
  background-size: cover;
  width: 564px;
  height: 668px;
  padding: 50px;
  border-radius: 15.0837px;
}

.blue-panel-inner {
  display: block;
  background: rgba(183, 233, 246, 0.25);
  backdrop-filter: blur(12.2555px);
  border-radius: 15.0837px;
  border: 1px solid #7dcbe1;
  height: 100%;
  background-image: url("../img/Login/login-image.svg");
  background-position: bottom center;
  background-repeat: no-repeat;
}

.blue-panel-inner h1 {
  padding: 30px;
  color: #FFF;
  font-size: 32px;
}
.LoginContainer {
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: #E8EEFC;
  padding: 15px;
  background-image: url("../img/Login/lofin-wave.png");
  background-position: bottom center;
  background-repeat: no-repeat;
}

.LoginContainer .shape11 {
  background-image: url("../img/Login/login-left-top1.png");
  width: 138px;
  height: 138px;
  position: absolute;
  top: 15px;
  left: 15px;
  background-repeat: no-repeat;
}
.LoginContainer .shape1 {
  background-image: url("../img/Login/login-left-top.png");
  width: 333px;
  height: 294px;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
}

.LoginContainer .shape2 {
  background-image: url("../img/Login/login-left-bottom.png");
  width: 222px;
  height: 280px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.LoginContainer .shape3 {
  background-image: url("../img/Login/login-right-top.png");
  width: 214px;
  height: 364px;
  position: absolute;
  top: 0;
  right: 0;
  background-repeat: no-repeat;
}

.LoginContainer .shape33 {
  background-image: url("../img/Login/login-right-top1.png");
  width: 163px;
  height: 336px;
  position: absolute;
  top: 15px;
  right: 30px;
  background-repeat: no-repeat;
}
.LoginContainer .shape4 {
  background-image: url("../img/Login/login-right-bottom.png");
  width: 794px;
  height: 170px;
  position: absolute;
  bottom: 0;
  left: 45%;
}

.zindex-1 {
  z-index: 100 !important;
}

.blue-panel {
  /* background-color: #273564; */
  position: relative;
  height: 100%;
 
}

.blue-panel::before {
  content: "";
  background-image: url("../img/corner-top.png");
  width: 269px;
  height: 180px;
  position: absolute;
  top: 0;
  right: 0;
}

.blue-panel::after {
  content: "";
  background-image: url("../img/corner-bottom.png");
  width: 261px;
  height: 113px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.panel-container {
  padding: 100px 100px;
}

.panel-container-forlogin {
  padding: 67px 100px;
}

.panel-container-right {
  padding: 50px;
  position: relative;
}

.panel-container-right::before {
  content: "";
  background-image: url("../img/Polygon.png");
  background-repeat: no-repeat;
  width: 34px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: -34px;
}

.center-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.logo-div {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 60px;
}

.logo-div h1 {
  font-weight: 600;
  font-size: 32px;
  line-height: 48px;
  color: #FFF;
  position: relative;
  margin-bottom: 0;
}

.logo-div h1::before {
  content: '';
  width: 100px;
  height: 1px;
  background-color: #3C4B7E;
  position: absolute;
  top: -10px;
  left: 60px;
}

.logo-div p {
  color: #FFF;
}

.login-container {
  border-radius: 10px;
 padding: 80px 100px;
}

.welcome-details {
  display: block;
  text-align: center;
}

.welcome-details img {
  margin-bottom: 15px;
}

.welcome-details h2 {
  font-weight: 700;
  font-size: 22px;
  line-height: 45px;
}

.welcome-details p {
  font-weight: 400;
  font-size: 16px;
}

.welcome-details h2,
.welcome-details p {
  color: #000;
  margin-bottom: 0;
}

.login-container .form-group {
  margin-bottom: 20px;
}

.login-container .form-group label {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000;
  margin-bottom: 10px;
}

.login-container .form-control {
  background: #FFFFFF;
  border: 1px solid #D9D9D9;
  border-radius: 5px;
  height: 60px;
  /* color: #51C0DF; */
  font-size: 1rem;
  font-weight: 400;
}

.login-container .form-control:focus,
.login-container .form-control:visited,
.login-container .form-control:active,
.login-container .form-control:focus-within {
  border-color: #51C0DF;
}

.forgot-pass {
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #000;
  text-decoration: none;
}

.back-login {
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #51C0DF;
  text-decoration: underline;
}

.forgot-password-container {
  padding: 50px 50px 80px;
}

.kycdocument-container {
  padding: 30px 50px 30px;
}

.company-name {
  font-weight: 500 !important;
  font-size: 16px !important;
  line-height: 24px !important;
  color: #000 !important;
}

/*====================================
Error Message
======================================*/
.error-message {
  position: relative;
  padding: 15px;
  border-left: 6px solid #FF0000;
  border-bottom: 2px solid #FF0000;
  background-color: #FFF;
  color: #FF0000;
  width: auto;
  display: inline-block;
  margin: 15px 0;
}

.error-message i {
  margin-right: 5px;
  font-size: 1rem;
}

.error-message::before {
  content: "\F231";
  font-family: "bootstrap-icons";
  position: absolute;
  top: 30%;
  left: -6px;
  color: #FF0000;
}

.sucess-message {
  position: relative;
  padding: 15px;
  border-left: 6px solid #00BC57;
  border-bottom: 2px solid #00BC57;
  background-color: #FFF;
  color: #00BC57;
  width: auto;
  display: inline-block;
  margin: 15px 0;
}

.sucess-message i {
  margin-right: 5px;
  font-size: 1rem;
}

.sucess-message::before {
  content: "\F231";
  font-family: "bootstrap-icons";
  position: absolute;
  top: 30%;
  left: -6px;
  color: #00BC57;
}

/*=====================================
Form Control CSS
=======================================*/
.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  margin-bottom: 10px;
}

.form-control:focus {
  box-shadow: none;
}

.btn-outline-secondary {
  color: #6c757d;
  border-color: transparent;
  background-color: #FFF;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
  color: #6c757d;
  border-color: #6c757d;
  background-color: #FFF;
}

.showlarge-device {
  display: none;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
  padding: 0.5rem 0.5rem !important;
  font-size: .875rem !important;
  border-radius: 0.2rem;
}

.form-group .timelbl {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #515151;
  font-size: 12px;
}

.banner-preview {
  background: #FFFFFF;
  border: 1px solid #D9D9D9;
  border-radius: 5px;
}

.img-containers {
  height: 210px;
  position: relative;
  width: 100%;
  margin: auto;
}

.img-containers .imageWrapper {
  background: #F3F3F3;
  border-radius: 4px;
  width: 70%;
  padding-bottom: 70%;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.img-containers .imageWrapper img {
  height: 105%;
  width: initial;
  max-height: 100%;
  max-width: initial;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.file-upload {
  position: relative;
  overflow: hidden;
  margin: 10px;
}

.file-upload {
  position: relative;
  overflow: hidden;
  margin: 10px 0px;
  width: 100%;
  max-width: 150px;
  text-align: center;
  color: #fff;
  font-size: 1rem;
  background: #42A7C3;
  border-color: #42A7C3;
  border-radius: 5px;
  padding: 0.75em 1em;
  display: inline;
  -ms-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.file-upload:hover {
  color: #fff;
  background: #42A7C3;
  border-color: #42A7C3;
}


.file-upload input.file-input {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
  height: 100%;
}

.file-drop-area {
  position: relative;
  align-items: center;
  width: 450px;
  min-height: 193px;
  max-width: 100%;
  padding: 25px;
  border: 1px dashed #D9D9D9;
  border-radius: 3px;
  transition: 0.2s;
  text-align: center;
}

.file-drop-area.is-active {
  background-color: rgba(255, 255, 255, 0.05);
}

.fake-btn {
  /*background-color: #1B86A4;
  border: 1px solid #1B86A4;*/
  background-color: #002981;
  border: 1px solid #002981;
  color: #FFF;
  border-radius: 3px;
  padding: 8px 15px;
  font-size: 12px;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
}

.file-msg {
  font-size: small;
  font-weight: 300;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #515151;
}

.file-input {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  opacity: 0;
}

.file-input:focus {
  outline: none;
}

.custom-form-group {
  background: #FBFBFB;
  border: 1px solid #D9D9D9;
  border-radius: 5px;
  padding: 2px 8px 2px 0px;
  margin-bottom: 15px;
}

.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -1px;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.form-select {
  display: block;
  width: 100%;
  padding: 0.75rem 0.75rem;
  font-size: 1rem;
}

/*=====================================
Account setting css
======================================*/
.account-setting-leftpanel {
  height: 100%;
  border-right: 1px solid #E4E4E4;
}

ul.account-nav li {
  display: block;
  list-style-type: none;
}

ul.account-nav li a {
  display: block;
  position: relative;
  text-decoration: none;
  color: #2D2D2D;
  padding: 10px 15px;
  border-bottom: 1px solid #EEEEEE;
  border-top: 1px solid #EEEEEE;
}

ul.account-nav li a:before {
  content: "\F285";
  font-family: "bootstrap-icons";
  position: absolute;
  top: 10px;
  right: 5px;
}

ul.account-nav li.active a {
  background-color: #51C0DF;
  color: #FFF;
  border-color: #51C0DF;
}

.account-rightpanel {
  padding: 15px 20px 15px 0px;
  position: relative;
}

.form-group .editbtn {
  position: absolute;
  top: 5px;
  right: 6px;
  background: rgba(177, 177, 177, 0.2);
  border-radius: 2px;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #2D2D2D;
  height: 28px;
  width: 50px;
}

/*===================================
Nav Tabs & Accordian
=====================================*/
.nav-tabs {
  border-bottom: none;
}

.nav-tabs .nav-link {
  color: #000;
  padding: 0.75rem 2rem;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border-color: transparent transparent transparent;
  isolation: isolate;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #1B86A4;
  background-color: transparent;
  border-bottom: 2px solid #1B86A4;
  border-top: none;
  border-left: none;
  border-right: none;
}

/*===============================
Accordian panel
=================================*/
.accordion-button::after {
  background-image: url("../img/down-angle.svg");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("../img/down-angle.svg");
  transform: rotate(270deg);
}

.accordion-item {
  background-color: #fff;
  border: none;
  margin-bottom: 15px;
  box-shadow: 0px 3.05479px 12.2191px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
}

.accordion-button:not(.collapsed) {
  color: #000F22;
  background-color: #FFF;
  box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
  font-size: 18px;
  font-weight: 500;
}

.accordion-body {
  padding: 1rem 1.25rem;
  font-size: 16px;
  font-weight: 400;
}

/*===============================
Accordian panel
=================================*/
.accordion-button::after {
  background-image: url("../img/down-angle.svg");
  /* transform: rotate(180deg); */
}

.accordion-button:not(.collapsed)::after {
  background-image: url("../img/down-angle.svg");
  transform: rotate(0deg);
}

.accordion-button {
  background: #F9F9F9;
  border-radius: 2px 2px 0px 0px;
}

.accordion-item {
  background-color: #fff;
  border: 1px solid #E4E4E4;
  margin-bottom: 15px;
  box-shadow: none;
  border-radius: 5px;
  border-radius: 2px 2px 0 0;
}

.accordion-button:not(.collapsed) {
  color: #000F22;
  background-color: #FFF;
  box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
  font-size: 16px;
  font-weight: 500;
}

.accordion-body {
  padding: 1rem 1.25rem;
  font-size: 16px;
  font-weight: 400;
}

.accordion-button p {
  width: 70%;
  margin-bottom: 0;
}

.accordion-item:last-of-type {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.accordion-item:not(:first-of-type) {
  border-top: 1px solid #E4E4E4;
}
.accordion-item-parent {
  border-bottom: 1px solid #E4E4E4!important;
}

.product-rating {
  position: relative;
}

.product-rating i {
  font-size: 12px;
  color: #FFA000;
}

/*=================================
PDF Viewer
==================================*/

#Iframe-Master-CC-and-Rs {
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
}

.responsive-wrapper {
  position: relative;
  height: 0;
  /* gets height from padding-bottom */

  /* put following styles (necessary for overflow and scrolling handling on mobile devices) inline in .responsive-wrapper around iframe because not stable in CSS:
    -webkit-overflow-scrolling: touch; overflow: auto; */
}

.responsive-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  margin: 0;
  padding: 0;
  border: none;
}

/* padding-bottom = h/w as % -- sets aspect ratio */
/* YouTube video aspect ratio */
.responsive-wrapper-wxh-572x612 {
  padding-bottom: 107%;
}

/* general styles */
/* ============== */
.set-border {
  border: 5px inset #4f4f4f;
}

.set-box-shadow {
  -webkit-box-shadow: 4px 4px 14px #4f4f4f;
  -moz-box-shadow: 4px 4px 14px #4f4f4f;
  box-shadow: 4px 4px 14px #4f4f4f;
}

.set-padding {
  padding: 40px;
}

.set-margin {
  margin: 30px;
}

.center-block-horiz {
  margin-left: auto !important;
  margin-right: auto !important;
}

/*=====================================
Footer 
=======================================*/
/* footer {
  background-color: #229ABB;
  padding: 15px 0;
} */

footer{
  background: #e8efff;
  padding: 15px 0;
  border-top: #e9ecef solid 1px;
}
/*=====================================
Media Query CSS
=======================================*/
@media (min-width: 320px) and (max-width: 767px) {
  .mob-hide{
    display: none;
  }
  .mob-mb1 {
    margin-bottom: 1rem;
  }

  .user-logindropdown-toggle {
    margin-top: 25px;
  }

  .username {
    display: none;
  }

  .bg {
    display: none;
  }

  .half .contents,
  .half .bg {
    width: 100%;
  }

  .align-items-centerme {
    align-items: flex-start;
  }

  .login-container {
    margin-top: 12px;
    padding: 50px 30px;
  }

  .desktop-right {
    text-align: left;
  }

  .LoginContainer .shape1, 
  .LoginContainer .shape2,   
  .LoginContainer .shape3,  
  .LoginContainer .shape4  {
   display: none;
  }
  
}

@media screen and (min-width: 1920px) {
  .login-container {
    padding: 230px 100px;
  }

  .logo-div h1::before {
    left: 170px;
  }

  .panel-container-forlogin {
    padding: 230px 100px;
  }

  .forgot-password-container {
    padding: 230px 100px 310px;
  }

  .kycdocument-container {
    padding: 180px 100px;
  }

  .sb-sidenav .sb-sidenav-menu .nav .nav-link {
    margin-bottom: 15px;
  }

  .form-control {
    padding: 1rem 0.75rem;
  }

  .showlarge-device {
    display: block;
  }

}

/* ====================================================== */
ul.footermenu {
  margin: auto;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #41b3d3;

}

ul.footermenu li {
  display: inline-block;
}

ul.footermenu li a {
  display: block;
  /* color: #FFF; */
  color: #000000;
  padding: 0 15px;
  text-decoration: none;
  font-size: 13px;
}

footer p {
  font-size: 13px;
  /* color: #FFF; */
  margin-bottom: 0;
}

.web-footer {
  background-color: transparent;
}

.web-footer ul.footermenu {
  margin: auto;
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.web-footer ul.footermenu li {
  display: inline-block;
}

.web-footer ul.footermenu li a {
  display: block;
  color: #1d1d1d;
  padding: 0 10px;
  text-decoration: none;
  font-size: 13px;
}

.web-footer p {
  font-size: 13px;
  color: #1d1d1d;
  margin-bottom: 0;
}

/*=============================
 Progress bar
 ==============================*/
.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #51C0DF;
  transition: width .6s ease;
}

.progress-circle {
  background: none;
  margin: 0 auto;
  box-shadow: none;
  position: relative;
}

.progress-cricle94 {
  width: 94px;
  height: 94px;
  line-height: 94px;
}

.progress-circle:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 12px solid #ebf2f3;
  position: absolute;
  top: 0;
  left: 0;
}

.progress-circle>span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}

.progress-circle .progress-circle-left {
  left: 0;
}

.progress-circle .progress-circle-bar {
  width: 100%;
  height: 100%;
  background: none;
  border-width: 12px;
  border-style: solid;
  position: absolute;
  top: 0;
}

.progress-circle .progress-circle-left .progress-circle-bar {
  left: 100%;
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
  border-left: 0;
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.progress-circle .progress-circle-right {
  right: 0;
}

.progress-circle .progress-circle-right .progress-circle-bar {
  left: -100%;
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px;
  border-right: 0;
  -webkit-transform-origin: center right;
  transform-origin: center right;
  animation: loading-1 1.8s linear forwards;
}

.progress-circle .progress-circle-value {
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background: #ffffff;
  font-size: 24px;
  color: #0dcaf0;
  line-height: 135px;
  text-align: center;
  position: absolute;
  top: 5%;
  left: 5%;
}

.progress-circle.blue .progress-circle-bar {
  border-color: #0dcaf0;
}

.progress-circle.blue .progress-circle-left .progress-circle-bar {
  animation: loading-2 1.5s linear forwards 1.8s;
}

@keyframes loading-1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

@keyframes loading-2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(144deg);
    transform: rotate(144deg);
  }
}

@keyframes loading-3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

@keyframes loading-4 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(36deg);
    transform: rotate(36deg);
  }
}

@keyframes loading-5 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(126deg);
    transform: rotate(126deg);
  }
}

@media only screen and (max-width: 990px) {
  .progress-circle {
    margin-bottom: 20px;
  }
}

.chart {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

canvas {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.borderright {
  border-right: 1px solid #F0F0F0;
}

/* .chart span {
  color:#555;
  display:block;
  line-height:100px;
  text-align:center;
  width:100px;
  font-size:40px;
  font-weight:300;
  margin-left:5px;
} */
.chart span {
  display: none;
}

.chart i {
  color: #B7B7B7;
  display: block;
  line-height: 100px;
  text-align: center;
  width: 90px;
  font-size: 30px;
  font-weight: 300;
  margin-left: 5px;
}


/*Add question css*/
.option-col {
  width: 8%;
}

.option-text {
  width: 74%;
}

.option-check {
  width: 18%;
}

/*=====================================
Media Query CSS
=======================================*/
@media (min-width: 320px) and (max-width: 767px) {
  #layoutSidenav #layoutSidenav_content {
    padding-left: 280px !important
  }

  .sb-topnav {
    padding-left: 15px;
  }

  .table>thead.theade-gray th {
    font-weight: 500;
    font-size: 0.8rem;
  }

  .mob-mb1 {
    margin-bottom: 1rem;
  }

  .panel-container-right {
    padding: 0;
    position: relative;
  }

  .mob-hide {
    display: none;
  }

  .user-logindropdown-toggle {
    margin-top: 25px;
  }

  .username {
    display: none;
  }

  .bg {
    display: none;
  }

  .half .contents,
  .half .bg {
    width: 100%;
  }

  .align-items-centerme {
    align-items: flex-start;
  }

  .login-container {
    margin-top: 12px;
    padding: 30px 0px;
  }

  .desktop-right {
    text-align: left;
  }

  .account-rightpanel {
    padding: 15px;
  }

  .form-group .editbtn {
    position: absolute;
    top: 43px;
  }

  ul.footermenu li a {
    padding: 0 5px;
  }

  .welcome-details h2 {
    font-size: 18px;
    line-height: 26px;
  }

  .sb-topnav .navbar-brand {
    width: 100px;
    padding: 9px 15px 8px 15px;
  }

  .d-right {
    text-align: left;
  }

  .nav-tabs .nav-link {
    color: #000;
    padding: 0.75rem 0.75rem;
  }

  ul.chapter-imf li a {
    padding: 15px 25px;
  }

  .custom-form-group {
    padding: 2px 8px;
  }

  .option-col {
    width: 100%;
    margin-bottom: 6px;
  }

  .option-text {
    width: 100%;
    margin-bottom: 6px;
  }

  .option-check {
    width: 100%;
    margin-bottom: 6px;
  }

  .percent-col {
    width: 35%;
    margin-bottom: 15px;
  }

  .learnertextbox-col {
    width: 100%;
    margin-bottom: 15px;
  }

  .del-col {
    width: 10%;
    margin-bottom: 15px;
  }

  .dropdown-menu-notification {
    left: -188px !important;
  }

  .img-containers {
    height: 280px;
    text-align: center;
  }

  .mob-center {
    text-align: center;
  }

  .score-box .left-container {
    width: 100%;
  }

  .score-box .right-container {
    width: 100%;
  }

  .sb-sidenav-toggled .close-humberger {
    display: block !important;
  }

}

/*Large Device CSS*/
@media screen and (min-width: 1920px) {
  .login-container {
    padding: 230px 100px;
  }

  .logo-div h1::before {
    left: 170px;
  }

  .blue-panel-outer {
    background-image: url(../img/login-background.png);
    background-size: cover;
    width: 664px;
    height: 856px;
    padding: 50px;
    border-radius: 15.0837px;
  }

  .blue-panel-inner h1 {
    font-size: 42px;
  }

  .panel-container-forlogin {
    padding: 230px 100px;
  }

  .forgot-password-container {
    padding: 230px 100px 310px;
  }

  .kycdocument-container {
    padding: 180px 100px;
  }

  .sb-sidenav .sb-sidenav-menu .nav .nav-link {
    margin-bottom: 15px;
  }

  .form-control {
    padding: 1rem 0.75rem;
  }

  .showlarge-device {
    display: block;
  }

  .scrollbar {
    height: 400px;
  }

  .chapter-card .chapter-card-banner {
    width: 100%;
    height: 250px;
    position: relative;
  }

  .chapter-card .chapter-card-banner img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }

  .chapter-card .card-footer {
    display: flex;
    justify-content: space-between !important;
  }

  .chapter-card .card-footer .btn-group-sm>.btn,
  .btn-sm {
    padding: 0.75rem 1.2rem;
    font-size: 1rem;
    font-weight: 300;
    border-radius: 0.2rem;
  }

  .img-containers {
    height: 300px;
  }

}

@media (min-width: 768px) and (max-width: 1024px) {
  .sb-nav-fixed #layoutSidenav #layoutSidenav_content {
    padding-left: 280px;
    top: 70px;
  }

  .sb-topnav {
    padding-left: 15px;
  }

  .tab-hide {
    display: none;
  }

  .t-right {
    text-align: right;
  }

  .mob-mb1 {
    margin-bottom: 1rem;
  }

  .percent-col {
    width: 14%;
  }

  .learnertextbox-col {
    width: 76%;
  }

  .del-col {
    width: 10%;
  }

  /*Add question css*/
  .option-col {
    width: 12%;
  }

  .option-text {
    width: 60%;
  }

  .option-check {
    width: 28%;
  }

  .sb-sidenav-toggled .close-humberger {
    display: block !important;
  }

}

.globalFile {
  display: none;
}

.btn-primary .spinner-border {
  color: #fff;
}

/*=====================================
Podcast CSS Style
=======================================*/
.text-seargreen {
  color: #00566D;
}

.text-ellipsis {
  text-overflow: ellipsis;
  /* enables ellipsis */
  white-space: nowrap;
  /* keeps the text in a single line */
  overflow: hidden;
  /* keeps the element from overflowing its parent */
}

.multiline-ellipsis {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  /* start showing ellipsis when 3rd line is reached */
  white-space: pre-wrap;
  /* let the text wrap preserving spaces */
}

.page-link {
  position: relative;
  display: block;
  color: #545454;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #545454;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  border-radius: 100%;
  margin-left: 8px;
  margin-right: 8px;
  width: 32px;
  height: 32px;
  text-align: center;
  padding: 0;
  line-height: 32px;
}

.page-item:first-child .page-link {
  border-top-left-radius: 100%;
  border-bottom-left-radius: 100%;
}

.page-item:last-child .page-link {
  border-top-right-radius: 100%;
  border-bottom-right-radius: 100%;
}

.page-link:hover {
  z-index: 2;
  color: #FFF;
  background-color: #51C0DF;
  border-color: #51C0DF;
}

ul.dotlist li {
  display: inline-block;
  color: #1B86A4;
  position: relative;
  padding-right: 15px;
}

ul.dotlist li:before {
  content: "\F309";
  font-family: bootstrap-icons;
  display: block;
  position: absolute;
  right: 0;
  right: -8px;
  top: -7px;
  font-size: 25px;
}

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

.p-14 {
  font-size: 14px;
}

ul.podcastEpisodeList li {
  display: block;
  border-bottom: 1px solid #e4e4e4;
  padding: 15px 0;
}

ul.podcastEpisodeList li ul.dotlist li {
  display: inline-block;
  border-bottom: none;
  padding: 0 15px 0 0;
}

.podact-avtar {
  /* width: 90px;
  height: 105px; */
  width: 110px;
  height: 125px;
  border-radius: 10px;
}

.podact-avtar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

audio {
  width: 100%;
  border-radius: 90px;
}

audio::-webkit-media-controls-panel {
  background-color: #85dcf5;
}

.podcast-author {
  text-decoration: none;
  color: #00566D;
}

video {
  width: 100%;
  border-radius: 10px;
  position: relative;
}

.video-wrapper {
  width: 100%;
  position: relative;
}

.video-wrapper .livebtn {
  position: absolute;
  bottom: 43px;
  left: 160px;
  color: #FFF;
  z-index: 9999;
}

.video-wrapper .livebtn::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 100%;
  position: absolute;
  left: -15px;
  top: 6px;
  background: red;
}

.upcoming-video-wrapper {
  width: 100%;
  position: relative;
}

.upcoming-video-wrapper {
  width: 100%;
  position: relative;
}

.upcoming-video-wrapper img {
  width: 100%;
  height: 534px;
  border-radius: 10px;
}

.upcoming-video-wrapper .stream-time {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: rgb(233 233 233 / 20%);
  color: #FFF;
  padding: 30px 15px;
  width: 230px;
  border-radius: 10px;
}

.upcoming-video-wrapper .stream-time img {
  width: 32px;
  height: 39px;
}
/*=========================================
FAQ Style
==========================================*/
ul.faqnav  li{
  display: block;
}
ul.faqnav li a{
  display: block;
  padding: 15px;
  text-decoration: none;
}
ul.faqnav li a p{
 color: #000;
 font-weight: 600;
 margin-bottom: 0px;
}
ul.faqnav li a span{
  color: #6c757d;
  font-size: 12px;
 }
 ul.faqnav li a:hover,  
 ul.faqnav li a:hover p,  
 ul.faqnav li a:hover span, 
 ul.faqnav li a.active,  
 ul.faqnav li a.active p,  
 ul.faqnav li a.active span{
  background-color: #51c0df;
  color: #FFF;
 }
  
 ul.faqnav li:first-child a.active{
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
 }
 .accordion-item{
  border: none;
 }
 .accordion-button{
  background-color: transparent;
 }
 .accordion-button::after {
 content: "+";
 background-image: none;
}
 .accordion-button:not(.collapsed)::after{
  content: "-";
  background-image: none;
  transform: rotate(0);
 }
.ml122{
  margin-left: 130px;
}


/*=====================================
Media Query CSS
=======================================*/
@media (min-width: 320px) and (max-width: 767px) {
  #layoutSidenav #layoutSidenav_content {
    padding-left: 292px !important;
  }

  .sb-topnav {
    padding-left: 15px;
  }

  .table>thead.theade-gray th {
    font-weight: 500;
    font-size: 0.8rem;
  }

  .mob-mb1 {
    margin-bottom: 1rem;
  }

  .panel-container-right {
    padding: 0;
    position: relative;
  }

  .mob-hide {
    display: none;
  }

  .user-logindropdown-toggle {
    margin-top: 25px;
  }

  .username {
    display: none;
  }

  .bg {
    display: none;
  }

  .half .contents,
  .half .bg {
    width: 100%;
  }

  .align-items-centerme {
    align-items: flex-start;
  }

  .login-container {
    margin-top: 12px;
    padding: 50px 30px;
  }

  .desktop-right {
    text-align: left;
  }

  .account-rightpanel {
    padding: 15px;
  }

  .form-group .editbtn {
    position: absolute;
    top: 43px;
  }

  ul.footermenu li a {
    padding: 0 5px;
  }

  .welcome-details h2 {
    font-size: 19px;
  }

  .sb-topnav .navbar-brand {
    width: 100px;
    padding: 9px 15px 8px 15px;
  }

  .d-right {
    text-align: left;
  }

  .nav-tabs .nav-link {
    color: #000;
    padding: 0.75rem 0.75rem;
  }

  ul.chapter-imf li a {
    padding: 15px 25px;
  }

  .custom-form-group {
    padding: 2px 8px;
  }

  .option-col {
    width: 100%;
    margin-bottom: 6px;
  }

  .option-text {
    width: 100%;
    margin-bottom: 6px;
  }

  .option-check {
    width: 100%;
    margin-bottom: 6px;
  }
}

@media screen and (min-width: 1920px) {
  .login-container {
    padding: 230px 100px;
  }

  .logo-div h1::before {
    left: 170px;
  }

  .blue-panel-outer {
    background-image: url(../img/login-background.png);
    background-size: cover;
    width: 664px;
    height: 856px;
    padding: 50px;
    border-radius: 15.0837px;
  }

  .blue-panel-inner h1 {
    font-size: 42px;
  }

  .panel-container-forlogin {
    padding: 230px 100px;
  }

  .forgot-password-container {
    padding: 230px 100px 310px;
  }

  .kycdocument-container {
    padding: 180px 100px;
  }

  .sb-sidenav .sb-sidenav-menu .nav .nav-link {
    margin-bottom: 15px;
  }

  .form-control {
    padding: 1rem 0.75rem;
  }

  .showlarge-device {
    display: block;
  }

  .scrollbar {
    height: 400px;
  }

}

@media (min-width: 768px) and (max-width: 1024px) {
  .sb-nav-fixed #layoutSidenav #layoutSidenav_content {
    padding-left: 280px;
    top: 70px;
  }

  .sb-topnav {
    padding-left: 15px;
  }

  .tab-hide {
    display: none;
  }

  .t-right {
    text-align: right;
  }
}

.cp-right {
    color: #1d1d1d;
    text-decoration: none;
    font-size: 13px;
}
.cp-right:hover {
  color: #1d1d1d;
} 

#paraMore {display: none;}

.form-group .icon-show {
  position: absolute;
  top: 52px;
  right: 5px;
  font-size: 1.3rem;
  color: #A1A6AAed;
}
.btnAddHost{
  /*padding-top: 32px;*/
  display:block;
}
.btnAddHost button{
  float:right;
  padding:2px 10px;
}
.hostImg{
  height: 200px !important;
}

ul.review-list li {
  display: block;
  padding: 15px 0;
}

ul.review-list li p {
  margin-bottom: 5px;
}

/*======================================
Live streming chat
========================================*/
.LiveStreamChat {
  position: relative;
  border: 1px solid #e4e4e4;
  border-radius: 10px;
}

.LiveStreamChat .card-header {
  background: #FFF;
  border-radius: 10px 10px 0px 0px !important;
  border-bottom: 1px solid #e4e4e4;
}

.LiveStreamChat .card-footer {
  background: #FFF;
  border-radius: 0px 0px 10px 10px !important;
  border-top: 1px solid #e4e4e4;
}

.chat-select {
  padding: 0.375rem 2.5rem 0.375rem 0.75rem !important;
  background-color: transparent !important;
  width: auto !important;
}

.btn-chat-dropdown {
  background: transparent;
  padding-top: 0px;
  padding-bottom: 0px;
  color: #b1b1b1;
}

.btn-chat-dropdown::after {
  display: none;
}

.LiveStreamChat .chat-box {
  margin-bottom: 15px;
}

.LiveStreamChat .chatUser {
  -webkit-user-drag: none;
  height: 24px;
  aspect-ratio: auto 24 / 24;
  width: 24px;
  border-radius: 100%;
}

.LiveStreamChat .chatUser img {
  height: 24px;
  aspect-ratio: auto 24 / 24;
  width: 24px;
  border-radius: 100%;
}

.LiveStreamChat .chatUserName {
  margin-bottom: 0.5rem;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.LiveStreamChat .chatUserName small {
  color: #aeaeae;
}

.chatscrollbar {
  min-height: 465px;
  max-height: 465px;
  width: 100%;
  overflow-y: scroll;
  padding: 0.75rem 0.75rem 0 0.75rem;
}

.chatsend-btn {
  font-size: 1.5rem;
  transform: rotate(40deg);
  padding: 0px 10px
}

.chat-textcontrol {
  padding: 0 0 5px 0;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  border-radius: 0px;
}

.pl47 {
  padding-left: 47px;
}
.cps-5 {
  padding-left: 3rem!important;
}
@media (min-width: 320px) and (max-width: 411px) {
  .cps-5 {
    padding-left: 3rem!important;
}
}
@media (min-width: 412px) and (max-width: 558px) {
  .cps-5 {
    padding-left: 3.5rem!important;
}
}
@media (min-width: 536px) and (max-width: 560px) {
  .cps-5 {
    padding-left: 5rem!important;
}
.pl47 {
  padding-left: 80px;
}
.mbo-pl32 {
  padding-left: 65px !important;
}
}