body {
	max-width: 100vw;
	min-height: 100vh;
	/* font-family: 'Open Sans', sans-serif; */
	overflow-y: scroll;
	overflow-x: hidden;
	margin: 0px;
	color: #515252;
  /* background: #E2E3F6; */
  background: #f3f4fe;
}
button {
  cursor: pointer;
  border: none;
  background-color: rgba(0, 0, 0, 0);
  /* font-family: 'Open Sans', sans-serif; */
}
/* button:focus {
  outline: none;
  border: none;
  box-shadow: none;  
} */

.wrapper{
  display: flex;
  overflow: hidden;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  min-height: 100vh;
}
.background{
    /* background: #E2E3F6; */
    background: #f3f4fe;
}
.noscroll {
	overflow: hidden;
}
.scroll{
  overflow: auto;
}
.x-scroll{
  overflow-x: auto;
}
.y-scroll{
  overflow-y: auto;
}
.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  z-index: 2001;
  overflow-y: hidden;
  overflow-x: hidden;
  transition: opacity 80ms linear;
  background: #0009;
}
.hidden-form-container {
  position: fixed;
  top: 0;
  left: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  z-index: 2002;
  height: 100%;
  overflow-y: auto;
}
.hidden-form-box {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: fit-content;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 25px;
  border-radius: 8px;
  max-width: 90vw;
  width: 450px;
  box-shadow: 1px 2px 8px 0px rgb(0 0 0 / 25%);
  -moz-box-shadow: 1px 2px 8px 0px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 1px 2px 8px 0px rgb(0 0 0 / 25%);
}


.relative-position{
  position: relative;
}
.absolute-position{
  position: absolute;
}
.top-positive-10{
  top: 10%;
}
.top-positive-20{
  top: 20%;
}
.left-0{
  left: 0%;
}
.right-0{
  right: 0%;
}

/*Sidebar mobile toggle*/
.menu-header-mobile{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 55px;
  background-color: #fff;
  /* z-index: 1999; */
  z-index: 20;
  box-shadow: 0 -2px 4px 0px rgb(0 0 0 / 30%);  
}
.menu-toggle {
    display: none;
    position: fixed;
    top: 5px;
    right: 1rem;
    width: 45px;
    height: 45px;
    border-radius: 99px;
    /*background-color: #2e3047;*/
    cursor: pointer;
    z-index: 2000;
}
.hamburger {
    position: relative;
    top: calc(50% - 2px);
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
}
.hamburger > span,
.hamburger > span::before,
.hamburger > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 4px;
  border-radius: 99px;
  background-color: #515252;
  transition-duration: .25s;
}
.hamburger > span::before {
  content: '';
  top: -10px;
}
.hamburger > span::after {
  content: '';
  top: 10px;
}
.menu-toggle.is-active .hamburger > span {
  transform: rotate(45deg);
}
.menu-toggle.is-active .hamburger > span::before {
  top: 0;
  transform: rotate(0deg);
}
.menu-toggle.is-active .hamburger > span::after {
  top: 0;
  transform: rotate(90deg);
}
@media (max-width: 768px) {
  .menu-header-mobile, .menu-toggle {
      display: block;
  }
}    
       

