:root {
    --bs-success: #00e093;
    --bs-success-rgb: 0, 224, 147;
    --bs-danger: #ff5f66;  
	--bs-danger-rgb: 255, 95, 102;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
body{
	font-family: 'Inter', sans-serif;
}

.app, .app-card {
	background:#fff;
}
.app-icon-holder{
	background:#d2dbff;
}
.app-card {
    background: #f5f6fe;
}
.btn-sm {
    font-weight: 400;
    font-size: .85rem;
    padding: 5px 15px;
}
.btn-success, .btn-danger {
    --bs-btn-color: #fff;
}
.tool-rs{
	position:absolute;
	right:0;
	top:7px;
	font-size:.8rem;
}

a.tool-btn {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}
a.tool-btn i{
	font-size:0.8rem;
	
}
a.tool-btn span{
	
	font-weight:600;
}
a.tool-btn.app-btn-secondary i{
	color:#777;
}
a.tool-btn.app-btn-secondary span{
	color:#000;
}
.has-remove{
	position:relative;
}
.has-remove a {
    position: absolute;
    right: -17px;
    top: 1px;
	opacity:0;
	transition:0.5s all;
}
.mtable-row:hover .has-remove a{
	opacity:1;
}

.tool-border {
    border-bottom: 3px solid #2a2f7e;
    padding-bottom: 10px;
}
.table-new {
    width:100%;
}
.table-new th {
    color: #000;
    text-align: left;
    padding: 5px 7px;
    font-size: 1rem;
}
.table-new th:first-child {
    padding-left: 15px;
}
.table-new th:last-child {
    padding-right: 15px;
}
.table-new td {
    color: #292e7e;
    text-align: left;
    padding: 15px 7px;
    font-size: 0.85rem;
	background: #eaeeff;
}
.table-new tr.blanks td{
	background:#fff;
	padding: 5px;
}
.table-new>tbody tr td:first-child {
    border-radius: 10px 0 0 10px;
	padding-left: 15px;
}
.table-new>tbody tr td:last-child {
    border-radius: 0 10px 10px 0;
	padding-right: 15px;
}
.has-item-control {
    width: 200px;
    align-items: center;
	padding-left: 7.5px;
}
.row.has-item-control>* {
    padding-left: 5px;
    padding-right: 5px;
}
.slide-product-name {
    font-weight: 700;
    margin-bottom: 10px;
}
form label.error{
	color:#f00;
	font-size:0.8rem;
}
form label.error-x {
    color: #f00;
    font-size: 0.8rem;
}
.form-label.required:after {
    content: "*";
    color: #f00;
    padding-left: 5px;
    font-size: 80%;
    vertical-align: text-top;
}
.table thead tr th a{
	position:relative;
	display:inline-block;
	text-decoration:none;
	color:#000;
}
.table thead tr th a.sorting:after, .table thead tr th a.sorting:before {
    color: #000;
    top: 0;
	content: "";
	right: .5em;
	position: absolute;
    display: block;
    opacity: .3;
}
.table thead tr th a.sorting_asc:before{opacity:1;}
.table thead tr th a.sorting_desc:after{opacity:1;}
.table thead tr th a.sorting:after {
	content: "▲";
	right: -30px;
}
.table thead tr th a.sorting:before {
	content: "▼";
	right: -20px;
}

.action-link {
    display: inline-block;
    padding: 0 4px;
	font-size: 1rem;
}
.action-edit, .action-edit:hover{
	color:rgb(var(--bs-gray-dark));
}
.action-remove, .action-remove:hover{
	color:rgb(var(--bs-danger-rgb));
}

input::placeholder {
    font-size: 0.9rem;
}
/* The snackbar - position it at the bottom and in the middle of the screen */
.snackbar {
  visibility: hidden; /* Hidden by default. Visible on click */
  min-width: 250px; /* Set a default minimum width */
  margin-left: -125px; /* Divide value of min-width by 2 */
  background-color: #333; /* Black background color */
  color: #fff; /* White text color */
  text-align: center; /* Centered text */
  border-radius: 2px; /* Rounded borders */
  padding: 16px; /* Padding */
  position: fixed; /* Sit on top of the screen */
  z-index: 1; /* Add a z-index if needed */
  left: 50%; /* Center the snackbar */
  bottom: 30px; /* 30px from the bottom */
}
.snackbar.success{background-color:#00e093}
.snackbar.danger{background-color:#ff5f66}
/* Show the snackbar when clicking on a button (class added with JavaScript) */
.snackbar.show {
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

.open-notification:not(:empty) {
    border-radius: 100%;
    width: 20px;
    height: 20px;
    padding: 0;
    vertical-align: middle;
    line-height: 20px;
    font-style: normal;
    margin: 0 0 0 5px;
    display: inline-block;
    font-size: .65rem;
    text-align: center;
}
.app-nav .nav-icon .bi {
    font-size: 18px;
}
.app-content{
	min-height: calc(100vh - 136px);
}

.mslist {
    padding: 5px 15px;
    background: #f1f1f1;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    gap: 0 5px;
    line-height: 1.25;
	position: relative;
	margin-bottom: 5px;
}
.mslist .remove{
    position: absolute;
    right: 15px;
    cursor: pointer;
	opacity:0.5;
	transition:0.5s all;
	color:#f00;
}
.mslist .remove:hover{
	opacity:1;
}
#school_idxs {
    margin-top: 1rem;
}
.auto-table-search .form-control{
	background: transparent;
    border-radius: 0;
    padding-right: 0;
    border-width: 0 0 1px;
    border-color: #bcc1cb;
	box-shadow: none !important;
}
.auto-table-search .input-group-text {
    background: transparent;
    border-radius: 0;
    padding-right: 0;
    border-width: 0 0 1px;
    border-color: #bcc1cb;
}
tr.removing {
    opacity: 0.5;
}
/* TIP */

.tc-container {
	position: absolute;
	display: block;
	z-index: 99999;
	opacity: 0;
	border-radius: 4px;
	border: 2px solid #fff;
}
.tc-container .tc {
	padding: 10px;
	border-radius: 4px;
	font-size:14px;
}
.tc-container .tc.black {
	background: #111;
	color: #fff;
}
.tc-container .tc a {
	cursor: pointer;
}
.tc-container .tc-message {
	display: inline-block;
	margin: 0 10px 0 0;
}
.tc-container .tc-cn {
	display: inline-block;
	margin-left: 10px;
	cursor: pointer;
}
.tc-container .tc-cn:hover {
	opacity: 0.7;
}
.tc-container .arrow {
	width: 0;
	height: 0;
	position: absolute;
	border-width: 7px;
	border-style: solid;
}
.tc-container .arrow.top {
	border-color: #fff transparent transparent;
	left: 50%;
	bottom: -14px;
	margin-left: -7px;
}
.tc-container .arrow.right {
	border-color: transparent #fff transparent transparent;
	left: -8px;
	top: 30%;
	margin-left: -7px;
}
.tc-container .arrow.left {
	border-color: transparent transparent transparent #fff;
	right: -15px;
	top: 29%;
	margin-left: -7px;
}
.tc-container .arrow.bottom {
	border-color: transparent transparent #fff;
	left: 50%;
	top: -14px;
	margin-left: -7px;
}
.tsmall{
	font-size:14px;
}
.bg-light {
    --bs-bg-opacity: 1;
    background-color:#CFCFCF;
	color:#fff;
}

.app-btn-success {
    background: #00e093;
    color: #fff;
    border-color: #00e093;
}
.app-btn-success:hover, .app-btn-success:active{
	background: #00e093;
    color: #fff;
    border-color: #00e093;
}

.app-btn-danger {
    background: #ff5f66;
    color: #fff;
    border-color: #ff5f66;
}
.app-btn-danger:hover, .app-btn-danger:active{
	background: #ff5f66;
    color: #fff;
    border-color: #ff5f66;
}

.alert-light {
    --bs-alert-color: #495057;
    --bs-alert-bg: #fcfcfd;
    --bs-alert-border-color: #e9ecef;
    --bs-alert-link-color: #495057;
	
}
.contact-menu{
	margin:0;
	padding:0;
	list-style:none;
	font-size:0.85rem;
	color: #000;
}
.contact-menu a {
    color: #000;
}

.jobqc-info {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #FDCAB5;
    background: #FFF5F1;
    border-radius: 10px;
    padding: 15px 15px;
	margin-bottom: 30px;
	
}
.jobqc-label {
    margin: 0;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: #8A8A8A;
	margin-bottom: .25rem;
}
.jobqc-value {
    color: #272727;
    margin: 0;
	font-weight: 500;
	font-size: 0.9rem;
}
.jobqc-grpline {
    width: 1px;
    height: 50px;
    background: #B1B1B1;
}
.jobqc-status-wrapper {
    display: flex;
    gap: 15px;
    align-items: center;
}
.jobqc-icon {
    font-size: 40px;
    color: #F9A380;
}

.jobfl-info .nav-tabs .nav-link{
	color:#8A8A8A;
	border:none;
}
.jobfl-info .nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link{
	color:#272727;
	background-color:transparent;
	
}
.app-card-job{
	background: #F6F6F6;
    padding: 15px 15px;
    border-radius: 10px;
}
.tab-tool {
    display: flex;
    justify-content: flex-end;
    margin: 15px 0;
	align-items: center;
    gap: 15px;
}
.tab-tool a {
    font-size: .9rem;
    color: #272727;
}
.tl-remarks {
    padding: 15px;
    background: #ECFFEE;
    margin: 0 0 15px;
    border-radius: 10px;
    color: #272727;
    font-size: .9rem;
	position: relative;
}
.tl-remarks:nth-child(2n+1) {
    background: #F6F6F6;
}
.tl-name {
    font-weight: 600;
}
.tl-date {
    font-size: .75rem;
    opacity: .6;
    margin-bottom: .25rem;
}
.tl-alarm {
    font-size: .8rem;
    padding: 6px 10px;
    background: rgba(0, 0, 0, 0.1);
    display: inline-block;
    border-radius: 5px;
    margin-bottom: 10px;
}
.tl-alarm .countdown-x:not(:empty) {
    font-weight: 700;
    margin-left: 5px;
    border-left: 1px solid #000;
    padding-left: 5px;
    display: inline-block;
}
.tl-remarks p{
	margin-bottom:0;
}
.tl-documents {
    display: flex;
    gap: 10px;
    padding: 0;
    list-style: none;
    margin: 15px 0 0;
}
.tl-documents li {
    width: 100px;
    border: 1px solid #ccc;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.15);
    transition: 0.5s all;
}
.tl-documents li:hover{
	box-shadow:inset 0 0 5px 0px rgba(0, 0, 0, 0.15);
}

.tl-documents a{
	color:#272727;
}
.tl-documents .fileicon{
	font-size: 30px;
}
.tl-documents .filemeta{
	line-height: 1;
    margin: 5px 0 0;
}
.tl-documents .filemeta .fname {
    width: 100%;
    display: block;
	font-size:10px;
}
.tl-documents .filemeta .fsize {
    opacity: .75;
    font-size: 10px;
	font-size:9px;
}
.up-cust {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
	margin-bottom: 10px;
}
.up-icon {
    display: inline-block;
    background: #eaeeff;
    color: #0402a6;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
    text-align: center;
    border-radius: 50%;
}
.up-sub {
    width: calc(100% - 65px);
}
.up-sub p.h {
    font-weight: 700;
    margin: 0;
}
.up-sub p.sh {
    font-size: 12px;
    line-height: 1.2;
    color: rgba(255, 0, 0, 0.5);
    margin: 0;
}
.up-cust input[type=file] {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    opacity: 0;
    cursor: pointer;
}
.asce-wrp {
    display: flex;
    gap: 10px;
	line-height: 16px;
    font-size: 14px;
}
.asce-profile {
    width: 50px;
	height: 50px;
    border-radius: 50%;
    border: 1px solid #f1f1f1;
    overflow: hidden;
}
.asce-profile img {
    width: 100%;
}
.asce-meta {
    width: calc(100% - 60px);
}
.people-value{
	background: #fff;
    padding: .5rem;
    font-size: 14px;
    line-height: 16px;
    border-radius: 5px;
	margin-bottom:1rem;
}
.all-s-wrp{
	position: sticky;
    top: 70px;
}
.all-people-wrp{
	background: #eaeeff;
    padding: 1rem;
    border-radius: 10px;
	position:relative;
    
}
.all-people-wrp h3 {
    font-size: 20px;
    margin-bottom: 0.5rem;
}
.all-people-wrp .all-people {
    list-style: none;
    padding: 0;
    margin: 0;
}
.all-people h4 {
    font-size: 1rem;
    color: #292e7e;
}
.all-doc-wrp {
    background: #F6F6F6;
    padding: 1rem;
    border-radius: 10px;
    position: relative;
}
.all-doc-wrp h3 {
    font-size: 20px;
    margin-bottom: 0.5rem;
}
.all-doc-wrp .all-docs {
    list-style: none;
    padding: 0;
    margin: 0;
}
.all-doc-wrp .all-docs li{
	margin-bottom:0.5rem;
}
.all-doc-wrp .all-docs li > a {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    align-items: center;
    color: #272727;
}
.all-doc-wrp .fileicon{
	font-size:24px;
}
.all-doc-wrp .filemeta {
    line-height: 1;
    width: calc(100% - 30px);
}
.all-doc-wrp .fname {
    display: block;
    font-size: 12px;
}
.all-doc-wrp .fsize {
    font-size: 10px;
    opacity: .75;
}

.invoice-list {
    padding: 15px;
    background: #F6F6F6;
    margin: 0 0 15px;
    border-radius: 10px;
    color: #272727;
    font-size: .9rem;
    position: relative;
}
.invoice-list.invoice-paid{
	background:#ECFFEE;
}
.tl-toolsm{
	position: absolute;
    right: 15px;
    top: 15px;
}

.tool-border a.small {
    color: #272727;
    font-size: .9rem;
    line-height: 29px;
}




.empty {
    text-align: center;
    background: #f6f6f6;
    padding: 2rem 1rem;
    border-radius: 10px;
    color: #999;
}
.empty p {
    margin: 0;
}
.empty i {
    font-size: 3rem;
}
.form-control-sm {
    height: 1.5rem;
}

.mtable {
    background: #f6f6f6;
    border-radius: 10px;
    padding: 1rem;
    color: #000;
    position: relative;
}
.mtable-head {
    font-weight: 600;
    margin-bottom: .25rem;
}
.mtable-body {
    padding-left: .5rem;
}
.mtable-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: .9rem;
    gap: 5px;
    padding: .15rem 0;
}
.mtable-border{
	border-top:1px solid #000;
}
.form-control-em {
    border: none;
    padding: 0;
    background-color: transparent;
	outline:none;
}
.form-control-em:focus {
    color: #292e7e;
	outline:none;
}
.htmlClientinfo {
    background: #fff;
    padding: .5rem;
    margin: 1rem 0 0;
    font-size: 14px;
    line-height: 16px;
	display:none;
	border-radius: 5px;
}

.available-placeholder {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    flex-wrap: wrap;
    gap: 5px;
}
.available-placeholder li {
    display: inline-block;
    padding: 4px;
    background: #fff;
    font-size: 12px;
    border-radius: 5px;
    color: #E91E63;
    cursor: pointer;
}
#myemailpreview{
	border: 0;
	width: 100%;
    height: 100%;
    position: absolute;
	background: #fff;
}
#previewModal .modal-body{
	
	background: #f1f1f1;
}


