/* COMMON */
:root {
--page-bg: #f5f5f5;
--blue1: hsl(206.57,99.06%,41.57%); /*#0176d3; slds-g-color-brand-base-50 (Brand up)*/
--blue2: hsl(209.77,98.52%,26.47%); /*#014486; slds-g-color-brand-base-30 (Brand over)*/
--blue3: #032d60; /*slds-g-color-brand-base-20 (Brand down)*/
--blue4: #eaf5fe; /*slds-g-color-palette-cloud-blue-95*/
--grey1: #F3F3F3; /*slds-g-color-neutral-base-95*/
--grey2: #5F5F5F; /*slds-g-color-neutral-base-65*/
--grey3: #e5e5e5; /*slds-g-color-neutral-base-90*/
--grey4: #f5f5f5; /*trailhead background*1
--grey5: #F1F1F1;
--grey6: #9A8F87;
--text1: #233A47; /*slds-g-color-neutral-base-10 (Main text)*/
--text2: #000000; /*black*/
--text3: #616161; /*slds-g-color-neutral-base-10 (Main text)*/
--text4: #1e1e1e;
--white: #FFFFFF; /*white*/
--black: #000;
--correct: #2e844a !important; /*slds-g-color-success-base-50*/
--incorrect: #ba0517 !important; /*slds-g-color-error-base-40*/
--generate: #bc0560; /*pink*/
--fontsize1: 16px;
--fontsize2: 14px;
--fontsize3: 20px;
--dk-brand: #4e758d; /*body gradient color*/
--dk-gray: #20272c; /*body gradient color*/
--focus: #d71ef7; /*focus color*/

}
* {
  margin: 0;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Salesforce Sans", sans-serif;
  font-size: 16px;
  max-width: 815px;

}
*:focus {
    outline: 2px solid var(--focus);
}
html{
  max-width: 815px;
  max-height: 1000px;
  background: var(--grey4);
  justify-content: center;
}
body{
  background: var(--grey4);
}
p {
  color: var(--text4);
}
strong b .boldtext {
  font-family: "Salesforce Sans Bold", sans-serif;
}
.code {
  font-family:"Font Family: courier-new", monospace;
}
/*class for centering images*/
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

ul {
  background: ;
  color: #000;
  list-style-type:disc; /*disc, circle, square, none*/
  letter-spacing: normal; /* normal, length */
  line-height: 25px; /* number, length, percent */
  white-space: normal; /* normal, nowrap, pre, pre-line, pre-wrap  */
  word-spacing: 0px;
  margin-top: 0px;
  margin-left: 10px;
  margin-bottom: 3px;
  padding-left: 15px;
}
ol {
  background: ;
  list-style-type: decimal;
  color: ;
  letter-spacing: normal; /* normal, length */
  line-height: normal; /* number, length, percent */
  white-space: normal; /* normal, nowrap, pre, pre-line, pre-wrap  */
  word-spacing: 0px;
  margin-top: 0px;
  margin-left: 10px;
  margin-bottom: 10px;
  padding-left: 15px;
}
ul:first-child {
  margin-top: 0px;
}
ul:last-child {
  margin-bottom: 0px;
}


/* Styling the second level */
ol ol {
  list-style-type: lower-alpha; /* a, b, c... */
  margin-left: 30px; /* Further indentation */
}

/* Styling the third level */
ol ol ul {
  list-style-type: lower-roman; /* i, ii, iii... */
  margin-left: 40px;
}

/* Styling unordered lists at any level */
ul {
  list-style-type: disc; /* Default bullet */
}

ul ul {
  list-style-type: circle; /* Hollow circle for nested unordered lists */
}


.li2 {
  list-style-type:circle; /*disc, circle, square, none*/
  margin-left: 40px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.li3 {
  list-style-type:square; /*disc, circle, square, none*/
  margin-left: 80px;
  margin-top: 10px;
  margin-bottom: 10px;
}
emphasis {
  font-family: "Salesforce Sans Italic", sans-serif;
}
a {

}

/* Accordion */

@layer step2styles, markers;

aside{
  box-sizing: border-box;
  max-width: 815px;
  max-height: 1000px;
  height: 1000px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 3px 7px 1px;
  border-radius: 8px;
  padding: 40px;
  background-color: var(--white);
  overflow-y: auto;
}
.contentBx{
  background: var(--white);
}
details {
  /* background: var(--blue3); */
  border-radius: 0.3rem;
  transition: .50ms;
  padding: 5px;
  color: var(--white);
  cursor: pointer;
}
details[open] {
    padding-bottom: .5em;
    background: var(--white);
    overflow-y: auto;
}

details > summary {
  list-style: none;
}

details > summary::marker, /* Latest Chrome, Edge, Firefox */
details > summary::-webkit-details-marker /* Safari */ {
  display: none;
}

summary{
  background: var(--blue3);
  padding:10px;
  border-radius: 4px;
}
summary:active{
  color: #0d9dda; /*Salesforce Blue*/
  font-family: "Salesforce Sans Bold", sans-serif;
}
summary:hover {
  color: #0d9dda; /*Salesforce Blue*/
  font-weight:700;
}

summary::before,
summary::after {
    /* transition: 200ms; /*speed of + change*/ */
    margin-bottom: 20px;
    margin-right: 10px;
  }
summary::before{
  margin-top: 1px; /*fix the plus sign*/
}

@layer markers {
  summary {
  position: relative;
}

summary::marker {
  content: none;
}
summary::before,
summary::after {
  content: '';
}
summary::before,
summary::after {
    width: .75em;
    height: 0;
    border-bottom: 2px solid;
    position: absolute;
    top: calc(50% - 1px);
    right: 0;
    transform: translateY(-50%);
  }
summary::after {
  transform: rotate(90deg);
  transform-origin: 50% 50%;
}
[open] summary::after {
  transform: rotate(0deg);
}
[open] summary {
  /* color: #8cd3f8; */
  background: var(--grey2) !important;
  transition: .8s;
}
}

/* styles ported over from the second example */
@layer step2styles {
  details {
    border: 1px solid;
    padding: 0 1rem;
    background: var(--white);
  }
  details + details {
    border-top: none;
  }
  details[open] {
      padding-bottom: 1em;
      border: .1px solid var(--grey3);
  }
  summary {
    padding: 1rem 2em 1rem 0;
    font-size: 1.25rem;
    font-weight: bold;
    cursor: pointer;
  }
}


/* XML IMPORT_EXPORT */

#exportxml {
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-top: 0px;
}
#xmlbutton{
  background-color: var(--generate);
  color: #ffffff;
  cursor: pointer;
  margin-top: 5px;
  padding: 0px 5px;
}

.inlinediv {
  display: block;
}