/*Sidebar*/
.sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  overflow: scroll;  
  display: flex;
  width: 220px;
  padding: 1.5rem 1rem;
  background-color: #fff;
  /*min-height: 100vh;*/
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: flex-start;
  border-right: 1px solid #EFF2F5;
  /* z-index: 2000; */
  z-index: 20;
}
.sidebar h3 {
    color: #58667E;
    font-size: 14px;
    text-transform: uppercase;
    margin-top: 0px;  
    margin-bottom: 5px;  
}
.sidebar .menu {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 0 -1rem 30px -1rem;
}
.sidebar .menu .menu-item {
  display: inline-flex;
  width: calc(100% - 25px);
  padding: 10px 10px 10px 15px;
  color: #515252;
  text-decoration: none;
  transition: 0.2s linear;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
}
.sidebar .menu .menu-item.is-active {
  font-weight: 700;
}
.sidebar .menu .menu-item:hover{
	background-color: #EFF2F5;
}
.sidebar .menu .menu-item span{
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 768px) {
  .sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    height: 100vh;
    width: 100%;
    max-width: 250px;
    transition: 0.2s linear;
  }
  .sidebar.is-active {
    left: 0;
  }
} 
.sidebar-brand{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  border-bottom: 1px solid #EFF2F5;
}
.navbar-brand{
  display: none;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none; 
  height: 100%;
  margin-left: 1rem;
}
.mascot {
	background-image: url("../img/lion-head.059cb2ae53c6.png");
	background-size: contain;
	margin-right: 5px;
	/* height: 44px;
	width: 50px; */
  height: 35px;
  width: 35px;
	display: inline;
	background-repeat: no-repeat;
	background-position: center;
}
.brand-name{
  color: #515252;
  /* font-size: 26px; */
  font-size: 22px;
  font-weight: 700;
  line-height: inherit;  
}
@media (max-width: 768px) {
  .sidebar-brand{
    display: none;
  }  
  .navbar-brand{
    display: flex;
  }    
}
/* Asset Analysis Menu Styling for Flowbite */
#asset-analysis-submenu .menu-item {
  padding: 8px 12px;
  margin: 2px 0;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

#asset-analysis-submenu .menu-item:hover {
  background-color: #f3f4f6;
}

/* Ensure proper spacing for submenu items */
#asset-analysis-submenu .menu-item span {
  display: flex;
  align-items: center;
}

/* Style the collapse button to look like a menu item */
[data-collapse-toggle="asset-analysis-submenu"] {
  background: none;
  border: none;
  padding: 0;
  width: 100%;
  color: inherit;
}

[data-collapse-toggle="asset-analysis-submenu"]:hover {
  background-color: #f3f4f6;
  /* border-radius: 6px; */
}


