/* Use Inter font */
@import url('https://rsms.me/inter/inter.css');
body { font-family: 'Inter', -apple-system, sans-serif; }
@supports (font-variation-settings: normal) {
  body { font-family: 'Inter var', -apple-system, sans-serif; }
}

html {
    font-size: 15px;
}

@media (min-width: 576px) {
  html {
    font-size: 15px;
  }
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

@media (min-width: 992px) {
  html {
    font-size: 17px;
  }
}

@media (min-width: 1200px) {
  html {
    font-size: 18px;
  }
}

.bg-alt {
      color: #000;
      background-color: #f7f9fa;
  }

.bg-alt-card {
    background-color: #f7f9fa;
}  
  
.bg-accessories {
    background-color: #f7f9fa;
}

@media (prefers-color-scheme: dark) {
  body {
      color: #ffffff;
    background: #121212;
  }
  
  a {
    color: #ffffff;
  }
  
  .bg-alt {
      color: #ffffff;
      background-color: #181818;
  }
  
  .bg-accessories {
      color: #000;
      background-color: #181818;
  }
  
  .bg-alt-card {
      background-color: #202020;
  }
  
  .bg-alt-card .card-body p {
      color: #ffffff;
  }
  
  img {
    opacity: .90;
  }
}

.btn-primary {
    box-shadow: rgba(0, 118, 255, 0.388235) 0px 4px 14px 0px;
}

.btn-success {
    box-shadow: rgba(30, 126, 52, 0.388235) 0px 4px 14px 0px;
}

article h2, article h3, article h4, article h5 {
	padding-top: 1em;
}

article section {
	padding-bottom: 5em;
}

h1 a, h2 a, h3 a, h4 a, h5 a {
	color: black;
}

article h1 {
	font-size: 1.5em;
	font-weight:600;
}

article h2 {
	font-size: 1.2em;
	font-weight:600;
}

article h3, article h4, article h5, article h6 {
	font-size: 1em;
	font-weight:600;
}

article .table th, article strong {
	font-size: 1em;
	font-weight:600;
}

/* Show cevron after links */
a.cevron::after {
	content: " →";
}

ul {
    margin: 0;
    padding-left: 5%;
    list-style-type: circle;
}

/* Copied from finances.css */
.image-center {
	display:block;
	margin:auto;
}

/* All images are like `img-fluid`*/
img {
  max-width: 100%;
  height: auto;
}

.img-inline {
	display: inline-block;
	margin: 0 0.3em;
}

mark {
	background-color: rgb(247, 239, 167);
}

/* Code */
code {
    font-family: monospace;
}

code:not(pre code) {
    color: #f8f8f2;
    background-color: #282a36;
    padding: 0.1em;
    padding-left: 0.4em;
    padding-right: 0.4em;
    border-radius: 0.2rem;
}

pre {
    padding: 1em;
/*    background-color: #F5F5F5 !important; /* Overrides the style defined by Chroma */
/*    border: 1px solid #DDD;*/
    border-radius: 0.5rem;
    white-space: pre-wrap; /* wrap text if necessary */
}

.negative-value {
	color: red;
}

.positive-value {
	color: green;
}

.text-secondary {
    color: rgba(60, 60, 67, 0.6);
}

.text-tertiary {
    color: rgba(60, 60, 67, 0.3);
}

.text-quartenary {
    color: rgba(60, 60, 67, 0.15);
}

.text-orange {
    color: rgba(255, 149, 0, 1);
}

/* https://docs.microsoft.com/en-us/typography/opentype/spec/os2#usweightclass */
.font-weight-medium {
    font-weight: 500;
}

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

.letter-spacing-1 {
    letter-spacing: 1px;
}

.shadow-xl {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.3) !important;
}

.rounded-xl {
  border-radius: 0.95rem !important;
}

.rounded-xxl {
  border-radius: 1.3rem !important;
}

.user-scale{
    list-style: none;
    width: 100%;
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
}

@media screen and (min-width: 1200px){
    .assistant-scale{
	    list-style: none;
    }
    .assistant-scale li{
        display: inline-block;
        width: 30%;
        margin: 0 auto;
        align-items: center;
        justify-content: center;
        padding: 1%;
    }
}
    
@media screen and (max-width: 1200px){
    .user-scale{
        flex-wrap: wrap;
        width: 100%;
    }
    .user-scale div{
        width: 30%;
        padding: 2%;
    }
    .assistant-scale{
        width: 75%;
        list-style: none;
        display: table;
        margin: 0 auto;
    }
    .assistant-scale li{
        padding: 2.5%;
    }
}