/* The laptop with borders */
.laptop {
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: scale(.6) translate(-50%); /* Scaled down for a better Try-it experience (change to 1 for full scale) */
  transform: scale(.6) translate(-50%); /* Scaled down for a better Try-it experience (change to 1 for full scale) */
  left: 50%;
  position: absolute;
  width: 1366px;
  height: 800px;
  border-radius: 6px;
  border-style: solid;
  border-color: black;
  border-width: 24px 24px 80px;
  background-color: black;

}

/* The keyboard of the laptop */
.laptop:after {
  content: '';
  display: block;
  position: absolute;
  width: 1600px;
  height: 60px;
  margin: -24px 0 0 -134px;
  background: black;
  border-radius: 6px;
}

/* The top of the keyboard */
.laptop:before {
  content: '';
  display: block;
  position: absolute;
  width: 250px;
  height: 30px;
  bottom: -110px;
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  background: #f1f1f1;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  z-index: 1;
}

/* The screen (or content) of the device */
.laptop .content {
  height: 800px;
  overflow: hidden;
  border: none;
}

.tablet {
  position: relative;
  width: 768px;
  height: 1024px;
  margin: auto;
  border: 16px black solid;
  border-top-width: 60px;
  border-bottom-width: 60px;
  border-radius: 36px;
}