#pinklion-pro{
	display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;	
	font-size: 16px;
	cursor: pointer;
  text-decoration: none;
  padding-top: 20px;
}
@media (max-width: 768px) {
  #pinklion-pro{
    padding-top: 0px;
  }     
}
.pinklion-text-gradient {
    background: -webkit-linear-gradient(45deg, #ff0083 25%, rgb(142, 80, 239));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-transition: text;
    -moz-transition: transparent;
	  -o-transition: text;
	  -o-transition: transparent;
    font-weight: 600;
}
.pinklion-text-gradient:hover{
	background: #ff0083;
	-webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/*Loading popup style and animation*/
#loading-container {
  position: relative;
  transform: scale(0.725);
}
.divider {
  position: absolute;
  z-index: 2;
  top: 65px;
  left: 200px;
  width: 50px;
  height: 15px;
  background: #fff;
}
.loading-text {
  position: relative;
  font-size: 3.75rem;
  font-weight: 300;
  margin: 0;
  white-space: nowrap;
}
.loading-text::before {
  position: absolute;
  content: "";
  z-index: 1;
  top: 40px;
  left: 118px;
  width: 6px;
  height: 6px;
  background: #ff0083;
  border-radius: 50%;
  -webkit-animation: dotMove 1800ms cubic-bezier(0.25, 0.25, 0.75, 0.75) infinite;
          animation: dotMove 1800ms cubic-bezier(0.25, 0.25, 0.75, 0.75) infinite;
}
.loading-text .letter {
  display: inline-block;
  position: relative;
  letter-spacing: 6px;
}
.loading-text .letter:nth-child(1) {
  transform-origin: 100% 70%;
  transform: scale(1, 1.275);
}
.loading-text .letter:nth-child(1)::before {
  position: absolute;
  content: "";
  top: 22px;
  left: 0;
  width: 14px;
  height: 36px;
  background: #fff;
  transform-origin: 100% 0;
  -webkit-animation: lineStretch 1800ms cubic-bezier(0.25, 0.25, 0.75, 0.75) infinite;
          animation: lineStretch 1800ms cubic-bezier(0.25, 0.25, 0.75, 0.75) infinite;
}
.loading-text .letter:nth-child(5) {
  transform-origin: 100% 70%;
  -webkit-animation: letterStretch 1800ms cubic-bezier(0.25, 0.23, 0.73, 0.75) infinite;
          animation: letterStretch 1800ms cubic-bezier(0.25, 0.23, 0.73, 0.75) infinite;
}
.loading-text .letter:nth-child(5)::before {
  position: absolute;
  content: "";
  top: 15px;
  left: 2px;
  width: 9px;
  height: 15px;
  background: #fff;
}
@-webkit-keyframes dotMove {
  0%, 100% {
    transform: rotate(180deg) translate(-110px, -10px) rotate(-180deg);
  }
  50% {
    transform: rotate(0deg) translate(-113px, 10px) rotate(0deg);
  }
}
@keyframes dotMove {
  0%, 100% {
    transform: rotate(180deg) translate(-112px, -10px) rotate(-180deg);
  }
  50% {
    transform: rotate(0deg) translate(-113px, 10px) rotate(0deg);
  }
}
@-webkit-keyframes letterStretch {
  0%, 100% {
    transform: scale(1, 0.35);
    transform-origin: 100% 75%;
  }
  8%, 28% {
    transform: scale(1, 2.125);
    transform-origin: 100% 67%;
  }
  37% {
    transform: scale(1, 0.875);
    transform-origin: 100% 75%;
  }
  46% {
    transform: scale(1, 1.03);
    transform-origin: 100% 75%;
  }
  50%, 97% {
    transform: scale(1);
    transform-origin: 100% 75%;
  }
}
@keyframes letterStretch {
  0%, 100% {
    transform: scale(1, 0.35);
    transform-origin: 100% 75%;
  }
  8%, 28% {
    transform: scale(1, 2.125);
    transform-origin: 100% 67%;
  }
  37% {
    transform: scale(1, 0.875);
    transform-origin: 100% 75%;
  }
  46% {
    transform: scale(1, 1.03);
    transform-origin: 100% 75%;
  }
  50%, 97% {
    transform: scale(1);
    transform-origin: 100% 75%;
  }
}
@-webkit-keyframes lineStretch {
  0%, 45%, 70%, 100% {
    transform: scaleY(0.125);
  }
  49% {
    transform: scaleY(0.75);
  }
  50% {
    transform: scaleY(0.875);
  }
  53% {
    transform: scaleY(0.5);
  }
  60% {
    transform: scaleY(0);
  }
  68% {
    transform: scaleY(0.18);
  }
}
@keyframes lineStretch {
  0%, 45%, 70%, 100% {
    transform: scaleY(0.125);
  }
  49% {
    transform: scaleY(0.75);
  }
  50% {
    transform: scaleY(0.875);
  }
  53% {
    transform: scaleY(0.5);
  }
  60% {
    transform: scaleY(0);
  }
  68% {
    transform: scaleY(0.18);
  }
}
@media (min-width: 48rem) {
  #loading-container {
    transform: scale(0.725rem);
  }
}
@media (min-width: 62rem) {
  #loading-container {
    transform: scale(0.85);
  }
} 


/*Main app container*/
.main-container{
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  width: calc(100% - 250px);
  height: 100%;
  min-height: 100vh;
  overflow-y: scroll;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .main-container{
    width: 100%;
    margin-top: 55px;
  }
}

/*Sections within Main app container*/
.section-card{ /*Standard class*/
  position: relative;
  display: flex;
  min-height: fit-content;
  width: 100%;
  /* max-width: 1280px; Changed from 1280px to 1680px to allow for full width */
  max-width: 1920px;
  margin-top: 30px;
  border-radius: 12px;
  background-color: #fff;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: space-between;
  align-items: flex-start;
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.25);
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
  box-sizing: border-box;         /* Opera/IE 8+ */  
}
@media (min-width: 768px) {
  .section-card {
      width: 95%;
  }
}

