:root {
  /* MT Green */
  --mt-green: #008037;
  /* Actionable Item */
  --mt-green-1: #21b119;
  /* MT Light Green */
  --mt-light-green: #04aa4b;
  /* MT Green hover */
  --mt-dark-green: #016d2f;

  /* MT Gray 3 - Line */
  --mt-gray: #59585d;
  /* MT dropdown hover */
  --mt-gray-2: #323338;
  /* MT Table Dropdown Hover */
  --mt-gray-3: #3c3e46;
  /* MT Gray 2 Inactive */
  --mt-gray-4: #2a2b30;
  /* MT Text Gray1 */
  --mt-gray-5: #cdced7;

  /* MT LGray 1 */
  --mt-light-gray: #36383e;
  /* MT LGray Field */
  --mt-light-gray-3: #6f7287;
  /* MT LGray Field Border */
  --mt-light-gray-4: #a2a5b8;
  /* MT LGray field hover */
  --mt-light-gray-5: #66687c;

  /* MT DGray 1 */
  --mt-dark-gray: #212329;
  /* MT DGray2 */
  --mt-dark-gray-2: #53535b;
  /* MT DGray Hover */
  --mt-dark-gray-3: #2d2e33;
  /* MT DGray 3 */
  --mt-dark-gray-4: #393b46;
  /* MT DGray 5 */
  --mt-dark-gray-5: #3b3b41;

  /* MT Bluegreen */
  --mt-bluegreen: #006180;
  /* MT Bluegreen border */
  --mt-bluegreen-1: #0584ad;
  /* MT Bluegreen hover */
  --mt-bluegreen-2: #00526c;

  /* MT Cyan */
  --mt-cyan: #00fffd;

  /* MT Popup bg2 */
  --mt-black: #212329;
  /* MT Body BG */
  --mt-black-1: #1e1f25;
  /* MT Menu Hover */
  --mt-black-2: #202126;
  /* MT black solid */
  --mt-black-solid: #000000;

  /* MT Red */
  --mt-red: #d81f26;

  /* MT overlay; How to use in "background: rgba(var(--mt-overlay), 0.8);" */
  --mt-overlay: 26, 27, 32;
  /* Calendar BG  How to use in "background: rgba(var(--mt-overlay-1), 0.1);"*/
  --mt-overlay-1: 229, 229, 229;

  /* MT Yellow */
  --mt-yellow: #ffff00;
  --mt-yellow-1: #FFFF8F;
  --mt-yellow-2: #FCF55F;
  --mt-yellow-3: #FAFA33;
  --mt-yellow-4: #FFEA00;
  --mt-yellow-5: #FDDA0D;
  --mt-yellow-6: #FFD700;
  --mt-yellow-7: #E4D00A;
  --mt-yellow-8: #FFDB58;
  --mt-yellow-9: #F4C430;
  --mt-yellow-10: #FBEC5D;
  --mt-yellow-11: #F8DE7E;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

.mtb-font-montserrat {
  font-family: "Montserrat";
}
.mtb-font-codebase {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.mtb-font-500 {
  font-weight: 500;
}

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

.mtb-font-800 {
  font-weight: 800;
}

.mtb_fill_currrent {
  fill: currentColor;
}

.mtb-cursor-pointer {
  cursor: pointer;
}

.mtb-pointer-none {
  pointer-events: none;
}

.justify-content-evenly { 
  justify-content: space-evenly !important;
}

.title-with-border {
  border-bottom: 1px solid var(--mt-gray);
  padding: 1rem 0;
  margin-bottom: 1rem;
}

.mtb-text-link {
  color: var(--mt-green-1);
  text-decoration: none;
}
.mtb-text-link:hover {
  color: var(--mt-gray);
  text-decoration: none;
}

.mtb-text-link-white,
.mtb-text-link:hover {
  color: var(--white);
  text-decoration: none;
}

.stack-bartop {
  width: 100%;
  left: 0;
  text-align: center;
}

.stack-bartop .ui-pnotify-text {
  color: var(--white);
  font-size: 1rem;
}

.stack-bartop .brighttheme-notice {
  background-color: var(--mt-light-gray);
}


.mtb-tooltip {
  position: relative;
  display: inline-block; 
}

.mtb-tooltip .mtb-tooltiptext {
  visibility: hidden; 
  min-width: 200px;
  background-color: var(--mt-gray);
  color: var(--white);
  text-align: center;
  border-radius: .25rem;
  padding: 5px;
  position: absolute;
  z-index: 1; 
  top: 1.75rem;
  left: 50%;
  margin-left: -100px;
}

.mtb-tooltiptext:before{
  content:'';
  display:block;
  width:0;
  height:0;
  position:absolute;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;  
  border-bottom: 9px solid var(--mt-gray);
  left: 47%;
  top: -7px;
}

.mtb-tooltiptext--hidetip::before {
  display: none;
}

.mtb-tooltip:hover .mtb-tooltiptext {
  visibility: visible;
}

.mtb-list-cirlcle,
.mtb-list-cirlcle *{
  font-family: "Montserrat";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 10px;
}

.mtb-list-cirlcle {
  align-items: center !important;
  display: flex !important;
  padding-right: 1rem;
  padding-left: 1rem;
}

.mtb-list-cirlcle__number {
  background: var(--mt-light-gray);
  border-radius: 100%;
  font-weight: 600 !important;
  padding: 0.75rem 0.875rem;
  margin-right: 0.75rem;
}

.mtb-list-cirlcle__number--green {
  background: var(--mt-green)
}

.mtb-spinner-holder {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  bottom: 0;
  background: rgba(var(--mt-overlay), 0.8);
  z-index: 2;
}

.mtb-object-cover {
  object-fit: cover;
}

.mtb-whitespace-pre-wrap {
  white-space: pre-wrap;
}

.mtb-whitespace-nowrap	{
  white-space: nowrap;
}
.mtb-break-word	{
  word-break: break-word;
}

.mtb-thumbnail-error-text {
  min-width: 17.5rem;
  min-height: 9.5rem;
  display: flex;
  background: var(--mt-dark-gray);
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 600;
  position: absolute;
  top: 0;
  bottom: 0;
  overflow: hidden;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.mtb-thumbnail-error-text--wh-1 {
  min-width: 18rem;
  min-height: 10.5rem;
}

.mtb-thumbnail-error-text--bg-white {
  background: var(--mt-gray-5);
  color: var(--mt-dark-gray);
  background: radial-gradient(circle, #cdced7 0%, #59585d 100%);
  font-family: Georgia;
  letter-spacing: 2px;
  text-align: center;
}

.mtb-loader-spin {
  margin: 1rem auto 0 auto;
  height: 1.5rem !important;
  width: 1.5rem!important;
  border-width: 2px; 
  animation: mtb-loader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 2px solid var(--white);
  border-radius: 50%;
  border-top-color: transparent;
}
@keyframes mtb-loader-spin{100%{transform:rotate(360deg)}}

.mtb-z-0 {
  z-index: 0;
}

.mtb-z-10 {
  z-index: 10;
}

.mtb-z-20 {
  z-index: 20;
}

.mtb-z-30 {
  z-index: 30;
}

.mtb-z-40 {
  z-index: 40;
}

.mtb-z-50 {
  z-index: 50;
}

.mtb-z-auto {
  z-index: auto;
}

/* 
sm @media (min-width: 576px) { }
md @media (min-width: 768px) { }
lg @media (min-width: 992px) { }
xl @media (min-width: 1200px) { }
2xl @media (min-width: 1400px) {} 
*/

.ui-pnotify-closer {
  color: var(--mt-black-solid);
}
.ui-pnotify-closer .brighttheme-icon-closer {
  font-size: 2rem;
}

.mtb-color-inherit {
  color: inherit;
}