html {
  overflow-y: auto;
}

/* CSS source for progress: https://concisecss.com/archive/v2.0.0/add-ons/progress-bars/ */
.progress {
  background-color: #f9f9f9;
  color: #fff;
  box-shadow: inset 0 1px 1px rgba(100, 100, 100, 0.1);
  box-sizing: initial;
  color: #fff;
  font-size: 11px;
  font-size: 0.6875rem;
  height: 12px;
  line-height: 1.182;
  margin: 6px 0;
  position: relative;
  text-align: center;
  width: 100%;
}

.progress-small {
  font-size: 9px;
  font-size: 0.5625rem;
  height: 6px;
  line-height: 0.875;
}

.progress-large {
  font-size: 16px;
  font-size: 1rem;
  height: 25px;
  line-height: 1.7;
}

.progress > span {
  background-color: #2bc253;
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  width: auto;
}
.progress.progress-stacked > span {
  display: inline-block;
  float: left;
}

.input-error{
    display: none;
    color: red;
}

.invisible{
    display: none;
    color: red;
}
.thankyou-message{
    display: none;
    color: blue;
}

.sticky-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 2em;
  padding-right: 1em;
  padding-left: 1em;
}

/* Helper classes to make a table body scrollable */

.has-fixed-table-header {
  overflow-y: auto;
  max-height: calc(100vh - 300px);
}

.has-fixed-table-header thead th {
  position: sticky;
  top: 0;
}

.has-fixed-table-card {
  overflow-x: auto;
  max-width: calc(91vw);
}

.box {
    display: flex;
    flex-wrap: wrap;
}

.box>* {
flex: 1 1 360px; 
}

.two-column-container {
  display: flex;
  overflow-x: hidden;
  margin-right: auto;
    margin-left: auto;
}

.left-column {
  display: flex;
  max-width: inherit;
  flex-direction: column;
  justify-content: right;
}

.right-column {
  display: flex;
  max-width: inherit;
  flex-direction: column;
}

.left-item {
  padding: 0.3rem;
  max-width: inherit;
  text-align: right;
  white-space: nowrap;
}

.right-item {
  padding: 0.3rem;
  max-width: inherit;
  white-space: nowrap;
}

.image {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
/* Helper classes to control padding */

.p-t-20 {
  padding-top: 20px;
}

.p-b-0 {
  padding-bottom: 0px;
}

.p-t-0 {
  padding-top: 0px;
}

.p-b-20 {
  padding-bottom: 20px;
}

.has-text-timeout {
  color: orange;
}

.has-background-timeout {
  background-color: orange !important;
}

.tag:not(body).is-timeout {
  background-color: orange;
  color: #fff;
}

.tag:not(body).is-grey {
    background-color: #7a7a7a;
    color: #0a0a0a;
}

.tag:not(body).is-grey-light {
    background-color: #b5b5b5;
    color: #0a0a0a;
}

.is-link {
  cursor: pointer;
}

.has-overflow-ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.has-overflow-ellipsis:hover {
    overflow: visible;
    white-space: normal;
    text-overflow: clip;
    overflow-wrap: break-word;
}

.break-line {
    overflow: visible;
    white-space: normal;
    text-overflow: clip;
    overflow-wrap: break-word;
}

.width-80 {
  width: 80%;
}

.line-100{
width: 100%;
height: 0%;
border-bottom: 1px solid gray ;
position: relative;
}

.line-80{
width: 80%;
height: 0%;
border-bottom: 1px solid gray ;
position: relative;
}
