:root {
    --duration-10: 20ms;
    --duration-25: 50ms;
    --duration-50: .1s;
    --duration-75: .15s;
    --duration-100: .2s;
    --duration-150: .3s;
    --duration-200: .4s;
    --duration-300: .6s;
    --duration-400: .8s;
    --duration-500: 1s;
    --duration-1000: 2s;
}

pre {
    margin: 0;
    display: inline-block;
}

a.disabled {
    pointer-events: none;
    cursor: default;
}

.modal--isOpen:not(.modal--is-draggable),
.modal--isOpen:not(.modal--is-draggable) body,
.dialog--isOpen,
.dialog--isOpen body {
    overflow-y: hidden;
}

.hidden,
.no-js .hide-if-no-js,
.has-js .hide-if-js {
    display: none;
    visibility: hidden;
}

.clearfix:after {
    content: " ";
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
}

.screenReader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.3) none;
    z-index: 399998;
}

.button {
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: inherit;
    line-height: 1;
    border-radius: .25rem;
    font-family: inherit;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.button-link {
    background: transparent;
    color: inherit;
    font-size: inherit;
    border: none;
    cursor: pointer;
}

.button-disabled,
.button_disabled:hover {
    color: var(--color-secondary-dark);
    cursor: default;
}

.button--primary.button-disabled {
    color: var(--color-secondary-light);
    background-color: var(--color-primary-light);
}

.button-no-decoration {
    text-decoration: none;
}

.button:focus {
    outline: none;
}

.button--small {
    font-size: .75em;
    line-height: 1;
}

.button__panel {
    display: block;
}

.dl-table {
    display: flex;
    flex-wrap: wrap;
}

.dl-table dd {
    margin-left: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.float-right {
    float: right;
}

.block {
    display: block;
    width: 100%;
}


.relative {
    position: relative
}


.flex {
    display: flex;
}

@media screen and (min-width: 780px){
    .flex--nonMobile {
        display: flex;
    }
}

.flex-col {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.flex-row-right {
    flex-direction: row-reverse;;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-justify-content-space-between {
    justify-content: space-between;
}

.flex-grow-1 {
    flex-grow: 1;
}

.flex-center {
    justify-content: center;
    align-items: center;
}

.flex-justify-content-space-around {
    justify-content: space-around;
}

.flex-justify-content-center {
    justify-content: center;
}

.flex-justify-content-flex-end {
    justify-content: flex-end;
}

.flex-justify-content-stretch {
    justify-content: stretch;
}

.flex-start {
    align-items: flex-start;
}

.flex-align-items-center {
    align-items: center;
}

.flex-align-items-baseline {
    align-items: baseline;
}

.flex-basis-width45 {
    flex-basis: 45%;
}

.flex-gap {
    gap: attr(data-flex-gap, 1em);
}

.flex-gap--small {
    gap: attr(data-flex-gap, .5em);
}

.flex-grow > * {
    flex-grow: attr(data-flex-grow, 1);
}

/**
 * Grid
 */
.grid {
    display: grid;
}

.color-lightgray {
    color: lightgray;
}

.color-gray {
    color: rgb(128, 128, 128);
}

.color-danger {
    color: var(--color-danger, rgb(128, 22, 31));
}

.color-warning {
    color: var(--color-warning, rgb(250, 235, 204));
}

.color-secondary-dark {
    color: var(--secondary-dark-color);
}

.text-align-center {
    text-align: center;
}

.text-align-left {
    text-align: left;
}

.text-align-right {
    text-align: right;
}

.vertical-align-top {
    vertical-align: top;
}

.vertical-align-bottom {
    vertical-align: bottom;
}

.hover-cursor-pointer:hover {
    cursor: pointer;
}

.hover-cursor-no-drop:hover {
    cursor: no-drop;
}

.hover-cursor-s-resize:hover {
    cursor: s-resize;
}

.hover-cursor-e-resize:hover {
    cursor: e-resize;
}

.border-0 {
    border: 0;
}

.border {
    border: 1px solid var(--color-secondary-dark);
}

.border-top {
    border-top: 1px solid var(--color-secondary-dark);
}

.border-left {
    border-left: 1px solid var(--color-secondary-dark);
}

.border-right {
    border-right: 1px solid var(--color-secondary-dark);
}

.border-left-light {
    border-left-color: var(--secondary-light-color);
}

.border-right-light {
    border-right-color: var(--secondary-light-color);
}

.border-bottom {
    border-bottom: 1px solid var(--color-secondary-dark);
}

.border-bottom-light {
    border-bottom-color: var(--secondary-light-color);
}

.border-light {
    border-color: var(--secondary-light-color);
}

.hover-background:hover {
    background: var(--secondary-light-color);
}

.warning{
    width: 100%;
    display: block;
    margin: 5px;
    font-weight: 400;
    font-style: italic;
    color: red;
}

.transition {
    transition: all .4s ease-in-out;
}

.has-touch{
    touch-action: manipulation;
}

.text-small {
    font-size: 0.8em;
}

.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-decoration-none,
.text-decoration-none:hover {
    text-decoration: none;
}