.section-card-transparent{ /*Standard class*/
  position: relative;
  display: flex;
  width: 100%;
  /* max-width: 1280px; Changed from 1280px to 1680px to allow for full width */
  max-width: 1920px;
  margin-top: 30px;
  background-color: transparent;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: flex-start;
  justify-content: space-between;
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
  box-sizing: border-box;         /* Opera/IE 8+ */  
}
@media (min-width: 768px) {
  .section-card-transparent {
      width: 95%;
  }
}

.section-card-3-horizontal{
  position: relative;
  display: flex;
  min-height: fit-content;
  width: 31%;
  max-width: 1280px;
  margin-top: 30px;
  border-radius: 12px;
  background-color: #fff;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: space-between;
  align-items: flex-start;
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
  box-sizing: border-box;         /* Opera/IE 8+ */    
}
.section-shadow{
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.25);  
}
.section-card-rigt-align{
  justify-content: flex-end;
}
.section-card-left-align{
  justify-content: flex-start;  
}
.section-card-center-align{
  justify-content: center;  
}


.chart-toggle {
    margin-left: 0;
    margin-right: 8px;
    padding: 2px 6px 0;
    cursor: pointer;
}
.active-chart-toggle {
    color: #ff0083;
    border-bottom: 2px solid #ff0083;
    font-weight: 600;
}


/*Button classes*/
.cta{ /*Standard class*/
    height: 42px;
    border-radius: 5px;    
    width: 250px;
}
.cta-short{ /*Standard class*/
    height: 42px;
    border-radius: 5px;    
    width: 170px;
}
.cta-long{ /*Standard class*/
    height: 42px;
    border-radius: 5px;    
    width: 250px;
}
.cta-bright{ /*Standard class*/
    border: 1px solid #FF0083;
    background-color: #ff0083;
    color: #fff;

}
.cta-bright:hover { /*Standard class*/
    background-color: #DC0073;
    border: 1px solid #DC0073;
    color: #fff;
    text-decoration: none;
}
.cta-delete{ /*Standard class*/
    color: #cf222e;
    background-color: #f6f8fa;
    border-color: rgba(27,31,36,0.15);
/*    box-shadow: 0 1px 0 rgba(27,31,36,0.04), inset 0 1px 0 rgba(255,255,255,0.25);
    transition: 80ms cubic-bezier(0.33, 1, 0.68, 1);
    transition-property: color,background-color,box-shadow,border-color;*/
}
.cta-delete:hover { /*Standard class*/
  color: #fff;
  background-color: #a40e26;
/*  border-color: rgba(27,31,36, 0.15);
  box-shadow: 0 1px 0 rgba(27,31,36,0.1), inset 0 1px 0 rgba(255,255,255,0.03);*/
}
.button-text-bright{ /*Standard class*/
    color: #FF0083;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
}
.button-text-lite-disabled{
    color: rgba(255,255,255,30%); 
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    line-height: 1.2;
    text-decoration: none;
    cursor: not-allowed;
}
.cta-lite{ /*Standard class*/
    border: 2px solid #FF0083;
    background-color: #fff;
    color: #FF0083;
}
.cta-lite:hover { /*Standard class*/
    border: 2px solid #DC0073;
    color: #DC0073;
    background-color: #f6f1f1;
    text-decoration: none;
}
.button-text-lite{ /*Standard class*/
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
}
.cta-disabled{ /*Standard class*/
    background-color: #BDC5D2;
    border-color: #BDC5D2;
    color: #fff;
    cursor: not-allowed;
}
.cta-indication{
  cursor: pointer;
}
.close-symbol {
    cursor: pointer;
    font-size: 20px;
    color: #515252;
}
.text-redirect-standard{
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    color: #515252;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.text-redirect-standard:hover{
    color: rgba(0,0,0,.9);
    font-weight: 600;
    text-decoration: none;
}
.paywall-teaser-text{
    font-size: 14px; 
    font-weight: 600; 
    text-align: center; 
    padding: 3px 0px;
}
.support-icon{
    height: 15px;
    width: 15px;
    margin-right: 5px;
    margin-bottom: 2px;
}
.cta-inactive-click-event{
  pointer-events: none;
  cursor: not-allowed;
}
.cta-active-click-event{
  pointer-events: auto;
  cursor: pointer;
}

