:root {
  --dragdropfontsize: 15px;
  --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;
  --blue5: #CEE8FD;
  --btnbrandup: hsl(206.57,99.06%,41.57%); /*#0176d3; slds-g-color-brand-base-50 (Brand up)*/
  --btnbrandover: hsl(209.77,98.52%,26.47%); /*#014486; slds-g-color-brand-base-30 (Brand over)*/
  --btnbranddown: #032d60; /*slds-g-color-brand-base-20 (Brand down)*/
  --btnneutralup: #ffffff;
  --btnneutralover: #e7ebf1;
  --btnneutraldown: #e2e2e2;
  --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*/
  --grey5: #F1F1F1;
  --grey6: #9A8F87;
  --grey7: #E6E6E6;
  --text1: #233A47; /*slds-g-color-neutral-base-10 (Main text)*/
  --text2: #000000; /*black*/
  --text3: #616161; /*slds-g-color-neutral-base-10 (Main text)*/
  --white: #FFFFFF; /*white*/
  --black: #000;
  --correct: #2e844a !important; /*slds-g-color-success-base-50*/
  --incorrect: #ba0517 !important; /*slds-g-color-error-base-40*/
  --fontsize1: 16px;
  --fontsize2: 14px;
  --fontsize3: 20px;
  --fontsize4: 15px;
  --fontsize5: 18px;
  --dk-brand: #4e758d; /*body gradient color*/
  --dk-gray: #20272c; /*body gradient color*/
  --focus: #d71ef7; /*focus color*/
  --generate: #bc0560; /*pink*/
}
html{
    height:500px;
    width:875px;
  }
body {
  box-sizing: border-box;
  margin: 0;
  background-color: #f5f5f5;
  font-family: 'Salesforce Sans Regular', sans-serif;
  max-width: 875px;
  max-height: 500px;
}
*:focus {
    outline: 2px solid var(--focus);
}
strong {
  font-family: "Salesforce Sans Bold", sans-serif;
}
b {
  font-family: "Salesforce Sans Bold", sans-serif;
}
.boldtext {
  font-family: "Salesforce Sans Bold", sans-serif;
}
.emphasis {
  font-family: "Salesforce Sans Italic", sans-serif;
}
.code {
  font-family:"Font Family: Courier-New", monospace;
}

.containerall {
  box-sizing: border-box;
  position: relative;
  max-width: 875px;
  min-width: 350px;
  /*height: 500px;*/
  min-height: 500px;
}
.grid-container {
  box-sizing: border-box;
  margin: auto;
  max-width: 875px;
  min-height: 420px;
  max-height: 420px;
  background-color: white;
  overflow: auto;
}
#col1data, #col2data {
  display:inline-flex;
  flex-direction: column;
}
#col1data, #col2data {
  margin-right: 5px;
}
#col1data {
  justify-content:flex-start;
  margin-left: 5px;
}
#col2data {
  justify-content:top;
  margin-left: 2px;
}
#col1data div {

}
#col2data div {

}
/* blue bar */
#topline {
 box-sizing: border-box; /*keeps box size constant, even after applying margins or padding*/
 height: 15px;
 border-radius: 5px 5px 0px 0px;
 border-bottom: solid white 2px;
 background-color: var(--blue3);
 background-image: linear-gradient(135deg, var(--black) 0%, var(--blue3) 20%);
 background-position: center;
 background-repeat: no-repeat;
 background-size: cover;
 background-attachment: fixed;
}
#col1title {
  grid-area: a;
  margin-left: 0;
}
#col2title {
  grid-area: b;
  margin-right: 0;
}
#col1data {
  grid-area: c;
}
#col2data {
  grid-area: d;
}

/*Accessible icons svg*/
#icon_acc{
  background-image:url("https://dfc-data-production.s3.amazonaws.com/files/ti/img/icon_acc01.svg");
  width:30px;
  height: 30px;
  cursor:pointer;
  position:absolute;
  top: 469px;
  border-radius: 50%;
  border: none;
  background-color: var(--white);
  left: 10px;
  z-index: 10;
  background-repeat: no-repeat;
}
#icon_acc:hover{
  background-image:url("https://dfc-data-production.s3.amazonaws.com/files/ti/img/icon_acc02.svg");
}
#icon_return{
  background-image:url("https://dfc-data-production.s3.amazonaws.com/files/ti/img/icon_return01.svg");
  width:30px;
  height:30px;
  cursor:pointer;
  position:absolute;
  top: 469px;
  border-radius: 50%;
  border: none;
  background-color: var(--white);
  left: 10px;
  z-index: 10;
  background-repeat: no-repeat;
}
#icon_return:hover{
  background-image:url("https://dfc-data-production.s3.amazonaws.com/files/ti/img/icon_return02.svg");
}
[id^="drag"] {
  display: block;
  text-align: left;
  border-radius: 0;
  box-shadow: none;
}
[id^="drag"]:hover {

}
[id^="drag"]:first-of-type {
  margin-top: 0px;
}
[id^="drag"]:last-of-type {
  margin-bottom: 0px;
}

#titleline {
  display: grid;
  grid-template-areas: 'a b';
  grid-template-columns: 50% 50%;
}
#dataline {
  display: grid;
  grid-template-areas: 'c d';
  grid-template-columns: 50% 50%;
  height: 420px;
}

