* {
  box-sizing: border-box;
}

html {
  font-size: 1em;
  scroll-padding-top: 10em;
}

body {
  background-color: white;
  color: #5a6072;
  display: flex;
  flex-direction: column;
  font-family: Lato, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 400;
  margin: 0;
  min-height: 100vh;

  /* needed to keep offset imagery from causing horizontal scrolling */
  overflow-x: hidden;
}

body header.bootstrap {
  position: sticky;

  /* if we have a promo banner, top: -48px, otherwise top: 0 */

  /* top: 0; */
  top: -48px;
  z-index: 10000;
}


@media screen and (max-width: 62rem) {
  body header.bootstrap {
    top: 0;
  }
}

img,
svg,
object {
  max-width: 100%;
  vertical-align: bottom;
  box-shadow: 0 3px 24px rgba(0, 0, 0, .08);
  
}


h1,
h2,
h3,
h4,
h5,
h6 {
  color: #22242b;
  font-weight: 900;
}

h1,
.h1 {
  font-size: 40px;
}

@media screen and (max-width: 60em) {
  h1,
  .h1 {
    font-size: 24px;
  }
}

h2 {
  font-size: 32px;
}


ul,
ol {
  padding-inline-start: 20px;
}

/* ordered lists need a smidge more padding */
ol {
  padding-inline-start: 25px;
}

p,
/* not all blog post list items generate a p tag, so we need to match the type */
.blog-post li,
.colrows-Legal li {
  font-size: 18px;
  line-height: 30px;
}

p {
  line-height: 26px;
}

p,
li {
  margin-bottom: 1.3em;
}


a {
  color: #f48400;

  /* set a display context for links, helps prevent issues where titles
   * inside of links have odd formatting like
   * https://github.com/metabase/metabase.github.io/issues/573 */
  display: inline-block;
  text-decoration: none;
}

.container a:not(.Button, .block).no-text-decoration:hover,
.no-text-decoration {
  text-decoration: none;
}


.Button {
  background-color: transparent;
  border: 1px solid #f48400;
  border-radius: 6px;
  color: #f48400;
  display: block;
  font-family: Lato, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 0.843rem;
  font-weight: 700;
  padding: 16px 20px;
  text-align: center;
}


.m-0 {
  margin: 0;
}

.flex-column {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.inline-block {
  display: inline-block;
}

.border-bottom {
  border-bottom: 1px solid #e8e8e8;
}


.container {
  margin: 0 auto;
  max-width: 1640px;
  padding: 0 2.074em;
  position: relative;
}

.container::after,
.row::after {
  clear: both;
  content: "";
  display: table;
}
pre code {
  display: block;
  overflow-x: auto;
}

pre,
code {
  text-align: left;
}


code {
  background-color: #f9fbfe;
  border: 1px solid #eceff2;
  border-radius: 6px;
  color: #2d86d4;
  display: inline;
  overflow-x: auto;
  padding: 8px;
  white-space: pre;
}


/* For devices larger than 400px */
@media (min-width: 400px) {
  .container {
    padding: 0;
    width: 85%;
  }
}

.colrows-Logo {
  background-repeat: no-repeat;
  height: 50px;
  box-shadow: none !important;
  margin-top: 2px !important;
  margin-bottom: 2px !important;
}

.colrows-Logo-small {
  background-repeat: no-repeat;
  background-size: 32px;
  height: 32px;
  width: 32px;
}


.border-right-neutral-95 {
  border-right: 1px solid #f1f2f4;
}

.fw-bold {
  font-weight: bold;
}


.LearnPost p {
  color: #4c5773;
  line-height: 30px;
}


.body-footer {
  background-color: inherit;
  position: relative;
  z-index: 2;
}

.copy-clip-container {
  align-items: end;
  display: flex;
  flex-direction: row;
}

.copy-clip-container.h2 {
 
  border-bottom: 1px solid #c6c9d2; 
}

.sub-ul{
  padding-top: 20px;
}