:root {
    --bs-success: #00e093;
    --bs-success-rgb: 0, 224, 147;
    --bs-danger: #ff5f66;  
	--bs-danger-rgb: 255, 95, 102;
}
body{
	font-family: 'Inter', sans-serif;
}
.count {
	background: #ec776c;
	color: #fff;
	font-size: 12px;
	width: 20px;
	height: 20px;
	display: inline-block;
	text-align: center;
	font-weight: 400;
	border-radius: 50%;
	line-height: 20px;
	margin: 0;
	position: relative;
	top: -3px;
}
ul.sp-note-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
}
ul.sp-note-list li {
    background: #eaeeff;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
	position: relative;
}
ul.sp-note-list li:nth-child(2n) {
   background: #f3f3f3;
}
ul.sp-note-list li .sn-al {
    position: absolute;
    right: 0;
}
ul.sp-note-list li .sn-name {
    font-weight: 700;
    color: #0137f0;
}
ul.sp-note-list li .sn-time {
    font-size: .7rem;
    color: #9E9E9E;
    margin-bottom: 5px;
}
ul.sp-note-list li .sn-msg {
    color: #333;
}
.table-responsive .table {
    font-size: .875rem;
}
.table-responsive .table .btn-sm {
    padding: .125rem .5rem;
    font-size: .75rem;
}
.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;
}
.action-edit, .action-edit:hover{
	color:rgb(var(--bs-success-rgb));
}
.action-remove, .action-remove:hover, .action-remove-n, .action-remove-n: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: 10000000000000; /* 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;
}
.removing {
    opacity: 0.5 !important;
}
/* 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;
}
table.inner-table {
    width: 100%;
    border-left: 2px solid #0137f0;
    background: #f1f1f1;
}
table.inner-table thead tr {
    border-bottom: 1px solid #d3d3d3;
}
table.inner-table th, table.inner-table td {
    padding: 5px;
}
@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;
    }
  }
