@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
    --brand-color: #000;
    --brand-color-hover: #26b7e5;
    --black:#000;
    --white:#fff;
    --gtu-blue:#00bcd4;
    --gtu-green:#07f29b;
}
html,
body {
    font-family: 'Poppins', sans-serif !important;
    height: 100%;
}
a {
    color: var(--black);
    text-decoration: none;
}
img {
    max-width: 100%;
}
.hide {
    display: none;
}
.show {
    display: block !important;
}
.c-navbar + nav.navbar.navbar-default {
    background-color: var(--white);
    height: 80px;
}
.wrap {
    min-height: 100%;
    height: auto;
    margin: 0 auto -60px;
}

.wrap > .container {
    padding: 70px 15px 20px;
}

.footer {
    height: 60px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.jumbotron {
    text-align: center;
    background-color: transparent;
}

.jumbotron .btn {
    font-size: 21px;
    padding: 14px 24px;
}

.not-set {
    color: #c55;
    font-style: italic;
}

/* add sorting icons to gridview sort links */
a.asc:after, a.desc:after {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    padding-left: 5px;
}

a.asc:after {
    content: /*"\e113"*/ "\e151";
}

a.desc:after {
    content: /*"\e114"*/ "\e152";
}

.sort-numerical a.asc:after {
    content: "\e153";
}

.sort-numerical a.desc:after {
    content: "\e154";
}

.sort-ordinal a.asc:after {
    content: "\e155";
}

.sort-ordinal a.desc:after {
    content: "\e156";
}

.grid-view td {
    white-space: nowrap;
}

.grid-view .filters input,
.grid-view .filters select {
    min-width: 50px;
}

.hint-block {
    display: block;
    margin-top: 5px;
    color: #999;
}

.error-summary {
    color: #a94442;
    background: #fdf7f7;
    border-left: 3px solid #eed3d7;
    padding: 10px 20px;
    margin: 0 0 15px 0;
}

/* align the logout "link" (button in form) of the navbar */
.nav > li > form {
    padding: 8px;
}

@media(max-width:768px) {
	.nav li > form {
	    padding: 3px;
	}
}

.nav > li > form > button:hover {
    text-decoration: none;
}
.nav-stacked > li {
    line-height: 2.2;
    border-radius: 30px 0 0 30px;
    margin-bottom: 10px;
}

li.coming-soon a{
    cursor: default;
}
li.coming-soon:after {
    opacity: 0;
    content: 'coming soon';
    display: inline-block;
    position: absolute;
    top: -13px;
    right: 32px;
    color: #ffffff;
    background-color: #1c1c1c;
    text-transform: capitalize;
    font-size: 12px;
    padding: 3px 15px;
    border-radius: 15px;
    line-height: 1.5;
    font-weight: 600;
    transition: all .2s;
}

li.coming-soon:before {
    opacity: 0;
    content: '';
    height: 1px;
    width: 1px;
    display: inline-block;
    border: 10px solid transparent;
    border-top-color: #1c1c1c;
    position: absolute;
    top: 7px;
    right: 79px;
    transition: all .2s;
}
li.coming-soon:hover:before,
li.coming-soon:hover:after {
    opacity: 1;
}
.c-navbar.sidebar li.active {
    background-color: #fff;
    box-shadow: 0px 3px 16px 0px #00000029;
}
.c-navbar.sidebar li a {
    font-weight: 500;
    color: #656468;
    border-bottom: 0;
    font-size: 16px;
    padding: 7px 0 7px 10px;
    line-height: 1;
}
.nav.kv-sidenav > li:hover, .nav.kv-sidenav > li:focus {
    background-color: #fff;
}
.nav.kv-sidenav > li > a:hover, .nav.kv-sidenav > li > a:focus {
    color: #49484a;
    background-color: transparent;
}
.main-menu .nav-pills > li.active > a, .main-menu .nav-pills > li.active > a:hover, .main-menu .nav-pills > li.active > a:focus{
    color: #2AC1F0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(0deg, #2AC1F0 0%, #08F29B 100%);
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6
{
    margin-top: 0px;
    line-height: 1em;
}
.gtu-logo {
    color: #fff;
    background-color: #e9f9fd;
    border: none;
    position: fixed;
    top: 0;
    width: 250px;
    padding: 15px;
    z-index: 999;
}
.main-menu {
    background-color: #e9f9fd;
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 999;
    width: 250px;
}
.navbar-fixed-top {
    z-index: 998;
}
.main-menu .main-logo {
    text-align: center;
    display: block;
    padding: 20px 0;
}
.main-menu .main-logo img {
    height: 55px;
}
.menu-scroll {
    overflow-y: auto;
    height: 100%;
    padding-bottom: 100px;
}
/* width */
.menu-scroll::-webkit-scrollbar {
  width: 5px;
  border-radius: 10px;
}

/* Track */
.menu-scroll::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
.menu-scroll::-webkit-scrollbar-thumb {
  background: #ccc; 
  transition: all .2s;
}

/* Handle on hover */
.menu-scroll::-webkit-scrollbar-thumb:hover {
  background: #ddd; 
}


/* width */
.custom-scroll::-webkit-scrollbar {
  width: 5px;
  border-radius: 10px;
}

/* Track */
.custom-scroll::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
.custom-scroll::-webkit-scrollbar-thumb {
  background: #ccc; 
  transition: all .2s;
}

/* Handle on hover */
.custom-scroll::-webkit-scrollbar-thumb:hover {
  background: #ddd; 
}
.c-navbar {
    color: #fff;
    background-color: #e9f9fd;
    border: none;
    overflow-y: auto;
    border-radius: 0px;
    padding: 15px 0 15px 30px;
    border-bottom: 0;
    margin: 0;
    box-shadow: none;
}
.main-menu .c-navbar span.glyphicon {
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 5px;
    background-image: url(../images/school-menu-ic.svg);
    background-repeat: no-repeat;
    background-size: 100px;
}
.main-menu .c-navbar span.glyphicon:before {
    display: none;
}
.main-menu .c-navbar li:first-child span.glyphicon {
    background-position: 3px 5px;
}
.main-menu .c-navbar li:nth-child(2) span.glyphicon {
    background-position: 3px -50px;
}
.main-menu .c-navbar li:nth-child(3) span.glyphicon {
    background-position: 3px -110px;
}
.main-menu .c-navbar li:nth-child(4) span.glyphicon {
    background-position: 3px -168px;
}
.main-menu .c-navbar li:nth-child(5) span.glyphicon {
    background-position: 3px -226px;
}
.main-menu .c-navbar li:nth-child(6) span.glyphicon {
    background-position: 3px -279px;
}
.main-menu .c-navbar li.active:first-child span.glyphicon {
    background-position: -65px 5px;
}
.main-menu .c-navbar li.active:nth-child(2) span.glyphicon {
    background-position: -65px -50px;
}
.main-menu .c-navbar li.active:nth-child(3) span.glyphicon {
    background-position: -65px -110px;
}
.main-menu .c-navbar li.active:nth-child(4) span.glyphicon {
    background-position: -65px -168px;
}
.main-menu .c-navbar li.active:nth-child(5) span.glyphicon {
    background-position: -65px -226px;
}
.main-menu .c-navbar li.active:nth-child(6) span.glyphicon {
    background-position: -65px -279px;
}




.main-menu .c-navbar li.dashboard span.glyphicon {
    background-position: 3px 5px;
}
.main-menu .c-navbar li.leads span.glyphicon {
    background-position: 3px -50px;
}
.main-menu .c-navbar li.schools span.glyphicon {
    background-position: 3px -110px;
}
.main-menu .c-navbar li.account span.glyphicon {
    background-position: 3px -168px;
}
.main-menu .c-navbar li.webinar span.glyphicon {
    background-position: 3px -226px;
}
.main-menu .c-navbar li.promote-school span.glyphicon {
    background-position: 3px -279px;
}
.main-menu .c-navbar li.staff span.glyphicon {
    background-position: 3px -332px;
}
.main-menu .c-navbar li.active.dashboard span.glyphicon {
    background-position: -65px 5px;
}
.main-menu .c-navbar li.active.leads span.glyphicon {
    background-position: -65px -50px;
}
.main-menu .c-navbar li.active.schools span.glyphicon {
    background-position: -65px -110px;
}
.main-menu .c-navbar li.active.account span.glyphicon {
    background-position: -65px -168px;
}
.main-menu .c-navbar li.active.webinar span.glyphicon {
    background-position: -65px -226px;
}
.main-menu .c-navbar li.active.promote-school span.glyphicon {
    background-position: -65px -279px;
}
.main-menu .c-navbar li.active.staff span.glyphicon {
    background-position: -65px -332px;
}
.upgrade-card {
    padding: 15px 70px 15px 15px;
    margin: 20px 10px 20px;
    border-radius: 25px;
    background-color: #fff;
    line-height: 1.2;
    box-shadow: 0px 3px 16px 0px #00000029;
    position: relative;
}
.upgrade-card:after {
    content: '';
    display: inline-block;
    width: 100px;
    height: 180px;
    background-image: url(../images/upgrade.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: -30px;
    right: 15px;
}
.upgrade-card h3 {
    color: #057899;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
}
.upgrade-card p {
    color: #697382;
    font-size: 13px;
    line-height: 1.2;
}
.upgrade-card a {
    color: #057899;
    font-weight: 500;
    font-size: 13px;
}
.powered-by {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid #c4c4c4;
    background-color: #e9f9fd;
}
.powered-by label {
    font-weight: 400;
    margin-right: 10px;
}
.powered-by img {
    width: 110px;
}
.content-container {
    margin-left: 250px;
    background-color: #f5f5f5;
    padding: 106px 20px 20px 20px;
}
.head-grid {
    margin-left: 250px;
}
.page-info {
    margin: 19px 0;
}
.head-grid h2.page-title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin: 0;
}
.breadcrumb {
    color: #667085;
    padding: 8px 0 0;
    margin-bottom: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.breadcrumb a {
    color: #303972;
    font-weight: 500;
}
.breadcrumb > .active {
    color: #667085;    
}
.breadcrumb > li + li:before {
    padding: 0 5px;
    color: #667085;
    content: ">";
}
.search-block {
    position: relative;
}
.search-block:before {
    content: '';
    height: 15px;
    width: 15px;
    display: inline-block;
    position: absolute;
    top: 13px;
    left: 13px;
    z-index: 9999;
    background-image: url(../images/search-ic.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.search-block input.form-control {
    padding: 6px 12px 6px 40px;
    border-radius: 30px;
    height: 40px;
    background-color: #E1E1FF;
    border: 0;
    margin: 20px 0;
}
.search-block input.form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #121212;
  opacity: 1; /* Firefox */
}
.search-block input.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #121212;
}
.search-block input.form-control::-ms-input-placeholder { /* Microsoft Edge */
  color: #121212;
}
.notification-account {
    text-align: right;
}
.profile-toggle {
    display: inline-block;
    padding: 18px 0;
    vertical-align: middle;
}
span.profile-pic {
    display: inline-block;
    height: 50px;
    width: 50px;
    text-align: center;
    background-color: #07f29b;
    border-radius: 50%;
    padding: 10px;
    font-size: 23px;
    float: left;
}
a.profile-dd {
    padding: 0 !important;
    color: #303972 !important;
    font-size: 18px;
    font-weight: 600;
    float: left;
    margin-left: 20px;
    text-decoration: none;
}
.profile-dd span.role {
    text-align: left;
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #A098AE;
}
.common-page-header {
    margin-bottom: 30px;
}
.page-title {
    font-size: 35px;
    font-weight: 800;
    margin-bottom: 10px;
    margin-top: 10px;
}
p.intro-line {
    font-size: 18px;
}
.footer-container
{
    margin-left: 250px;
}

.navbar-container .container
{
    width: 100%;
}

.tab-content
{
    padding: 20px 15px;
}

.screen-title
{
    background-color: #FFF;
    padding: 10px;
    font-size: 28px;
    border-bottom: 1px solid #E0E0E0;
}



#subscribe
{
    height: 600px;
}

.OT_subscriber, .OT_publisher
{
    height: 100% !important;
    width: 100% !important;
}

#publish
{
    height: 120px;
    width: 150px;
    position: absolute;
    bottom: 20px;
    right: 35px;
    border: 1px solid;
}

/** chat css*/

.panel.panel-default.panel-custom.panel-chat {
    background-color: #f8f8f8;
}
.chat-unit {
    border-bottom: 1px solid #d8d8d8;
    padding-bottom: 5px;
    margin-bottom: 5px;
}
.chat-unit:last-child {
    border-bottom: 0;
}
.chat-unit .chat-img {
    height: 30px;
    width: 30px;
    overflow: hidden;
    border-radius: 50%;
    display: inline-block;
}
.chat-unit .chat-name {
    display: inline-block;
    font-size: 13px;
    padding: 5px 10px;
    vertical-align: top;
}
.chat-status {
    float: right;
    padding: 5px 0px;
}
.chat-unit span.online {
    background-color: #3ad9c2;
    height: 10px;
    width: 10px;
    display: inline-block;
    border-radius: 50%;
}

.chat-img img
{
    height: 30px;
    width: 30px;
}

.card {
    position: relative;
    box-shadow: 4px 4px 25px -4px rgba(0, 147, 189, 0.19);
    background-color: #fff;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
}
.card h2.card-title {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #00000085;
}
.card .feature-list {
    padding-left: 20px;
    line-height: 1.5;
    font-size: 18px;
}
.card .feature-list li {
    padding: 10px 0;
}
.card.db-features {
    position: relative;
    padding: 30px;
    color: #fff;
    background-color: #057899;
    background-image: url(../images/features-bg.png);
    background-repeat: no-repeat;
    background-size: 240px;
    background-position: 97% 70%;
    overflow: hidden !important;
}
.card.db-features:after {
    content: '';
    display: inline-block;
    width: 470px;
    aspect-ratio: 1 / 1;
    background-color: #ffffff2e;
    position: absolute;
    border-radius: 50%;
    right: -180px;
    bottom: -110px;
/*    z-index: 999;*/
}
.card.card-lg {
    overflow-y: auto;
    overflow-x: hidden;
}
.card.db-features ul {
    list-style-type: none;
    padding: 0;
} 
.card.db-features li {
    padding-left: 50px;
    margin-bottom: 40px;
    position: relative;
    width: 33%;
    float: left;
    display: inline-block;
}
.card.db-features li:nth-child(7),
.card.db-features li:nth-child(8),
.card.db-features li:last-child {
    margin-bottom: 0;
}
.card.db-features li:before {
    content: '';
    height: 40px;
    width: 40px;
    border: 1px solid #ffffff4d;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/features-ic.png);
    background-repeat: no-repeat;
    background-size: 18px;
}
.card.db-features li:first-child:before {
    background-position: 12px 10px;
    background-size: 15px;
}
.card.db-features li:nth-child(2):before {
    background-position: 11px -46px;
}
.card.db-features li:nth-child(3):before {
    background-position: 11px -97px;
}
.card.db-features li:nth-child(4):before {
    background-position: 11px -147px;
}
.card.db-features li:nth-child(5):before {
    background-position: 11px -196px;
}
.card.db-features li:nth-child(6):before {
    background-position: 11px -250px;
}
.card.db-features li:nth-child(7):before {
    background-position: 11px -302px;
}
.card.db-features li:nth-child(8):before {
    background-position: 11px -354px;
}
.card.db-features li:nth-child(9):before {
    background-position: 11px -406px;
}
.card.db-features li p {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 0;
    letter-spacing: 0.05em;
}
.card.db-features li span {
    font-size: 12px;
    font-weight: 400;
}
.card.card-sm {
    height: 335px;
}
.card-label {
    font-size: 22px;
    font-weight: 700;
    color: #303972;
}
hr.card-title-u-line {
    border-color: #C4C4C4;
    margin: 15px -20px;
}
.card-count {
    font-weight: 700;
    font-size: 41px;
    text-align: right;
    margin-top: 18px;
}
.fu-stat-card {
    border-radius: 12px;
    padding: 10px 10px;
    color: #000;
    background-color: #ccc;
    border-left: 12px solid #000;
    margin-bottom: 20px;
}
.fu-stat-card.l-open {
    border-color: #FFE200;
    background-color: #FFF8C3;
}
.fu-stat-card.l-progress {
    border-color: #18236B;
    background-color: #E1E5FF;
}
.fu-stat-card.l-close {
    border-color: #FD2E00;
    background-color: #FFE6E1;
}
.fu-stat-card:last-child {
    margin-bottom: 0;
}
.fu-stat-card span {
    vertical-align: middle;
    float: left;
}
.fu-stat-card .label {
    color: #000;
    width: 50%;
    display: inline-block;
    white-space: normal;
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    padding: 0;
    text-align: left;
}
.fu-stat-card .count {
    text-align: right;
    display: inline-block;
    width: 50%;
    font-size: 18px;
    font-weight: 700;
    line-height: 38px;
}
p.lead-list-count {
    color: #A098AE;
    margin-top: -5px;
}
.lead-list-unit {
    padding: 20px 0;
    border-bottom: 1px solid #AAAAAC4A;
}
.lead-list-unit:first-child {
    padding-top: 5px;
}
.lead-list-unit:last-child {
    padding-bottom: 5px;
    border: 0;
}
.lead-list-unit .name-date-time, .lead-list-unit .actions {
    width: 50%;
    display: inline-block;
    float: left;
}
.lead-list-unit .actions {
    padding: 5px 0;
}
.lead-list-unit .name-date-time h4.name {
    font-size: 14px;
    font-weight: 600;
    color: #303972;  
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 7px;
}
.lead-list-unit .name-date-time p.date-time {
    font-size: 12px;
    font-weight: 400;
    color: #A098AE;
    margin: 0;
}
.lead-list-unit .actions ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: right;
}
.lead-list-unit .actions ul li {
    display: inline-block;
    vertical-align: text-top;
    margin-right: 5px;
    line-height: 1;
}
.lead-list-unit .actions ul li:last-child {
    margin: 0;
}
.lead-list-unit .actions ul a.email {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: inline-block;
    background-color: #ff680126;
    background-image: url(../images/action-ic.svg);
    background-repeat: no-repeat;
    background-size: 45px;
    background-position: 6px 5px;
}
.lead-list-unit .actions ul a.call {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: inline-block;
    background-color: #c9ffeb;
    background-image: url(../images/action-ic.svg);
    background-repeat: no-repeat;
    background-size: 45px;
    background-position: -27px 5px;
}
.lead-list-unit .actions ul a.details {
    font-size: 12px;
    line-height: 2;
    font-weight: 500;
    color: #0093BD;
    text-decoration: underline;
}
.no-leads {
    text-align: center;
}
.no-leads h3 {
    font-size: 22px;
    font-weight: 800;
    margin-top: 30px;
}
.no-leads p {
    font-size: 17px;
}
.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td{
    padding: 25px 15px;
}

.school-profile  label {
    font-weight: 400;
    font-size: 15px;
    color: #949494;
} 
.school-profile  p {
    font-weight: 800;
    font-size: 23px;
}   
.school-profile img.school-logo {
    height: 100px;
    margin: 0 auto 20px;
    display: block;
}
.card.lead-user-info {
    font-size: 16px;
    font-weight: 600;
}
.card.lead-user-info label {
    font-weight: 500;
}
.username {
    font-size: 26px;
    font-weight: 800;
}
.card.lead-info {
    font-size: 16px;
    font-weight: 600;
}
.card.lead-info, .card.lead-user-info {
    min-height: 300px;
}
.card.lead-info label {
    font-weight: normal;
    font-size: 14px;
    color: #6c6c6c;
}
.enq-comment .panel.panel-default {
    margin-bottom: 15px;
}
.enq-comment .panel-group .panel-default>.panel-heading a h4{
    position: relative;
}

.enq-comment .panel-group .panel-default>.panel-heading a h4:after {
    content: '-';
    position: absolute;
    top: 0;
    right: 0;
    font-size: 22px;
    font-weight: 500;
    transform: rotate(0deg);
    transition: all .2s;
    height: 15px;
    width: 15px;
    text-align: center;
}
.enq-comment .panel-group .panel-default>.panel-heading a.collapsed h4:after {
    content: '+';
    transform: rotate(90deg);
}

ul .account-dropdown{
    right : 0;
    left : auto;
}
.gtu-logo img{
    height: 47px;
    padding: 4px;
}

.lead-list {
    margin-top: 15px;
    margin-right: -10px;
    padding-right: 10px;
    max-height: 638px;
    overflow-y: scroll;
}
/* width */
.lead-list::-webkit-scrollbar {
  width: 5px;
  border-radius: 10px;
}

/* Track */
.lead-list::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
.lead-list::-webkit-scrollbar-thumb {
  background: #ccc; 
  transition: all .2s;
}

/* Handle on hover */
.lead-list::-webkit-scrollbar-thumb:hover {
  background: #ddd; 
}

.lead-table::-webkit-scrollbar-thumb {
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
  background-color: #2ac1f0;
}
.lead-table::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
  border-radius: 10px;
  background-color: #f5f5f5;
}
.lead-table ::-webkit-scrollbar {
    width: 7px;
    background-color: #f5f5f5;
}
.dropdown:hover .dropdown-content, .dropdown:focus.dropdown-content {
    display: block;
}
ul.nav-links.nav.navbar-nav {
    padding: 15px 0;
}
.noti-bell {
    display: inline-block;
    font-size: 45px;
    padding: 11px 10px;
    margin-right: 30px;
    float: none;
    position: relative;
    vertical-align: middle;
}
.noti-bell i {
    color: #2AC1F0;
}
.noti-bell span.noti-count {
    font-size: 12px;
    color: #fff;
    background-color: #FB7D5B;
    border: 3px solid #fff;
    border-radius: 50%;
    padding: 3px 0;
    width: 28px;
    height: 28px;
    display: inline-block;
    font-weight: 500;
    text-align: center;
    position: absolute;
    top: 15px;
    right: 4px;
}
.pie-chart-custom {
    margin: 30px 0;
}
.pie-chart-custom svg {
  position: relative;
  aspect-ratio: 1 / 1;
  transform: rotate(90deg);
}

.pie-chart-custom svg circle {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #18236B;
  stroke-width: 20px;
  stroke-linecap: round;
}

.pie-chart-custom svg circle:last-of-type {
  stroke-dasharray: 305px;
  stroke-dashoffset: calc(305px - (305px * var(--percent)) / 100);
  stroke: #FF6801; 
}
.lead-table .summary {
    margin-bottom: 20px;
    color: #A098AE;
}
.lead-table .summary b {
    color: #303972;
}

.lead-table table.table {
    margin-bottom: 0;
    border-radius: 15px;
    overflow: hidden;
    border: 0;
    color: #303972;
}
.lead-table table.table.table-bordered > thead > tr > th,
.lead-table table.table.table-bordered > tbody > tr > th,
.lead-table table.table.table-bordered > tfoot > tr > th,
.lead-table table.table.table-bordered > thead > tr > td,
.lead-table table.table.table-bordered > tbody > tr > td,
.lead-table table.table.table-bordered > tfoot > tr > td {
    border: 0;
}

.lead-table table.table.table-bordered > thead {
    background-color: #E7EFEF;
}
.lead-table table.table.table-bordered > thead,
.lead-table table.table.table-bordered > thead a {
    font-size: 15px;
    color: #303972;
}
.table > thead > tr.filters > td {
    padding: 0 5px 10px 5px;
}
.lead-table table.table tbody tr {
    border-bottom: 1px solid #DBDBDB;
}
.lead-table table.table tbody tr:last-child {
    border: 0;
}
.lead-table table.table.table-bordered > tbody > tr > td,
.lead-table table.table.table-bordered > tbody > tr > td a {
    font-size: 15px;
    color: #303972;
    font-weight: 500;
    vertical-align: middle;
}
.lead-table table.table.table-bordered > tbody > tr > td .name {
    font-weight: bold;
    text-transform: capitalize;
}
.lead-table table.table.table-bordered > tbody > tr > td .date {
    font-size: 14px;
    color: #A098AE;
}
span.status {
    border-radius: 20px;
    padding: 2px 15px;
    color: #fff;
    background-color: #000;
}
span.status.active {
    background-color: #00C179;
}
span.status.inactive {
    background-color: #F8142C;
}
/*.lead-table table.table.table-bordered > tbody > tr > td span.status.processing {
    background-color: #FF6801;
}*/
span.status.closed {
    background-color: #BEBEBE;
}
span.status.open {
    background-color: #3B82F6;
}
span.status.closed {
    color: #404F65;
    background-color: #D5DAE1;
}
span.status.converted {
    background-color: #A855F7;
}
span.status.converted i {
    height: 19px;
    width: 19px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}


.summary {
    margin-bottom: 20px;
    color: #A098AE;
}
.summary b {
    color: #303972;
}

table.table {
    margin-bottom: 0;
    border-radius: 15px;
    overflow: hidden;
    border: 0;
    color: #303972;
}
table.table.table-bordered > thead > tr > th,
table.table.table-bordered > tbody > tr > th,
table.table.table-bordered > tfoot > tr > th,
table.table.table-bordered > thead > tr > td,
table.table.table-bordered > tbody > tr > td,
table.table.table-bordered > tfoot > tr > td {
    border: 0;
}

table.table.table-bordered > thead {
    background-color: #E7EFEF;
    background-image: none;
}
table.table.table-bordered > thead,
table.table.table-bordered > thead a {
    font-size: 15px;
    color: #303972;
}
table.table tbody tr {
    border-bottom: 1px solid #DBDBDB;
}
table.table tbody tr:last-child {
    border: 0;
}
table.table.table-bordered > tbody > tr > td,
table.table.table-bordered > tbody > tr > td a {
    font-size: 15px;
    color: #303972;
    font-weight: 500;
    vertical-align: middle;
}
table.table.table-bordered > tbody > tr > td .name {
    font-weight: bold;
    text-transform: capitalize;
}
table.table.table-bordered > tbody > tr > td .date {
    font-size: 14px;
    color: #A098AE;
}
span.status {
    border-radius: 20px;
    padding: 2px 15px;
    color: #fff;
    background-color: #000;
}
span.status.active {
    background-color: #00C179;
}
span.status.inactive {
    background-color: #F8142C;
}
span.status.processing {
    background-color: #FF6801;
}
span.status.open {
    background-color: #3B82F6;
}
span.status.closed, span.status.disable {
    color: #404F65;
    background-color: #D5DAE1;
}
span.status.converted {
    background-color: #A855F7;
}
span.status.converted i {
    height: 15px;
    width: 15px;
}
.lead-detail-view .col-sm-9.custom-grid {
    width: 70%;
}
.lead-detail-view .col-sm-3.custom-grid {
    width: 30%;
}
.lead-profile {
    overflow: hidden;
}
.lead-profile .lead-info {
    margin: -20px -20px 0 -20px;
    padding: 20px;
    background-color: #057899;
    color: #fff;
    position: relative;
    min-height: 120px;
}
.lead-profile .lead-info:before, .lead-profile .lead-info:after {
    content: '';
    display: inline-block;
    width: 200px;
    height: 100px;
    border-radius: 15px 15px 0 0;
    background-color: #000;
    position: absolute;
    right: 0;
    bottom: 0;
}
.lead-profile .lead-info:before {
    position: absolute;
    right: 140px;
    bottom: 0;
    height: 70px;
    background-color: #08F29B;
}
.lead-profile .lead-info:after {
    position: absolute;
    right: 30px;
    bottom: 0;
    height: 100px;
    background-color: #00B3FE;
}
.lead-profile .lead-info h2.name {
    font-size: 32px;
    font-weight: bold;
}
.lead-profile span.status {
    font-size: 14px;
    font-weight: 500;
    margin-left: 10px;
}
.lead-profile .role {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
}
span.short-remark {
    padding: 2px 5px;
    background-color: #fff;
    border-radius: 30px;
}
span.short-remark {
    padding: 3px 12px;
    font-weight: 700;
    color: #5C59E8;
    background-color: #fff;
    border-radius: 30px;
    margin-left: 10px;
}
.card-sub {
    margin-top: 20px;
    border: 1px solid #aaaaac80;
    border-radius: 15px;
    overflow: hidden;
}
.modal-body .card-sub:first-child {
    margin-top: 0;
}
.card-sub h3.heading {
    background-color: #D9D9D9;
    padding: 10px 15px;
    display: inline-block;
    font-size: 20px;
    color: #000;
    margin: 0;
}
.card-sub .card-container {
    padding: 15px;
}
.lead-unit {
    /*display: inline-block;
    width: 33%;
    padding: 0 5px;
    float: left;*/
    margin-bottom: 20px;
}
/*.lead-unit.date-ic,
.lead-unit.phone-ic{
    width: 30%;
}
.lead-unit.email-ic{
    width: 40%;
}
.lead-unit.msg-ic,
.lead-unit.comment-ic{
    width: 100%;
}*/
.lead-unit label {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 7px;
    color: #A098AE;
}
.lead-unit img.input-trigger {
    margin-left: 5px;
    cursor: pointer;
    vertical-align: baseline;
}
.lead-unit .value {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 0 10px 45px;
    color: #303972;
}
.lead-unit .value:before {
    content: '';
    width: 35px;
    aspect-ratio: 1/1;
    display: inline-block;
    border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 0;
    background-color: #2ac1f02e;
    background-image: url(../images/leads-ic.svg);
    background-repeat: no-repeat;
    background-size: 23px;
    background-position-x: center;
}

.lead-unit.date-ic .value:before {
    background-position-y: 7px;
}
.lead-unit.phone-ic .value:before {
    background-position-y: -54px;
}
.lead-unit.email-ic .value:before {
    background-position-y: -118px;
}
.lead-unit.moc-ic .value:before {
    background-position-y: -247px;
}
.lead-unit.reason-ic .value:before {
    background-position-y: -310px;
}
.lead-unit.comment-dt-ic .value:before {
    background-position-y: -375px;
}
.lead-unit.followup-ic .value:before {
    background-position-y: -379px;
    background-size: 20px;
}
.lead-unit.msg-ic .value:before {
    background-position-y: -434px;
    background-size: 20px;
}
.lead-unit.comment-ic .value:before {
    background-position-y: -488px;
    background-size: 20px;
}
.lead-unit input.form-control {
    border: 1px solid #303972;
    font-size: 15px;
    font-weight: 500;
    color: #303972;
}
.action-btns {
    text-align: center;
    margin-top: 20px;
}
.action-btns a.btn {
    padding: 6px 40px 6px 12px;
    margin: 0 10px;
    position: relative;
}
.btn.history-btn {
    border: 1px solid #00B3FE;
    color: #00B3FE;
    font-weight: 500;
}
a.btn.history-btn:after {
    content: '';
    display: inline-block;
    height: 20px;
    width: 20px;
    position: absolute;
    top: 6px;
    right: 7px;
    background-image: url(../images/lead-btn-ic.svg);
    background-size: 20px;
    background-repeat: no-repeat;
}
a.btn.update-info {
    font-weight: 500;
    color: #fff;
    background: linear-gradient(96.41deg, #34C2FF 0%, #08F29B 115.88%);
}
a.btn.update-info:after {
    content: '';
    display: inline-block;
    height: 20px;
    width: 20px;
    position: absolute;
    top: 6px;
    right: 7px;
    background-image: url(../images/lead-btn-ic.svg);
    background-size: 20px;
    background-repeat: no-repeat;
    background-position-y: -46px;
}
p.lead-last-update {
    color: #A098AE;
    margin-top: -5px;
}
/*form css*/
label.control-label {
    color: #170F49;
    font-weight: 600;
    font-size: 14px;
}
.form-control {
    border-color: #D9D9D9;
    box-shadow: none;
}
span.input-group-addon.kv-date-picker,
span.input-group-addon.kv-datetime-picker {
    background-color: #00B3FE;
    color: #fff;
    border: 0;
}
span.input-group-addon.kv-date-remove,
span.input-group-addon.kv-datetime-remove {
    position: absolute;
    top: 50%;
    margin-top: -10px;
    right: 8px;
    z-index: 9;
    height: 20px;
    width: 20px;
    padding: 2px;
    color: #f00;
    border-color: #f00;
    background-color: transparent;
    border-radius: 50% !important;
    font-size: 12px;
}
.update-lead-form button.btn.btn-update {
    font-weight: 500;
    color: #fff;
    background: linear-gradient(96.41deg, #34C2FF 0%, #08F29B 115.88%);
    display: block;
    width: 100%;
    border-radius: 30px;
    padding: 12px 0;
}
.schools-list span.school-logo {
    width: 100px;
    display: inline-block;
    aspect-ratio: 2 / 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-right: 10px;
    background-color: #fbfbfb;
}

.schools-list span.school-logo img {
    max-width: 100%;
}
.schools-list a.action-btns {
    margin: 0 10px;
    height: 30px;
    width: 30px;
    display: inline-block;
    background-color: #ccc;
    border-radius: 50%;
    text-align: center;
    padding: 3px;
}
.schools-list a.action-btns.view {
    background-color: #4144b324;
}
.schools-list a.action-btns.update {
    background-color: #0093BD24;
}
.school-profile-nav {
    margin: -20px -20px 20px -20px;
    padding: 35px 15px;
    background-color: #0093BD;
}
.school-profile-nav .nav > li > a {
    color: #fff;
    padding: 5px 6px;
    font-size: 14px;
}
.school-profile-nav .nav > li.active > a {
    color: #000;
    background-color: #fff;
}
.school-profile-nav .nav > li:hover > a {
    color: #000;
    background-color: #fff;
}
.school-form-view .card {
    margin-bottom: 0;
}
.school-form-body {
    height: calc(100vh - 320px);
    overflow: auto;
    margin-right: -10px;
    padding-right: 10px;
}
.school-form-body .subjectsfield {
    text-align: justify;
}
.school-form-body .subjectsfield label.subject-unit {
    color: #000;
    padding: 6px 12px;
    margin-right: 10px;
    margin-bottom: 10px;
    border: 1px solid #00B3FE;
    border-radius: 4px;
    font-weight: 400;
    cursor: pointer;
}
.school-form-body .subjectsfield label.subject-unit input {
    display: none;
}
.school-form-body .subjectsfield label.subject-unit:has(> input:checked) {
    color: #fff;
    background-color: #00B3FE;
}
.fix-action-btns {
    text-align: center;
    background-color: #fff;
    padding: 20px 0 20px;
    margin: -20px;
    margin-top: 20px;
    box-shadow: -1px -8px 24px #00000036;
}
.btn-gradient {
    color: #fff;
    background: linear-gradient(96.41deg, #34C2FF 0%, #08F29B 115.88%);
}
.btn-gradient:hover, .btn-gradient:focus {
    color: #fff;
}
.file-preview {
    border: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}
.file-drop-zone {
    margin: 0;
    padding: 10px;
    background-color: #EFEFEF;
    border-radius: 15px;
    border: 2px dashed #999;
}
.file-drop-zone-title {
    font-size: 18px;
    padding: 50px 0 0 0;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    background-image: url(../images/upload-img.svg);
    background-repeat: no-repeat;
    background-position: center 0;
}
.file-preview .fileinput-remove {
    padding: 10px;
    font-size: 24px;
    top: 1px;
    right: 1px;
    line-height: 10px;
    z-index: 9;
    opacity: 1;
    background-color: #2ac1f04f;
    text-shadow: none;
    border-radius: 0 0 0 13px;
}
.school-profile {
    margin-bottom: 0;
}
.school-profile .card {
    margin-top: -80px;
    margin-bottom: 0;
}
.school-profile-card {
    margin-bottom: 40px;
    padding-left: 15px;
    border-left: 5px solid #057899;
}
.school-profile .school-logo {    
    margin-bottom: 40px;
}
.school-profile h2.school-name {
    font-weight: 700;
    font-size: 24px;
    color: #303972;
    margin: 33px 0 0;
}
.profile-head-bg {
    background-color: #057899;
    height: 150px;
    margin: -20px;
    background-image: url(../images/school-bg-pattern.png);
    background-size: 300px;
}
.school-profile p, .school-profile a {
    font-weight: 700;
    font-size: 16px;
    color: #303972;
    margin-top: 10px;
    margin-bottom: 0;
    display: block;
}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
    background: linear-gradient(96.41deg, #34C2FF 0%, #08F29B 115.88%);
}