/*Table classes*/
.table-borderless{
  border-collapse: collapse;
}
.header-upper-text{
  color: #58667E;
  font-size: 14px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .header-upper-text{
    font-size: 12px;
  }
}
.attibute-item{
  width: max-content;
  background-color: #D9D9D9;
  padding: 4px 5px 4px 5px;
  border-radius: 3px;  
  margin: 3px 5px 3px 0px;
}
.attibute-item-ice{
  width: max-content;
  font-weight: 600;
  font-size: 10px;
  background-color: #E0F2FE;
  padding: 4px 5px 4px 5px;
  border-radius: 3px;  
  margin: 3px 5px 3px 0px;
}
.attibute-item-dark-gain{
  width: max-content;
  background-color: #16c784;
  padding: 4px 5px 4px 5px;
  border-radius: 3px;  
  margin: 3px 5px 3px 0px;
}
.attibute-item-dark-loss{
  width: max-content;
  background-color: #EA3943;
  padding: 4px 5px 4px 5px;
  border-radius: 3px;  
  margin: 3px 5px 3px 0px;
}

.attibute-item-pad-small{
  width: max-content;
  font-weight: 600;
  font-size: 10px;
  background-color: #D9D9D9;
  padding: 2px 4px 2px 4px;
  border-radius: 3px;  
  margin: 3px 5px 3px 0px;
}
.attibute-item-gain-pad-small{
  width: max-content;
  font-weight: 600;
  font-size: 10px;
  background-color: #D1FAE5;
  padding: 2px 4px 2px 4px;
  border-radius: 3px;  
  margin: 3px 5px 3px 0px;
}
.attibute-item-loss-pad-small{
  width: max-content;
  font-weight: 600;
  font-size: 10px;
  background-color: #FEE2E2;
  padding: 2px 4px 2px 4px;
  border-radius: 3px;  
  margin: 3px 5px 3px 0px;
}
table .tbody-round-s-corner tr:first-child td:first-child {
  border-top-left-radius: 6px;
}
table .tbody-round-s-corner tr:first-child td:last-child {
  border-top-right-radius: 6px;
}
table .tbody-round-s-corner tr:last-child td:first-child {
  border-bottom-left-radius: 6px;
}
table .tbody-round-s-corner tr:last-child td:last-child {
  border-bottom-right-radius: 6px;
}
table .tbody-round-s-corner tr td:first-child {
  padding-left: 15px;
}
table .tbody-round-s-corner tr td:last-child {
  padding-right: 15px;
}
.table-item-baseline{
  vertical-align: baseline;
}

.action-menu{
  height: 20px;
  width: 20px;
  border-radius: 20px;
  cursor: pointer;
}
.action-menu:hover{
  background-color: #EFF2F5;
  box-shadow:  #EFF2F5 0px 0px 0px 3px;
}

/*Form input classes*/
.form-line-100 {
  display: inline-flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: flex-start;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 10px;
}

.form-field-input input, .form-field-input label{
  height: 42px;
  width: 100%;
  font-size: 14px;
  border: 2px solid #c9d0e0;
  border-radius: 5px;
  padding-left: 10px;
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
  box-sizing: border-box;         /* Opera/IE 8+ */      
}

.form-field-input input:focus-visible {
  /* outline-color: #ff0083; */
}


/*Transformation classes*/
.rotate-positive-90{
  transform: rotate(90deg);
}
.rotate-negative-90{
  transform: rotate(-90deg);
}


/*Background color classes*/
.white-background{
  background-color: #fff;
}


@keyframes pulse-blur {
  0%,
  90% {
    -webkit-filter: blur(6px);
    -moz-filter: blur(6px);
    -o-filter: blur(6px);
    -ms-filter: blur(6px);
  }
  50% {
    -webkit-filter: blur(16px);
    -moz-filter: blur(16px);
    -o-filter: blur(16px);
    -ms-filter: blur(16px);
  }
}
.content-blur{
  filter: blur(4px);
  animation: pulse-blur 1.5s ease 0s infinite;
  -webkit-animation: pulse-blur 1.5s ease 0s infinite;
  -moz-animation: pulse-blur 1.5s ease 0s infinite;
}