/* The horizontal line on the top of the device */
.tablet:before {
  content: '';
  display: block;
  width: 60px;
  height: 5px;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #333;
  border-radius: 10px;
}

/* The circle on the bottom of the device */
.tablet:after {
  content: '';
  display: block;
  width: 35px;
  height: 35px;
  position: absolute;
  left: 50%;
  bottom: -65px;
  transform: translate(-50%, -50%);
  background: #333;
  border-radius: 50%;
}

/* The screen (or content) of the device */
.tablet .content {
  background: #fff;
}

.smartphone {
  position: relative;
  width: 360px;
  height: 640px;
  margin: auto;
  border: 16px black solid;
  border-top-width: 60px;
  border-bottom-width: 60px;
  border-radius: 36px;
}

/* The horizontal line on the top of the device */
.smartphone:before {
  content: '';
  display: block;
  width: 60px;
  height: 5px;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #333;
  border-radius: 10px;
}

/* The circle on the bottom of the device */
.smartphone:after {
  content: '';
  display: block;
  width: 35px;
  height: 35px;
  position: absolute;
  left: 50%;
  bottom: -65px;
  transform: translate(-50%, -50%);
  background: #333;
  border-radius: 50%;
}

/* The screen (or content) of the device */
.smartphone .content {

  background: #fff;
}

.app-card.app-card-stat {
    background: #eaeeff;
    color: #fff;
    text-align: left;
}
.app-card-stat .widget-icon {
    color: #fff;
    font-size: 20px;
    background-color: #292e7e;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 3px;
    display: inline-block;
}
.app-card-stat .stats-type{
	color: #292e7e;
    font-weight: 400;
}
.app-card-stat .stats-figure{
	color: #292e7e;
	font-size:2.37rem;
}
.app-card-stat .stats-meta {
    color: #292e7e;
}

@media print {
    body {
      visibility: hidden;
    }
    #section-to-print {
      visibility: visible;
      position: absolute;
      left: 0;
      top: 0;
    }
    .print-page-break {page-break-after: always;}
    #section-to-print .np{
        display: none;
    }
  }