.col1dataaccessible {
  row-gap: 0px !important;
  /*min-height: 29.2px;*/
}
.dragdatastart {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px black solid;
  color: black;
  padding: 0px 5px;
  font-size: var(--dragdropfontsize);
  background-color: var(--blue4);
}
.dragdatastart:hover{
  background-color: var(--blue5);
}
.dragdataindrop {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px black solid;
  padding-left: 5px;
  color: black;
  font-size: var(--dragdropfontsize);
  background-color: var(--grey1);
}
.dropsingleanswer {
  min-height: 0 !important;
}
.dragaccessible {
  margin-bottom: 0 !important;
  min-height: 0 !important;
  border: none !important;
  font-family: 'Salesforce Sans Bold', sans-serif;
}
#gridfooter {
  grid-area: e;
  background-color: var(--grey7);
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-height: 25px;
  min-height: 25px;
}
button {
 cursor: pointer;
}
.button_brand{
  font-family: 'Salesforce Sans Regular', sans-serif;
  color: var(--white);
  box-shadow: 0 0 0 1px hsl(0deg 0% 0% / 10%);
  border: solid transparent 1px;
  background-color:  var(--blue1);
  border-radius: 4px;
}
#gridfooter button {
  font-size: 18px;
  font-family: 'Salesforce Sans Bold';
}
#gridfooter button:hover {
  cursor: pointer;
  background-color: var(--blue2);
}
#gridfooter button:active {
  cursor: pointer;
  background-color: var(--blue3);
}
.button_neutral{
  color: #0070D2;
  box-shadow: 0 0 0 1px hsl(0deg 0% 0% / 10%);
  border: solid transparent 1px;
  border-color: #0070D2;
  background-color:  #FFFFFF;
  border-radius: 4px;
}
#gridfooter button.button_neutral:hover {
  cursor: pointer;
  background-color: #e7ebf1;
}
#gridfooter button.button_neutral:active {
  cursor: pointer;
  background-color: #e2e2e2;
}

#notifytext {
  margin-left: 10px;
  font-family: 'Salesforce Sans Bold';
}
#footerbuttons {
  text-align: right;
}
.coltitle {
  height: 20px;
  min-height: 20px;
  max-height: 20px;
  padding: 5px;
  background-color: var(--grey2);
  color: white;
  font-size: var(--fontsize1);
  font-family: 'Salesforce Sans Bold';
  margin-right: 2px;
}
.colsubtitle {
  font-size: var(--fontsize1);
  font-family: 'Salesforce Sans Bold';
  margin-top: 5px;
  margin-bottom: 1px;
  min-height: 0px !important;
}
.dropdatanoitems {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px var(--grey6) dashed;
  color: #C6BEBA;
  font-family: 'Salesforce Sans Regular';
  text-align: center;
  font-size: var(--fontsize5);
  padding: 0px;
  margin-bottom: 0px;
}
.dropdatawithitems {
  display: flex;
  flex-direction: column;
  border: 1px var(--grey6) dashed;
  color: #C6BEBA;
  text-align: center;
  padding: 0px;
}
.dragover {
  border: 1px var(--blue1) solid;
  background-color: var(--grey1);
}
.dragoverstart {
  background-color: var(--grey1);
}
.hide {
  display: none;
}
[id^="drag"]:hover {
  cursor: pointer;
}
.dragcorrect {
  background-color: var(--correct);
  color: white;
}
.dragincorrect {
  background-color: var(--incorrect);
  color: white;
}
[id^="ariadrag"] {
  border: none;
  padding-left: 3px;
}
[id^="answerariat"] {
  margin: 0px 0px 0px 0px;
  font-size: 14px;
  padding-left: 3px;
  border: none;
}
[id^="aselect"] {
  margin: 0px 0px 0px 0px;
  font-size: 14px;
  padding-left: 3px;
  border: none;
}
select {
  margin-top: 2px;
  font-size: 14px;
}
#accessbutton {
  margin-left: 10px;
}
#textariaanswer {
  margin: 0px;
  padding-left: 5px;
  font-family: 'Salesforce Sans Bold';
  font-size: 14px;
  background-color: var(--black);
  color: var(--white);
}

#xmlbutton{
  background-color: var(--generate);
  color: #ffffff;
  cursor: pointer;
}
#exportxml {
  padding-left: 10px;
  padding-top: 5px;
}
@media only screen and (max-width: 750px) and (min-width: 580px) {
  .coltitle {
    font-size: 18px;
  }
  .colsubtitle {
    font-size: 16px;
  }
  .dragdatastart {
    font-size: 13px;
  }
  #gridfooter button {
    font-size: 16px;
  }
  #notifytext {
    font-size: 14px;
  }
  #col1data {

  }
}
@media only screen and (max-width: 579px) {
  .coltitle {
    font-size: 14px;
  }
  .colsubtitle {
    font-size: 13px;
  }
  .dragdatastart {
    font-size: 11px;
  }
  .dragdatastart {
    padding: 0px 5px;
  }
  .dropdatanoitems {
    font-size: 16px;
    padding: 0px 5px !important;
  }
  .col1dataaccessible {
    font-size: 14px;
  }

  #gridfooter button {
    font-size: 12px;
  }
  #notifytext {
    font-size: 10px;
  }
}