/*Font size & weight classes*/
.font-size-micro{
  font-size: 10px;
}
.font-size-s{
  font-size: 12px;
}
.font-size-sm{
  font-size: 14px;
}
.font-size-m-mobile{
  font-size: 16px;
}
@media (max-width: 768px) {
  .font-size-m-mobile{
    font-size: 14px;
  }  
}
.font-size-m{
  font-size: 16px;
}
.font-size-ml{
  font-size: 18px;
}
.font-size-l{
  font-size: 20px;
}
.font-size-xl{
  font-size: 22px;
}
.sub-text-color{
  color: #959595;
}

.font-normal{
  font-weight: 400;
}
.font-semi-bold{
  font-weight: 500;
}
.font-bold{
  font-weight: 600;
}

.cta-color{
  color: #FF0083;
}
.gain-color{
  color: #16C784;
}
.loss-color{
  color: #EA3943
}
.purple-highlight-color{
  color: #8A3FFC;
}
.orange-highlight-color{
  color: rgb(255,174,66);
}
.danger-color{
  color: #cf222e;  
}
.white-color{
  color: #fff;
}
.black-color{
  color: #000000;
}
.ice_color{
  color: #075985;
}

/*Image classes*/
.s-img{
  height: 15px;
  width: 15px;
}
.sm-img{
  height: 20px;
  width: 20px;
}
.ms-img{
  height: 25px;
  width: 25px;
}
.mss-img{
  height: 30px;
  width: 30px;
}
.m-img{
  height: 40px;
  width: 40px;
}
.l-img{
  height: 60px;
  width: 60px;
}
.sm-h-img{
  height: 20px;
}

/*Element width classes*/
.width-max{
  width: 100%;
}
.width-max-content{
  width: max-content;
}

.height-max{
  height: 100%;
}
.height-min-400{
  min-height: 400px;
}

.width-max-400{
  max-width: 400px;
}
.width-max-600{
  max-width: 600px;
}

.width-s {
	width: 100px;
  max-width: 100%;
}
.width-m {
  width: 400px;
}

.inline-70-overview-section{
  width: 70%;
}
.inline-60-overview-section{
  width: 60%;
}
.inline-48-overview-section{
  width: 48%;
}
.inline-40-overview-section{
  width: 40%;
}
.inline-30-overview-section{
  width: 30%;
}
@media screen and (max-width: 768px) {
  .inline-70-overview-section, .inline-60-overview-section, .inline-48-overview-section, .inline-40-overview-section, .inline-30-overview-section{
    width: 100%;
    padding-bottom: 20px;
  }
}

.desktop-width-min{
  min-width: 160px;
}
@media (max-width: 768px) {
  .desktop-width-min{
    min-width: 100px;
  }  
}


/*Text alignment standard classes*/
.text-c-align{
	text-align: center;	
}
.text-l-align{
  text-align: left; 
}
.text-r-align{
  text-align: right; 
}

/*Padding standard classes*/
.pad-0{
  padding: 0px;
}
.pad-s{
  padding: 5px;
}
.pad-sm{
  padding: 10px;
}
.pad-r-s{
  padding-right: 5px;
}
.pad-r-sm{
	padding-right: 10px;
}
.pad-r-ms{
  padding-right: 15px;
}
.pad-r-m{
  padding-right: 20px;
}
.pad-r-sl{
  padding-right: 25px;
}
.pad-r-ls{
  padding-right: 30px;
}
.pad-r-ls-mobile{
 padding-right: 30px; 
}
@media screen and (max-width: 768px) {
  .pad-r-ls-mobile{
    padding-right: 0px;
  }
}

.pad-l-s{
  padding-left: 5px;
}
.pad-l-sm{
  padding-left: 10px;
}
.pad-l-ms{
  padding-left: 15px;
}
.pad-l-m{
  padding-left: 20px;
}
.pad-l-sl{
  padding-left: 25px;
}
.pad-l-ls{
  padding-left: 30px;
}

.pad-t-s{
  padding-top: 5px;
}
.pad-t-sm{
  padding-top: 10px;
}
.pad-t-ms{
  padding-top: 15px;
}
.pad-t-m{
  padding-top: 20px;
}
.pad-t-sl{
  padding-top: 25px;
}
.pad-t-ls{
  padding-top: 30px;
}
.pad-t-l{
  padding-top: 35px;
}
.pad-t-xl{
  padding-top: 40px;
}
.pad-t-xxxxxl{
  padding-top: 65px;
}

.pad-b-s{
  padding-bottom: 5px;
}
.pad-b-sm{
  padding-bottom: 10px;
}
.pad-b-ms{
  padding-bottom: 15px;
}
.pad-b-m{
  padding-bottom: 20px;
}
.pad-b-sl{
  padding-bottom: 25px;
}
.pad-b-l{
  padding-bottom: 30px;
}

/*Margin classes*/
.margin-auto{
  margin: auto;
}
.margin-0{
  margin: 0px;
}
.margin-r-0{
  margin-right: 0px;
}
.margin-r-s{
  margin-right: 5px;
}
.margin-r-sm{
  margin-right: 10px;
}
.margin-r-ms{
  margin-right: 15px;
}
.margin-r-m{
  margin-right: 20px;
}

.margin-l-s{
  margin-left: 5px;
}
.margin-l-sm{
  margin-left: 10px;
}
.margin-l-ms{
  margin-left: 15px;
}
.margin-l-m{
  margin-left: 20px;
}
.margin-l-sl{
  margin-left: 25px;
}
.margin-l-ls{
  margin-left: 30px;
}
.margin-l-l{
  margin-left: 35px;
}
.margin-l-xl{
  margin-left: 40px;
}

.margin-t-s{
  margin-top: 5px;
}
.margin-t-sm{
  margin-top: 10px;
}
.margin-t-ms{
  margin-top: 15px;
}
.margin-t-m{
  margin-top: 20px;
}
.margin-t-sl{
  margin-top: 25px;
}
.margin-t-ls{
  margin-top: 30px;
}
.margin-t-l{
  margin-top: 35px;
}
.margin-t-xl{
  margin-top: 40px;
}
.margin-t-xxxl{
  margin-top: 50px;
}

.margin-b-sm{
  margin-bottom: 10px;
}
.margin-b-ms{
  margin-bottom: 15px;
}
.margin-b-m{
  margin-bottom: 20px;
}
.margin-b-sl{
  margin-bottom: 25px;
}
.margin-b-ls{
  margin-bottom: 30px;
}
.margin-b-l{
  margin-bottom: 35px;
}
.margin-b-xl{
  margin-bottom: 40px;
}
.margin-b-xxxl{
  margin-bottom: 50px;
}
.margin-b-150px{
  margin-bottom: 150px;
}

/*Border classes*/
.border-s{
  border: 1px solid;
}
.border-r-s{
  border-right: 1px solid;
}
.border-l-s{
  border-left: 1px solid;
}
.border-l-m{
  border-left: 2px solid;
}
.border-l-l{
  border-left: 3px solid;
}
.border-l-xl{
  border-left: 4px solid;
}
.border-l-xxl{
  border-left: 5px solid;
}
.border-t-s{
  border-top: 1px solid;
}
.border-b-s{
  border-bottom: 1px solid;
}


.border-color-light-grey {
  border-color: #D9D9D9;
}
.border-color-light-grey-2 {
  border-color: rgba(27,31,36,0.15);  
}
.border-color-light-grey-3 {
  border-color: #dadce0;
}
.border-color-dark-grey{
  border-color: #808080;
}
.border-color-l-dark-grey{
  border-left-color: #808080;
}
.border-color-pink{
  border-color: #FF0083;
}
.border-color-l-pink{
  border-left-color: #FF0083;
}
.light-grey-b-border{
  border-bottom: 1px solid #EFF2F5;
}

.border-radius-6{
  border-radius: 6px;
}
.border-radius-8{
  border-radius: 8px;
}
.border-radius-12{
  border-radius: 12px;
}
.border-radius-20{
  border-radius: 20px;
}

/*Header classes*/
.header{
    width: 100%;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}
.header-0{
    font-weight: 600;
    font-size: 26px;    
}
.header-1{
    font-weight: 600;
    font-size: 20px;    
}
.hero-sub-header-1 {
    font-size: 18px;
    font-weight: 400;
}
.hero-sub-header-2 {
    font-size: 16px;
    font-weight: 400;
}
.header-2{
    font-weight: 600;
    font-size: 18px;    
}
.header-3{
    font-weight: 600;
    font-size: 16px;    
}


.right-content-fade-transparent-purple{
  top: 0;
  right: 0;
  width: 50px;
  height: 100%;
  background: linear-gradient(to right, rgba(226, 227, 246 ,0) 0%, rgba(226, 227, 246 ,0.6) 25%, rgba(226, 227, 246 ,0.85) 45%, rgba(226, 227, 246 ,1) 100%);
  position: absolute;
}
.left-content-fade-transparent-purple{
  top: 0;
  left: 0;
  width: 50px;
  height: 100%;
  background: linear-gradient(to left, rgba(226, 227, 246 ,0) 0%, rgba(226, 227, 246 ,0.6) 25%, rgba(226, 227, 246 ,0.85) 45%, rgba(226, 227, 246 ,1) 100%);
  position: absolute;
}
.right-content-fade-transparent-white{
  top: 0;
  right: 0;
  width: 50px;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 25%, rgba(255, 255, 255, 0.85) 45%, rgba(255, 255, 255, 1) 100%);
  position: absolute;
}
.left-content-fade-transparent-white{
  top: 0;
  left: 0;
  width: 50px;
  height: 100%;
  background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 25%, rgba(255, 255, 255, 0.85) 45%, rgba(255, 255, 255,1) 100%);
  position: absolute;
}


.contain-content{
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
  box-sizing: border-box;         /* Opera/IE 8+ */    
}

.outer-flex-col-nowrap-center-end{
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-end;
  justify-content: center;
  align-content: flex-end;
}
.outer-flex-row-nowrap-center-start{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: center;
  align-content: flex-start;
}
.flex-col-nowrap-center{
  display: inline-flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  align-content: center;
}
.flex-col-nowrap-center-end{
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-content: center;
}
.flex-col-nowrap-start-space-between{
  display: inline-flex;
  align-items: stretch;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: space-between;
}
.flex-row-nowrap-center{
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
}
.flex-row-nowrap-center-start{
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.flex-row-wrap-start{
  display: inline-flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.flex-row-wrap-end{
  display: inline-flex;
  flex-direction: row;
  align-items: flex-end;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.flex-row-wrap-center-start{
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.flex-row-wrap-center-space-between{
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.flex-row-wrap-start-space-between{
  display: inline-flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
}
.flex-row-wrap-stretch-space-between{
  display: inline-flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: space-between;
}

.mobile-flex-row-wrap-center-space-between-center{
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;  
}
@media screen and (max-width: 768px) {
  .mobile-flex-row-wrap-center-space-between-center{
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;  
  }  
}



.hidden{ /*Standard class*/
    display: none;
    -webkit-transition: opacity 0.2s ease-in;
    -moz-transition: opacity 0.2s ease-in;
    -o-transition: opacity 0.2s ease-in;
    -ms-transition: opacity 0.2s ease-in;
    transition: opacity 0.2s ease-in;    
}

.hidden-left-slide{
  width:0px;
  -webkit-transition:height, 0.5s linear;
  -moz-transition: height, 0.5s linear;
  -ms-transition: height, 0.5s linear;
  -o-transition: height, 0.5s linear;
  transition: height, 0.5s linear;
}

