:root {
    --font-family: BlinkMacSystemFont,-apple-system,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
    --link-color:#afa400;

    --white-color: #fff;
    --white-bg: #fff;
    --white-btn-text: #333333;

    --light-color: #ececec;
    --light-bg: #e7e7e7;
    --light-bg-light: #d5d5d5;
    --light-btn-text: #4e4e4e;

    --lighter-color: #f3f3f3;
    --lighter-bg: #f2f2f2;
    --lighter-bg-light: #f8f8f8;
    --lighter-btn-text: #565656;

    --gray-color: #606060;
    --gray-bg: #606060;
    --gray-bg-light: #a2a2a2;
    --gray-btn-text: #ffffff;

    --dark-color:#2f2f2f;
    --dark-bg:#2f2f2f;
    --dark-bg-light:#514545;
    --dark-btn-text:#f5f5f5;

    --darker-color:#242424;
    --darker-bg:#242424;
    --darker-bg-light:#2b2b2b;
    --darker-btn-text:#f5f5f5;

    --red-color:#910000;
    --red-bg:#d53131;
    --red-bg-light: #ef8080;
    --red-btn-text:#f5f5f5;

    --blue-color:#58bce3;
    --blue-bg:#94d7ff;
    --blue-bg-light: #c6e0e6;
    --blue-btn-text:#4e4e4e;

    --green-color: #58e36b;
    --green-bg: #95e368;
    --green-bg-light: #d1e6c6;
    --green-btn-text:#4e4e4e;

    --brown-color: #8a6f34;
    --brown-bg: #988036;
    --brown-bg-light: #b7ac91;
    --brown-btn-text: #2f220d;

    --yellow-color: #dbcd00;
    --yellow-bg:#f2e419;
    --yellow-bg-light:#ece255;
    --yellow-btn-text:#484623;

    --darker-shade: rgba(100,100,100,0.7);
    --dark-shade: rgba(100,100,100,0.5);
    --gray-shade: rgba(150,150,150,0.5);
    --light-shade: rgba(200,200,200,0.4);
    --lighter-shade: rgba(200,200,200,0.2);

    --top-menu-height: 59px;
    --left-menu-width: 200px;

    --button-text-color: #4e4e4e;
    --button-border-color: rgba(187, 187, 187, 0.27);
}

a {color:inherit;text-decoration:none}
a:hover {text-decoration: underline}
.disabled { pointer-events: none;cursor: default;text-decoration: none;opacity:0.5}
button {background:transparent;border:none;padding:0;margin:0}
ul {list-style-type:none;padding:0;margin: 0;}

body, button, input, select, textarea {font-family: var(--font-family);}

hr {margin:1em 0;border:0;border-top:1px solid #ccc}

.empty:empty {display: none!important;}

.ta-left {text-align:left!important;}
.ta-right {text-align:right!important;}
.ta-center {text-align: center!important;}

.txt-small {font-size:0.8rem;}
.txt-medium {font-size:1rem}
.txt-large {font-size:1.1rem}
.txt-xl {font-size:1.2rem}
.txt-xxl {font-size:1.3rem}
.txt-xxxl {font-size:1.4rem}
.txt-xxxxl {font-size:1.5rem}

.txt-italic {font-style:italic}
.txt-lighter {font-weight:lighter}
.txt-normal {font-weight:normal}
.txt-bold {font-weight:bold}
.txt-bolder {font-weight:bolder}

.txt-color-link {color:var(--link-color);}

.d-flex {display:flex!important}
.d-grid {display:grid!important}
.d-inline-flex {display:inline-flex!important}
.d-block {display:block!important;}
.d-inline {display:inline!important;}
.d-inline-block {display:inline-block!important;}
[hidden], .d-none {display:none!important;}

.ai-center {align-items:center!important}
.ai-baseline {align-items:baseline!important}
.ai-start {align-items:start!important}
.ai-flex-start {align-items:flex-start!important}
.ai-flex-end {align-items:flex-end!important}
.ai-stretch {align-items:stretch!important}

.jc-between {justify-content: space-between!important}
.jc-around {justify-content: space-around!important}
.jc-center {justify-content: center!important}
.jc-start {justify-content: start!important}
.jc-flex-start {justify-content: flex-start!important}
.jc-flex-end {justify-content: flex-end!important}
.jc-stretch {justify-content: stretch!important}

.fv-small-caps {font-variant:small-caps!important;}

.fd-row {flex-direction:row!important}
.fd-row-reverse {flex-direction:row-reverse!important}
.fd-column {flex-direction:column!important}
.fd-column-reverse {flex-direction:column-reverse!important}

.flex-wrap {flex-wrap:wrap}
.flex-wrap-reverse {flex-wrap:wrap-reverse}

.pos-sticky-y {position:sticky;top:0;z-index:999}
.pos-relative {position:relative;}
.pos-fixed {position:fixed;}
.pos-absolute {position:absolute;}
.pos-static {position:static;}

.flex-auto {flex:1 1 auto}

label[for] {cursor:pointer}

.m-auto {margin:auto;}
.mx-auto {margin-left:auto;margin-right:auto}
.my-auto {margin-top:auto;margin-bottom:auto}
.overflow-auto {overflow:auto}
.overflow-x-auto{overflow-x:auto}
.overflow-y-auto{overflow-y:auto}
.one-line {white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}

.field .icon {align-items: center;display: inline-flex;justify-content: center;color: #c1c1c1;pointer-events: none;position: absolute;top: 0;width: 2.25em;z-index: 4;height:100%;}
.field .icon:not(.right) ~ .form-input {padding-left:2.25em}
.field .icon.right {right:0}
.field .icon.right ~ .form-input {padding-right:2.25em}

.field .tag {margin:0 -1px 0 0;background-color: #f2f2f2;border-radius: 3px;color: #363636;display: flex;align-items: center;justify-content:center;white-space: nowrap;border: 1px solid rgb(219, 219, 219);font-size:inherit}
.field .tag:not(.right){border-top-right-radius: 0;border-bottom-right-radius: 0}
.field .tag.right {border-top-left-radius: 0;border-bottom-left-radius: 0;margin-left:-1px;}

.field + .field {margin-top:.88rem}
.field .label {display:block; margin-bottom:.500rem;font-weight:500;color: var(--dark-color);white-space: nowrap;text-overflow: ellipsis;overflow: clip;}
.field-input {font-size: 1rem;position: relative;text-align: left;white-space:nowrap;display:flex;line-height: 22px;}
.button, .form-input {display: inline-flex;appearance:none;-moz-appearance: none;-webkit-appearance: none;align-items: center;border: 1px solid rgba(0, 0, 0, 0.2);border-radius: 2px;box-shadow: none;font-size: 1rem;justify-content: center;padding: .5em calc(.625em - 1px)  .5em calc(.625em - 1px); position: relative;}
.field .form-input {background-color: #fff;border-color: #dbdbdb;color: #363636;box-shadow: inset 0 1px 2px rgba(10,10,10,.1);max-width: 100%;width:100%}

.form-input.dark {background-color: var(--dark-bg); border-color: transparent;color: var(--dark-btn-text);}
.form-input::placeholder { color:rgba(54,54,54,.6) }
.form-input.dark::placeholder { color:rgb(155,154,154) }

.button-toggle,
.button {background-color: #e3e3e3;border-color:#dbdbdb;border-width:1px;border-radius: 3px;color:var(--button-text-color);cursor:pointer;padding:0.518em 0.95em 0.518em 0.95em;text-align:center;white-space:nowrap;border-color:var(--button-border-color);box-shadow: inset 0px 0px 1px #fff;}
label:hover > .button, .button-toggle:hover,
.button:hover {text-decoration:none;-webkit-filter: brightness(105%) ;-moz-filter: brightness(105%)  ;-o-filter: brightness(105%) ;filter: brightness(105%);box-shadow: inset 1px -1px 0 #6e6e6e4d;  }
.button-toggle:active,
.button:active {-webkit-filter: brightness(95%) ;-moz-filter: brightness(95%)  ;-o-filter: brightness(95%) ;filter: brightness(95%);box-shadow: inset 0 0 1px rgba(60,60,60,.3); }

:checked + .button-toggle.light, .button.light { background-color: var(--light-bg); color: var(--light-btn-text);}
:checked + .button-toggle.lighter, .button.lighter { background-color: var(--lighter-bg); color: var(--lighter-btn-text);}
:checked + .button-toggle.lighter.light, .button.lighter.light { background-color: var(--lighter-bg-light); }
:checked + .button-toggle.dark, .button.dark { background-color: var(--dark-bg); color: var(--dark-btn-text);}
:checked + .button-toggle.dark.light, .button.dark.light { background-color: var(--dark-bg-light); }
:checked + .button-toggle.darker, .button.darker { background-color: var(--darker-bg); color: var(--darker-btn-text);}
:checked + .button-toggle.darker.light, .button.darker.light { background-color: var(--darker-bg-light); }
:checked + .button-toggle.gray, .button.gray { background-color: var(--gray-bg); color: var(--gray-btn-text);}
:checked + .button-toggle.gray.light, .button.gray.light { background-color: var(--gray-bg-light); }
:checked + .button-toggle.red, .button.red { background-color: var(--red-bg); color: var(--red-btn-text); }
:checked + .button-toggle.red.light, .button.red.light { background-color: var(--red-bg-light); }
:checked + .button-toggle.yellow, .button.yellow { background-color: var(--yellow-bg); color: var(--yellow-btn-text);}
:checked + .button-toggle.yellow.light, .button.yellow.light { background-color: var(--yellow-bg-light); }
:checked + .button-toggle.blue, .button.blue { background-color: var(--blue-bg); color: var(--blue-btn-text);}
:checked + .button-toggle.blue.light, .button.blue.light { background-color: var(--blue-bg-light); }
:checked + .button-toggle.green, .button.green { background-color: var(--green-bg); color: var(--green-btn-text);}
:checked + .button-toggle.green.light, .button.green.light { background-color: var(--green-bg-light); }

:checked + .button-toggle.brown, .button.brown { background-color: var(--brown-bg); color: var(--brown-btn-text);}
:checked + .button-toggle.brown.light, .button.brown.light { background-color: var(--brown-bg-light); }

.button.small {padding:0.4em 0.55em 0.4em 0.55em;font-size:0.875rem}
.button.smaller {padding:0.3em 0.35em 0.3em 0.35em;font-size:0.72rem}

.button .icon {width:19px;margin-right:4px;display:inline-block;text-align:center;}

.buttons {display:flex;justify-content: center; width:100%;}
.buttons .button + .button {margin-left:20px;}

.border-radius-2 {border-radius:2px}
.border-radius-5 {border-radius:5px}
.border-radius-10 {border-radius:10px}

.tag {display:inline-block; margin:2px 0;padding: 4px 10px;background: #e3e3e3;border-radius: 12px;font-size: 12px;white-space:nowrap}
.tag.light { background-color: var(--light-bg); color: var(--light-btn-text);}
.tag.lighter { background-color: var(--lighter-bg); color: var(--lighter-btn-text);}
.tag.lighter.light { background-color: var(--lighter-bg-light); }
.tag.dark { background-color: var(--dark-bg); color: var(--dark-btn-text);}
.tag.dark.light { background-color: var(--dark-bg-light); }
.tag.darker { background-color: var(--darker-bg); color: var(--darker-btn-text);}
.tag.darker.light { background-color: var(--darker-bg-light); }
.tag.gray { background-color: var(--gray-bg); color: var(--gray-btn-text);}
.tag.gray.light { background-color: var(--gray-bg-light); }
.tag.red { background-color: var(--red-bg); color: var(--red-btn-text); }
.tag.red.light { background-color: var(--red-bg-light); }
.tag.yellow { background-color: var(--yellow-bg); color: var(--yellow-btn-text);}
.tag.yellow.light { background-color: var(--yellow-bg-light); }
.tag.blue { background-color: var(--blue-bg); color: var(--blue-btn-text);}
.tag.blue.light { background-color: var(--blue-bg-light); }
.tag.green { background-color: var(--green-bg); color: var(--green-btn-text);}
.tag.green.light { background-color: var(--green-bg-light); }
.tag.brown { background-color: var(--brown-bg); color: var(--brown-btn-text);}
.tag.brown.light { background-color: var(--brown-bg-light); }

.pagination-wrapper .page-item:first-child .button {border-bottom-right-radius:0;border-top-right-radius:0}
.pagination-wrapper .page-item:last-child .button {border-bottom-left-radius:0;border-top-left-radius:0}
.pagination-wrapper .page-item:not(:first-child):not(:last-child) .button {border-radius:0}

.breadcrumb-wrapper {display: flex;flex-wrap: wrap;list-style: none;font-variant: small-caps;;font-size:0.9em;background: rgba(0,0,0,0.1);border-radius: 4px;line-height: 1.3em;}
.breadcrumb-item + .breadcrumb-item {padding-left: 0.5rem;}
.breadcrumb-item + .breadcrumb-item::before {display: inline-block;padding-right: 0.5rem;color: #858796;content: "/";}
.breadcrumb-item + .breadcrumb-item:hover::before {text-decoration: underline;}
.breadcrumb-item + .breadcrumb-item:hover::before {text-decoration: none;}
.breadcrumb-item.active {color: #b3b3b3;text-decoration: underline}

.ui-range {-webkit-appearance: none;width: 100%;height: 15px;border-radius: 5px;background: #d3d3d3;outline: none;opacity:0.7;-webkit-transition: opacity .15s ease-in-out;transition: opacity .15s ease-in-out;}
.ui-range:hover {opacity:1;}
.ui-range::-webkit-slider-thumb {-webkit-appearance: none;appearance: none;width: 20px;height: 20px;border-radius: 50%;background: var(--yellow-bg-light); cursor: pointer;border:1px solid var(--yellow-bg)}
.ui-range::-moz-range-thumb {width: 20px;height: 20px;border-radius: 50%;background: var(--yellow-bg-light);;cursor: pointer;border:1px solid var(--yellow-bg)}

.bg-white {background-color: var(--white-bg);}.color-white {color:var(--white-color);}.border-white{border:1px solid var(--white-color)}
.bg-light {background-color: var(--light-bg);}.bg-light.light {background-color: var(--light-bg-light);}.color-light {color:var(--light-color);}.border-light{border:1px solid var(--light-color)}
.bg-lighter {background-color: var(--lighter-bg);}.bg-lighter.light {background-color: var(--lighter-bg-light);}.color-lighter {color:var(--lighter-color);}.border-lighter{border:1px solid var(--lighter-color)}
.bg-dark {background-color: var(--dark-bg);}.bg-dark.light {background-color: var(--dark-bg-light);}.color-dark {color:var(--dark-color);}.border-dark{border:1px solid var(--dark-color)}
.bg-darker {background-color: var(--darker-bg);}.bg-darker.light {background-color: var(--darker-bg-light);}.color-darker {color:var(--darker-color);}.border-darker{border:1px solid var(--darker-color)}
.bg-red {background-color: var(--red-bg);}.bg-red.light {background-color: var(--red-bg-light);}.color-red {color:var(--red-color);}.border-red{border:1px solid var(--red-color)}
.bg-yellow {background-color: var(--yellow-bg);}.bg-yellow.light {background-color: var(--yellow-bg-light);}.color-yellow {color:var(--yellow-color);}.border-yellow{border:1px solid var(--yellow-color)}
.bg-blue {background-color: var(--blue-bg);}.bg-blue.light {background-color: var(--blue-bg-light);}.color-blue {color:var(--blue-color);}.border-blue{border:1px solid var(--blue-color)}
.bg-gray {background-color: var(--gray-bg);}.bg-gray.light {background-color: var(--gray-bg-light);}.color-gray {color:var(--gray-color);}.color-gray.light {color:var(--gray-bg-light);}.border-gray{border:1px solid var(--gray-color)}
.bg-green {background-color: var(--green-bg);}.bg-green.light {background-color: var(--green-bg-light);}.color-green {color:var(--green-color);}.border-green{border:1px solid var(--green-color)}
.bg-brown {background-color: var(--brown-bg);}.bg-brown.light {background-color: var(--brown-bg-light);}.color-brown {color:var(--brown-color);}.border-brown{border:1px solid var(--brown-color)}

.bg-shade-darker {background:var(--darker-shade)}
.bg-shade-dark {background:var(--dark-shade)}
.bg-shade-gray {background:var(--gray-shade)}
.bg-shade-light {background:var(--light-shade)}
.bg-shade-lighter {background:var(--lighter-shade)}

.section {background:#fff;border: 1px solid rgba(0,0,0,.125);position: relative;border-radius:2px;display:flex;flex-direction: column;background-clip: border-box;}
.section.dark {background:#e5e5e5}
.section > header {padding:1rem;background:rgba(0,0,0,.065);border-bottom: 1px solid #bbb;font-size:110%;border-left: 3px solid #bbb;}
.section > main {padding:1rem;flex: 1 1 auto;border-left: 3px solid #ddd;background:#fdfdfd}
.section > footer {padding: 1rem 1rem;background-color: rgba(0,0,0,0.1);border-top: 1px solid #bbb;border-left: 3px solid #bbb;}
.section > :first-child {border-top-left-radius: 2px;border-top-right-radius: 2px;}
.section > :last-child {border-bottom-left-radius: 2px;border-bottom-right-radius: 2px}

.message-wrapper .message {padding: 15px;margin: 10px 0;}
.message-wrapper .message.success {background: #d6f7dd;color: #074f0f;}
.message-wrapper .message.warning {background: #f7f3d6;color: #4f2507;}
.message-wrapper .message.error{background: #f7d6d6;color: #4f0707;}

.card {display:flex;flex-direction: column;background-color: #fff;border-radius: 2px;box-shadow: 0 .5em 1em -.125em rgba(10,10,10,.1),0 0 0 1px rgba(10,10,10,.02);max-width: 100%;position: relative;}
.card > header {display: block;position: relative;}
.card > main {padding: 1rem;}
.card > footer {border-top: 1px solid rgba(0,0,0,.125);}
.card > :first-child {border-top-left-radius: 2px;border-top-right-radius: 2px;}
.card > :last-child {border-bottom-left-radius: 2px;border-bottom-right-radius: 2px}

.card > footer > .item {font-size:0.9em;align-items: center;display: flex;flex-basis: 0;flex-grow: 1;flex-shrink: 0;justify-content: center;padding: .75rem;}
.card > footer > .item:not(:last-child) {border-right: 1px solid #ededed;}

.tab-content {display:none}
.tab-content.ui-tab-active {display:block;}

ui-tabs .ui-tab-active .tab-item {color:#8e8501}
ui-tabs.submenu {font-size:1.2rem;display:block;margin: 0rem 1rem 0 0;min-width: 120px;background: #fbf8f8;border: 1px solid #dedede;padding:10px}
ui-tabs.submenu > div {padding:1rem 0}
ui-tabs.submenu > div + div {border-top:1px solid #dedede}
ui-tabs.submenu .tab-item {display:block;text-align: left;padding:0 7px}
ui-tabs.submenu i {display:block;margin-bottom:6px;margin-right:7px}

.notification {background-color:#f5f5f5;border-radius:4px;padding:1.25rem 2.5rem 1.25rem 1.5rem;position:relative}

.hide-empty:empty {display:none!important;}

:checked ~ .unchecked, .checked {display:none;}
:checked ~ .checked {display:initial;}

.block-table .content {min-height: 3rem;align-content: center;}
.block-table .content:nth-child(2n) {background: #f6f6f6;}

[type="checkbox"]:checked ~ .toggle-check, [type="checkbox"]:checked ~ * .toggle-check {display:initial!important;}

.w-10 {width:10%;}.max-w-10 {max-width:10%}.min-w-10 {min-width:10%}.h-10 {height:10%;}.mh-10 {max-height:10%}.max-h-10v {max-height:10vh}.min-h-10 {min-height:10%}.min-h-10v {min-height:10vh}
.w-20 {width:20%;}.max-w-20 {max-width:20%}.min-w-20 {min-width:20%}.h-20 {height:20%;}.mh-20 {max-height:20%}.max-h-20v {max-height:20vh}.min-h-20 {min-height:20%}.min-h-20v {min-height:20vh}
.w-30 {width:30%;}.max-w-30 {max-width:30%}.min-w-30 {min-width:30%}.h-30 {height:30%;}.mh-30 {max-height:30%}.max-h-30v {max-height:30vh}.min-h-30 {min-height:30%}.min-h-30v {min-height:30vh}
.w-40 {width:40%;}.max-w-40 {max-width:40%}.min-w-40 {min-width:40%}.h-40 {height:40%;}.mh-40 {max-height:40%}.max-h-40v {max-height:40vh}.min-h-40 {min-height:40%}.min-h-40v {min-height:40vh}
.w-50 {width:50%;}.max-w-50 {max-width:50%}.min-w-50 {min-width:50%}.h-50 {height:50%;}.mh-50 {max-height:50%}.max-h-50v {max-height:50vh}.min-h-50 {min-height:50%}.min-h-50v {min-height:50vh}
.w-60 {width:60%;}.max-w-60 {max-width:60%}.min-w-60 {min-width:60%}.h-60 {height:60%;}.mh-60 {max-height:60%}.max-h-60v {max-height:60vh}.min-h-60 {min-height:60%}.min-h-60v {min-height:60vh}
.w-70 {width:70%;}.max-w-70 {max-width:70%}.min-w-70 {min-width:70%}.h-70 {height:70%;}.mh-70 {max-height:70%}.max-h-70v {max-height:70vh}.min-h-70 {min-height:70%}.min-h-70v {min-height:70vh}
.w-80 {width:80%;}.max-w-80 {max-width:80%}.min-w-80 {min-width:80%}.h-80 {height:80%;}.mh-80 {max-height:80%}.max-h-80v {max-height:80vh}.min-h-80 {min-height:80%}.min-h-80v {min-height:80vh}
.w-90 {width:90%;}.max-w-90 {max-width:90%}.min-w-90 {min-width:90%}.h-90 {height:90%;}.mh-90 {max-height:90%}.max-h-90v {max-height:90vh}.min-h-90 {min-height:90%}.min-h-90v {min-height:90vh}
.w-100 {width:100%;}.max-w-100 {max-width:100%}.min-w-100 {min-width:100%}.h-100 {height:100%;}.mh-100 {max-height:100%}.max-h-100v {max-height:100vh}.min-h-100 {min-height:100%}.min-h-100v {min-height:100vh}

.m-0 {margin:0!important}.mx-0 {margin-right:0!important;margin-left:0!important;}.my-0 {margin-top:0!important;margin-bottom:0!important;}
.m-1 {margin:0.25rem!important}.ml-1 {margin-left:0.25rem!important}.mr-1 {margin-right:0.25rem!important}.mt-1 {margin-top:0.25rem!important}.mb-1 {margin-bottom:0.25rem!important}.mx-1 {margin-right:0.25rem!important;margin-left:0.25rem!important;}.my-1 {margin-top:0.25rem!important;margin-bottom:0.25rem!important;}
.m-2 {margin:0.5rem!important}.ml-2 {margin-left:0.5rem!important}.mr-2 {margin-right:0.5rem!important}.mt-2 {margin-top:0.5rem!important}.mb-2 {margin-bottom:0.5rem!important}.mx-2 {margin-right:0.5rem!important;margin-left:0.5rem!important;}.my-2 {margin-top:0.5rem!important;margin-bottom:0.5rem!important;}
.m-3 {margin:0.75rem!important}.ml-3 {margin-left:0.75rem!important}.mr-3 {margin-right:0.75rem!important}.mt-3 {margin-top:0.75rem!important}.mb-3 {margin-bottom:0.75rem!important}.mx-3 {margin-right:0.75rem!important;margin-left:0.75rem!important;}.my-3 {margin-top:0.75rem!important;margin-bottom:0.75rem!important;}
.m-4 {margin:1rem!important}.ml-4 {margin-left:1rem!important}.mr-4 {margin-right:1rem!important}.mt-4 {margin-top:1rem!important}.mb-4 {margin-bottom:1rem!important}.mx-4 {margin-right:1rem!important;margin-left:1rem!important;}.my-4 {margin-top:1rem!important;margin-bottom:1rem!important;}
.m-5 {margin:1.25rem!important}.ml-5 {margin-left:1.25rem!important}.mr-5 {margin-right:1.25rem!important}.mt-5 {margin-top:1.25rem!important}.mb-5 {margin-bottom:1.25rem!important}.mx-5 {margin-right:1.25rem!important;margin-left:1.25rem!important;}.my-5 {margin-top:1.25rem!important;margin-bottom:1.25rem!important;}

.p-0 {padding:0!important}.px-0 {padding-right:0!important;padding-left:0!important;}.py-0 {padding-top:0!important;padding-bottom:0!important;}
.p-1 {padding:0.25rem!important}.pl-1 {padding-left:0.25rem!important}.pr-1 {padding-right:0.25rem!important}.pt-1 {padding-top:0.25rem!important}.pb-1 {padding-bottom:0.25rem!important}.px-1 {padding-right:0.25rem!important;padding-left:0.25rem!important;}.py-1 {padding-top:0.25rem!important;padding-bottom:0.25rem!important;}
.p-2 {padding:0.5rem!important}.pl-2 {padding-left:0.5rem!important}.pr-2 {padding-right:0.5rem!important}.pt-2 {padding-top:0.5rem!important}.pb-2 {padding-bottom:0.5rem!important}.px-2 {padding-right:0.5rem!important;padding-left:0.5rem!important;}.py-2 {padding-top:0.5rem!important;padding-bottom:0.5rem!important;}
.p-3 {padding:0.75rem!important}.pl-3 {padding-left:0.75rem!important}.pr-3 {padding-right:0.75rem!important}.pt-3 {padding-top:0.75rem!important}.pb-3 {padding-bottom:0.75rem!important}.px-3 {padding-right:0.75rem!important;padding-left:0.75rem!important;}.py-3 {padding-top:0.75rem!important;padding-bottom:0.75rem!important;}
.p-4 {padding:1rem!important}.pl-4 {padding-left:1rem!important}.pr-4 {padding-right:1rem!important}.pt-4 {padding-top:1rem!important}.pb-4 {padding-bottom:1rem!important}.px-4 {padding-right:1rem!important;padding-left:1rem!important;}.py-4 {padding-top:1rem!important;padding-bottom:1rem!important;}
.p-5 {padding:1.25rem!important}.pl-5 {padding-left:1.25rem!important}.pr-5 {padding-right:1.25rem!important}.pt-5 {padding-top:1.25rem!important}.pb-5 {padding-bottom:1.25rem!important}.px-5 {padding-right:1.25rem!important;padding-left:1.25rem!important;}.py-5 {padding-top:1.25rem!important;padding-bottom:1.25rem!important;}

@media only screen and (min-width: 48em) {
    .d-sm-flex {display:flex!important}
    .d-sm-grid {display:grid!important}
    .d-sm-inline-flex {display:inline-flex!important}
    .d-sm-block {display:block!important;}
    .d-sm-inline {display:inline!important;}
    .d-sm-inline-block {display:inline-block!important;}
    .d-sm-none {display:none!important;}
    
    .m-sm-0 {margin:0!important}.mx-sm-0 {margin-right:0!important;margin-left:0!important;}.my-sm-0 {margin-top:0!important;margin-bottom:0!important;}
    .m-sm-1 {margin:0.25rem!important}.ml-sm-1 {margin-left:0.25rem!important}.mr-sm-1 {margin-right:0.25rem!important}.mt-sm-1 {margin-top:0.25rem!important}.mb-sm-1 {margin-bottom:0.25rem!important}.mx-sm-1 {margin-right:0.25rem!important;margin-left:0.25rem!important;}.my-sm-1 {margin-top:0.25rem!important;margin-bottom:0.25rem!important;}
    .m-sm-2 {margin:0.5rem!important}.ml-sm-2 {margin-left:0.5rem!important}.mr-sm-2 {margin-right:0.5rem!important}.mt-sm-2 {margin-top:0.5rem!important}.mb-sm-2 {margin-bottom:0.5rem!important}.mx-sm-2 {margin-right:0.5rem!important;margin-left:0.5rem!important;}.my-sm-2 {margin-top:0.5rem!important;margin-bottom:0.5rem!important;}
    .m-sm-3 {margin:0.75rem!important}.ml-sm-3 {margin-left:0.75rem!important}.mr-sm-3 {margin-right:0.75rem!important}.mt-sm-3 {margin-top:0.75rem!important}.mb-sm-3 {margin-bottom:0.75rem!important}.mx-sm-3 {margin-right:0.75rem!important;margin-left:0.75rem!important;}.my-sm-3 {margin-top:0.75rem!important;margin-bottom:0.75rem!important;}
    .m-sm-4 {margin:1rem!important}.ml-sm-4 {margin-left:1rem!important}.mr-sm-4 {margin-right:1rem!important}.mt-sm-4 {margin-top:1rem!important}.mb-sm-4 {margin-bottom:1rem!important}.mx-sm-4 {margin-right:1rem!important;margin-left:1rem!important;}.my-sm-4 {margin-top:1rem!important;margin-bottom:1rem!important;}
    .m-sm-5 {margin:1.25rem!important}.ml-sm-5 {margin-left:1.25rem!important}.mr-sm-5 {margin-right:1.25rem!important}.mt-sm-5 {margin-top:1.25rem!important}.mb-sm-5 {margin-bottom:1.25rem!important}.mx-sm-5 {margin-right:1.25rem!important;margin-left:1.25rem!important;}.my-sm-5 {margin-top:1.25rem!important;margin-bottom:1.25rem!important;}
    
    .p-sm-0 {padding:0!important}.px-sm-0 {padding-right:0!important;padding-left:0!important;}.py-sm-0 {padding-top:0!important;padding-bottom:0!important;}
    .p-sm-1 {padding:0.25rem!important}.pl-sm-1 {padding-left:0.25rem!important}.pr-sm-1 {padding-right:0.25rem!important}.pt-sm-1 {padding-top:0.25rem!important}.pb-sm-1 {padding-bottom:0.25rem!important}.px-sm-1 {padding-right:0.25rem!important;padding-left:0.25rem!important;}.py-sm-1 {padding-top:0.25rem!important;padding-bottom:0.25rem!important;}
    .p-sm-2 {padding:0.5rem!important}.pl-sm-2 {padding-left:0.5rem!important}.pr-sm-2 {padding-right:0.5rem!important}.pt-sm-2 {padding-top:0.5rem!important}.pb-sm-2 {padding-bottom:0.5rem!important}.px-sm-2 {padding-right:0.5rem!important;padding-left:0.5rem!important;}.py-sm-2 {padding-top:0.5rem!important;padding-bottom:0.5rem!important;}
    .p-sm-3 {padding:0.75rem!important}.pl-sm-3 {padding-left:0.75rem!important}.pr-sm-3 {padding-right:0.75rem!important}.pt-sm-3 {padding-top:0.75rem!important}.pb-sm-3 {padding-bottom:0.75rem!important}.px-sm-3 {padding-right:0.75rem!important;padding-left:0.75rem!important;}.py-sm-3 {padding-top:0.75rem!important;padding-bottom:0.75rem!important;}
    .p-sm-4 {padding:1rem!important}.pl-sm-4 {padding-left:1rem!important}.pr-sm-4 {padding-right:1rem!important}.pt-sm-4 {padding-top:1rem!important}.pb-sm-4 {padding-bottom:1rem!important}.px-sm-4 {padding-right:1rem!important;padding-left:1rem!important;}.py-sm-4 {padding-top:1rem!important;padding-bottom:1rem!important;}
    .p-sm-5 {padding:1.25rem!important}.pl-sm-5 {padding-left:1.25rem!important}.pr-sm-5 {padding-right:1.25rem!important}.pt-sm-5 {padding-top:1.25rem!important}.pb-sm-5 {padding-bottom:1.25rem!important}.px-sm-5 {padding-right:1.25rem!important;padding-left:1.25rem!important;}.py-sm-5 {padding-top:1.25rem!important;padding-bottom:1.25rem!important;}

    .w-sm-10 {width:10%;}.max-w-sm-10 {max-width:10%}.min-w-sm-10 {min-width:10%}.h-sm-10 {height:10%;}.mh-sm-10 {max-height:10%}.max-h-sm-10v {max-height:10vh}.min-h-sm-10 {min-height:10%}.min-h-sm-10v {min-height:10vh}
    .w-sm-20 {width:20%;}.max-w-sm-20 {max-width:20%}.min-w-sm-20 {min-width:20%}.h-sm-20 {height:20%;}.mh-sm-20 {max-height:20%}.max-h-sm-20v {max-height:20vh}.min-h-sm-20 {min-height:20%}.min-h-sm-20v {min-height:20vh}
    .w-sm-30 {width:30%;}.max-w-sm-30 {max-width:30%}.min-w-sm-30 {min-width:30%}.h-sm-30 {height:30%;}.mh-sm-30 {max-height:30%}.max-h-sm-30v {max-height:30vh}.min-h-sm-30 {min-height:30%}.min-h-sm-30v {min-height:30vh}
    .w-sm-40 {width:40%;}.max-w-sm-40 {max-width:40%}.min-w-sm-40 {min-width:40%}.h-sm-40 {height:40%;}.mh-sm-40 {max-height:40%}.max-h-sm-40v {max-height:40vh}.min-h-sm-40 {min-height:40%}.min-h-sm-40v {min-height:40vh}
    .w-sm-50 {width:50%;}.max-w-sm-50 {max-width:50%}.min-w-sm-50 {min-width:50%}.h-sm-50 {height:50%;}.mh-sm-50 {max-height:50%}.max-h-sm-50v {max-height:50vh}.min-h-sm-50 {min-height:50%}.min-h-sm-50v {min-height:50vh}
    .w-sm-60 {width:60%;}.max-w-sm-60 {max-width:60%}.min-w-sm-60 {min-width:60%}.h-sm-60 {height:60%;}.mh-sm-60 {max-height:60%}.max-h-sm-60v {max-height:60vh}.min-h-sm-60 {min-height:60%}.min-h-sm-60v {min-height:60vh}
    .w-sm-70 {width:70%;}.max-w-sm-70 {max-width:70%}.min-w-sm-70 {min-width:70%}.h-sm-70 {height:70%;}.mh-sm-70 {max-height:70%}.max-h-sm-70v {max-height:70vh}.min-h-sm-70 {min-height:70%}.min-h-sm-70v {min-height:70vh}
    .w-sm-80 {width:80%;}.max-w-sm-80 {max-width:80%}.min-w-sm-80 {min-width:80%}.h-sm-80 {height:80%;}.mh-sm-80 {max-height:80%}.max-h-sm-80v {max-height:80vh}.min-h-sm-80 {min-height:80%}.min-h-sm-80v {min-height:80vh}
    .w-sm-90 {width:90%;}.max-w-sm-90 {max-width:90%}.min-w-sm-90 {min-width:90%}.h-sm-90 {height:90%;}.mh-sm-90 {max-height:90%}.max-h-sm-90v {max-height:90vh}.min-h-sm-90 {min-height:90%}.min-h-sm-90v {min-height:90vh}
    .w-sm-100 {width:100%;}.max-w-sm-100 {max-width:100%}.min-w-sm-100 {min-width:100%}.h-sm-100 {height:100%;}.mh-sm-100 {max-height:100%}.max-h-sm-100v {max-height:100vh}.min-h-sm-100 {min-height:100%}.min-h-sm-100v {min-height:100vh}
}

@media only screen and (min-width: 62em) {
    .d-md-flex {display:flex!important}
    .d-md-grid {display:grid!important}
    .d-md-inline-flex {display:inline-flex!important}
    .d-md-block {display:block!important;}
    .d-md-inline {display:inline!important;}
    .d-md-inline-block {display:inline-block!important;}
    .d-md-none {display:none!important;}
    
    .m-md-0 {margin:0!important}.mx-md-0 {margin-right:0!important;margin-left:0!important;}.my-md-0 {margin-top:0!important;margin-bottom:0!important;}
    .m-md-1 {margin:0.25rem!important}.ml-md-1 {margin-left:0.25rem!important}.mr-md-1 {margin-right:0.25rem!important}.mt-md-1 {margin-top:0.25rem!important}.mb-md-1 {margin-bottom:0.25rem!important}.mx-md-1 {margin-right:0.25rem!important;margin-left:0.25rem!important;}.my-md-1 {margin-top:0.25rem!important;margin-bottom:0.25rem!important;}
    .m-md-2 {margin:0.5rem!important}.ml-md-2 {margin-left:0.5rem!important}.mr-md-2 {margin-right:0.5rem!important}.mt-md-2 {margin-top:0.5rem!important}.mb-md-2 {margin-bottom:0.5rem!important}.mx-md-2 {margin-right:0.5rem!important;margin-left:0.5rem!important;}.my-md-2 {margin-top:0.5rem!important;margin-bottom:0.5rem!important;}
    .m-md-3 {margin:0.75rem!important}.ml-md-3 {margin-left:0.75rem!important}.mr-md-3 {margin-right:0.75rem!important}.mt-md-3 {margin-top:0.75rem!important}.mb-md-3 {margin-bottom:0.75rem!important}.mx-md-3 {margin-right:0.75rem!important;margin-left:0.75rem!important;}.my-md-3 {margin-top:0.75rem!important;margin-bottom:0.75rem!important;}
    .m-md-4 {margin:1rem!important}.ml-md-4 {margin-left:1rem!important}.mr-md-4 {margin-right:1rem!important}.mt-md-4 {margin-top:1rem!important}.mb-md-4 {margin-bottom:1rem!important}.mx-md-4 {margin-right:1rem!important;margin-left:1rem!important;}.my-md-4 {margin-top:1rem!important;margin-bottom:1rem!important;}
    .m-md-5 {margin:1.25rem!important}.ml-md-5 {margin-left:1.25rem!important}.mr-md-5 {margin-right:1.25rem!important}.mt-md-5 {margin-top:1.25rem!important}.mb-md-5 {margin-bottom:1.25rem!important}.mx-md-5 {margin-right:1.25rem!important;margin-left:1.25rem!important;}.my-md-5 {margin-top:1.25rem!important;margin-bottom:1.25rem!important;}

    .p-md-0 {padding:0!important}.px-md-0 {padding-right:0!important;padding-left:0!important;}.py-md-0 {padding-top:0!important;padding-bottom:0!important;}
    .p-md-1 {padding:0.25rem!important}.pl-md-1 {padding-left:0.25rem!important}.pr-md-1 {padding-right:0.25rem!important}.pt-md-1 {padding-top:0.25rem!important}.pb-md-1 {padding-bottom:0.25rem!important}.px-md-1 {padding-right:0.25rem!important;padding-left:0.25rem!important;}.py-md-1 {padding-top:0.25rem!important;padding-bottom:0.25rem!important;}
    .p-md-2 {padding:0.5rem!important}.pl-md-2 {padding-left:0.5rem!important}.pr-md-2 {padding-right:0.5rem!important}.pt-md-2 {padding-top:0.5rem!important}.pb-md-2 {padding-bottom:0.5rem!important}.px-md-2 {padding-right:0.5rem!important;padding-left:0.5rem!important;}.py-md-2 {padding-top:0.5rem!important;padding-bottom:0.5rem!important;}
    .p-md-3 {padding:0.75rem!important}.pl-md-3 {padding-left:0.75rem!important}.pr-md-3 {padding-right:0.75rem!important}.pt-md-3 {padding-top:0.75rem!important}.pb-md-3 {padding-bottom:0.75rem!important}.px-md-3 {padding-right:0.75rem!important;padding-left:0.75rem!important;}.py-md-3 {padding-top:0.75rem!important;padding-bottom:0.75rem!important;}
    .p-md-4 {padding:1rem!important}.pl-md-4 {padding-left:1rem!important}.pr-md-4 {padding-right:1rem!important}.pt-md-4 {padding-top:1rem!important}.pb-md-4 {padding-bottom:1rem!important}.px-md-4 {padding-right:1rem!important;padding-left:1rem!important;}.py-md-4 {padding-top:1rem!important;padding-bottom:1rem!important;}
    .p-md-5 {padding:1.25rem!important}.pl-md-5 {padding-left:1.25rem!important}.pr-md-5 {padding-right:1.25rem!important}.pt-md-5 {padding-top:1.25rem!important}.pb-md-5 {padding-bottom:1.25rem!important}.px-md-5 {padding-right:1.25rem!important;padding-left:1.25rem!important;}.py-md-5 {padding-top:1.25rem!important;padding-bottom:1.25rem!important;}
                                                                                                                                                                                                                                                                                       
    .w-md-10 {width:10%;}.max-w-md-10 {max-width:10%}.min-w-md-10 {min-width:10%}.h-md-10 {height:10%;}.mh-md-10 {max-height:10%}.max-h-md-10v {max-height:10vh}.min-h-md-10 {min-height:10%}.min-h-md-10v {min-height:10vh}
    .w-md-20 {width:20%;}.max-w-md-20 {max-width:20%}.min-w-md-20 {min-width:20%}.h-md-20 {height:20%;}.mh-md-20 {max-height:20%}.max-h-md-20v {max-height:20vh}.min-h-md-20 {min-height:20%}.min-h-md-20v {min-height:20vh}
    .w-md-30 {width:30%;}.max-w-md-30 {max-width:30%}.min-w-md-30 {min-width:30%}.h-md-30 {height:30%;}.mh-md-30 {max-height:30%}.max-h-md-30v {max-height:30vh}.min-h-md-30 {min-height:30%}.min-h-md-30v {min-height:30vh}
    .w-md-40 {width:40%;}.max-w-md-40 {max-width:40%}.min-w-md-40 {min-width:40%}.h-md-40 {height:40%;}.mh-md-40 {max-height:40%}.max-h-md-40v {max-height:40vh}.min-h-md-40 {min-height:40%}.min-h-md-40v {min-height:40vh}
    .w-md-50 {width:50%;}.max-w-md-50 {max-width:50%}.min-w-md-50 {min-width:50%}.h-md-50 {height:50%;}.mh-md-50 {max-height:50%}.max-h-md-50v {max-height:50vh}.min-h-md-50 {min-height:50%}.min-h-md-50v {min-height:50vh}
    .w-md-60 {width:60%;}.max-w-md-60 {max-width:60%}.min-w-md-60 {min-width:60%}.h-md-60 {height:60%;}.mh-md-60 {max-height:60%}.max-h-md-60v {max-height:60vh}.min-h-md-60 {min-height:60%}.min-h-md-60v {min-height:60vh}
    .w-md-70 {width:70%;}.max-w-md-70 {max-width:70%}.min-w-md-70 {min-width:70%}.h-md-70 {height:70%;}.mh-md-70 {max-height:70%}.max-h-md-70v {max-height:70vh}.min-h-md-70 {min-height:70%}.min-h-md-70v {min-height:70vh}
    .w-md-80 {width:80%;}.max-w-md-80 {max-width:80%}.min-w-md-80 {min-width:80%}.h-md-80 {height:80%;}.mh-md-80 {max-height:80%}.max-h-md-80v {max-height:80vh}.min-h-md-80 {min-height:80%}.min-h-md-80v {min-height:80vh}
    .w-md-90 {width:90%;}.max-w-md-90 {max-width:90%}.min-w-md-90 {min-width:90%}.h-md-90 {height:90%;}.mh-md-90 {max-height:90%}.max-h-md-90v {max-height:90vh}.min-h-md-90 {min-height:90%}.min-h-md-90v {min-height:90vh}
    .w-md-100 {width:100%;}.max-w-md-100 {max-width:100%}.min-w-md-100 {min-width:100%}.h-md-100 {height:100%;}.mh-md-100 {max-height:100%}.max-h-md-100v {max-height:100vh}.min-h-md-100 {min-height:100%}.min-h-md-100v {min-height:100vh}
}

@media only screen and (min-width:75em) {
    .d-lg-flex {display:flex!important}
    .d-lg-grid {display:grid!important}
    .d-lg-inline-flex {display:inline-flex!important}
    .d-lg-block {display:block!important;}
    .d-lg-inline {display:inline!important;}
    .d-lg-inline-block {display:inline-block!important;}
    .d-lg-none {display:none!important;}
    
    .m-lg-0 {margin:0!important}.mx-lg-0 {margin-right:0!important;margin-left:0!important;}.my-lg-0 {margin-top:0!important;margin-bottom:0!important;}
    .m-lg-1 {margin:0.25rem!important}.ml-lg-1 {margin-left:0.25rem!important}.mr-lg-1 {margin-right:0.25rem!important}.mt-lg-1 {margin-top:0.25rem!important}.mb-lg-1 {margin-bottom:0.25rem!important}.mx-lg-1 {margin-right:0.25rem!important;margin-left:0.25rem!important;}.my-lg-1 {margin-top:0.25rem!important;margin-bottom:0.25rem!important;}
    .m-lg-2 {margin:0.5rem!important}.ml-lg-2 {margin-left:0.5rem!important}.mr-lg-2 {margin-right:0.5rem!important}.mt-lg-2 {margin-top:0.5rem!important}.mb-lg-2 {margin-bottom:0.5rem!important}.mx-lg-2 {margin-right:0.5rem!important;margin-left:0.5rem!important;}.my-lg-2 {margin-top:0.5rem!important;margin-bottom:0.5rem!important;}
    .m-lg-3 {margin:0.75rem!important}.ml-lg-3 {margin-left:0.75rem!important}.mr-lg-3 {margin-right:0.75rem!important}.mt-lg-3 {margin-top:0.75rem!important}.mb-lg-3 {margin-bottom:0.75rem!important}.mx-lg-3 {margin-right:0.75rem!important;margin-left:0.75rem!important;}.my-lg-3 {margin-top:0.75rem!important;margin-bottom:0.75rem!important;}
    .m-lg-4 {margin:1rem!important}.ml-lg-4 {margin-left:1rem!important}.mr-lg-4 {margin-right:1rem!important}.mt-lg-4 {margin-top:1rem!important}.mb-lg-4 {margin-bottom:1rem!important}.mx-lg-4 {margin-right:1rem!important;margin-left:1rem!important;}.my-lg-4 {margin-top:1rem!important;margin-bottom:1rem!important;}
    .m-lg-5 {margin:1.25rem!important}.ml-lg-5 {margin-left:1.25rem!important}.mr-lg-5 {margin-right:1.25rem!important}.mt-lg-5 {margin-top:1.25rem!important}.mb-lg-5 {margin-bottom:1.25rem!important}.mx-lg-5 {margin-right:1.25rem!important;margin-left:1.25rem!important;}.my-lg-5 {margin-top:1.25rem!important;margin-bottom:1.25rem!important;}

    .p-lg-0 {padding:0!important}.px-lg-0 {padding-right:0!important;padding-left:0!important;}.py-lg-0 {padding-top:0!important;padding-bottom:0!important;}
    .p-lg-1 {padding:0.25rem!important}.pl-lg-1 {padding-left:0.25rem!important}.pr-lg-1 {padding-right:0.25rem!important}.pt-lg-1 {padding-top:0.25rem!important}.pb-lg-1 {padding-bottom:0.25rem!important}.px-lg-1 {padding-right:0.25rem!important;padding-left:0.25rem!important;}.py-lg-1 {padding-top:0.25rem!important;padding-bottom:0.25rem!important;}
    .p-lg-2 {padding:0.5rem!important}.pl-lg-2 {padding-left:0.5rem!important}.pr-lg-2 {padding-right:0.5rem!important}.pt-lg-2 {padding-top:0.5rem!important}.pb-lg-2 {padding-bottom:0.5rem!important}.px-lg-2 {padding-right:0.5rem!important;padding-left:0.5rem!important;}.py-lg-2 {padding-top:0.5rem!important;padding-bottom:0.5rem!important;}
    .p-lg-3 {padding:0.75rem!important}.pl-lg-3 {padding-left:0.75rem!important}.pr-lg-3 {padding-right:0.75rem!important}.pt-lg-3 {padding-top:0.75rem!important}.pb-lg-3 {padding-bottom:0.75rem!important}.px-lg-3 {padding-right:0.75rem!important;padding-left:0.75rem!important;}.py-lg-3 {padding-top:0.75rem!important;padding-bottom:0.75rem!important;}
    .p-lg-4 {padding:1rem!important}.pl-lg-4 {padding-left:1rem!important}.pr-lg-4 {padding-right:1rem!important}.pt-lg-4 {padding-top:1rem!important}.pb-lg-4 {padding-bottom:1rem!important}.px-lg-4 {padding-right:1rem!important;padding-left:1rem!important;}.py-lg-4 {padding-top:1rem!important;padding-bottom:1rem!important;}
    .p-lg-5 {padding:1.25rem!important}.pl-lg-5 {padding-left:1.25rem!important}.pr-lg-5 {padding-right:1.25rem!important}.pt-lg-5 {padding-top:1.25rem!important}.pb-lg-5 {padding-bottom:1.25rem!important}.px-lg-5 {padding-right:1.25rem!important;padding-left:1.25rem!important;}.py-lg-5 {padding-top:1.25rem!important;padding-bottom:1.25rem!important;}

    .w-lg-10 {width:10%;}.max-w-lg-10 {max-width:10%}.min-w-lg-10 {min-width:10%}.h-lg-10 {height:10%;}.mh-lg-10 {max-height:10%}.max-h-lg-10v {max-height:10vh}.min-h-lg-10 {min-height:10%}.min-h-lg-10v {min-height:10vh}
    .w-lg-20 {width:20%;}.max-w-lg-20 {max-width:20%}.min-w-lg-20 {min-width:20%}.h-lg-20 {height:20%;}.mh-lg-20 {max-height:20%}.max-h-lg-20v {max-height:20vh}.min-h-lg-20 {min-height:20%}.min-h-lg-20v {min-height:20vh}
    .w-lg-30 {width:30%;}.max-w-lg-30 {max-width:30%}.min-w-lg-30 {min-width:30%}.h-lg-30 {height:30%;}.mh-lg-30 {max-height:30%}.max-h-lg-30v {max-height:30vh}.min-h-lg-30 {min-height:30%}.min-h-lg-30v {min-height:30vh}
    .w-lg-40 {width:40%;}.max-w-lg-40 {max-width:40%}.min-w-lg-40 {min-width:40%}.h-lg-40 {height:40%;}.mh-lg-40 {max-height:40%}.max-h-lg-40v {max-height:40vh}.min-h-lg-40 {min-height:40%}.min-h-lg-40v {min-height:40vh}
    .w-lg-50 {width:50%;}.max-w-lg-50 {max-width:50%}.min-w-lg-50 {min-width:50%}.h-lg-50 {height:50%;}.mh-lg-50 {max-height:50%}.max-h-lg-50v {max-height:50vh}.min-h-lg-50 {min-height:50%}.min-h-lg-50v {min-height:50vh}
    .w-lg-60 {width:60%;}.max-w-lg-60 {max-width:60%}.min-w-lg-60 {min-width:60%}.h-lg-60 {height:60%;}.mh-lg-60 {max-height:60%}.max-h-lg-60v {max-height:60vh}.min-h-lg-60 {min-height:60%}.min-h-lg-60v {min-height:60vh}
    .w-lg-70 {width:70%;}.max-w-lg-70 {max-width:70%}.min-w-lg-70 {min-width:70%}.h-lg-70 {height:70%;}.mh-lg-70 {max-height:70%}.max-h-lg-70v {max-height:70vh}.min-h-lg-70 {min-height:70%}.min-h-lg-70v {min-height:70vh}
    .w-lg-80 {width:80%;}.max-w-lg-80 {max-width:80%}.min-w-lg-80 {min-width:80%}.h-lg-80 {height:80%;}.mh-lg-80 {max-height:80%}.max-h-lg-80v {max-height:80vh}.min-h-lg-80 {min-height:80%}.min-h-lg-80v {min-height:80vh}
    .w-lg-90 {width:90%;}.max-w-lg-90 {max-width:90%}.min-w-lg-90 {min-width:90%}.h-lg-90 {height:90%;}.mh-lg-90 {max-height:90%}.max-h-lg-90v {max-height:90vh}.min-h-lg-90 {min-height:90%}.min-h-lg-90v {min-height:90vh}
    .w-lg-100 {width:100%;}.max-w-lg-100 {max-width:100%}.min-w-lg-100 {min-width:100%}.h-lg-100 {height:100%;}.mh-lg-100 {max-height:100%}.max-h-lg-100v {max-height:100vh}.min-h-lg-100 {min-height:100%}.min-h-lg-100v {min-height:100vh}
}

@media only screen and (min-width: 90em) {
    .d-xl-flex {display:flex!important}
    .d-xl-grid {display:grid!important}
    .d-xl-inline-flex {display:inline-flex!important}
    .d-xl-block {display:block!important;}
    .d-xl-inline {display:inline!important;}
    .d-xl-inline-block {display:inline-block!important;}
    .d-xl-none {display:none!important;}
    
    .m-xl-0 {margin:0!important}.mx-xl-0 {margin-right:0!important;margin-left:0!important;}.my-xl-0 {margin-top:0!important;margin-bottom:0!important;}
    .m-xl-1 {margin:0.25rem!important}.ml-xl-1 {margin-left:0.25rem!important}.mr-xl-1 {margin-right:0.25rem!important}.mt-xl-1 {margin-top:0.25rem!important}.mb-xl-1 {margin-bottom:0.25rem!important}.mx-xl-1 {margin-right:0.25rem!important;margin-left:0.25rem!important;}.my-xl-1 {margin-top:0.25rem!important;margin-bottom:0.25rem!important;}
    .m-xl-2 {margin:0.5rem!important}.ml-xl-2 {margin-left:0.5rem!important}.mr-xl-2 {margin-right:0.5rem!important}.mt-xl-2 {margin-top:0.5rem!important}.mb-xl-2 {margin-bottom:0.5rem!important}.mx-xl-2 {margin-right:0.5rem!important;margin-left:0.5rem!important;}.my-xl-2 {margin-top:0.5rem!important;margin-bottom:0.5rem!important;}
    .m-xl-3 {margin:0.75rem!important}.ml-xl-3 {margin-left:0.75rem!important}.mr-xl-3 {margin-right:0.75rem!important}.mt-xl-3 {margin-top:0.75rem!important}.mb-xl-3 {margin-bottom:0.75rem!important}.mx-xl-3 {margin-right:0.75rem!important;margin-left:0.75rem!important;}.my-xl-3 {margin-top:0.75rem!important;margin-bottom:0.75rem!important;}
    .m-xl-4 {margin:1rem!important}.ml-xl-4 {margin-left:1rem!important}.mr-xl-4 {margin-right:1rem!important}.mt-xl-4 {margin-top:1rem!important}.mb-xl-4 {margin-bottom:1rem!important}.mx-xl-4 {margin-right:1rem!important;margin-left:1rem!important;}.my-xl-4 {margin-top:1rem!important;margin-bottom:1rem!important;}
    .m-xl-5 {margin:1.25rem!important}.ml-xl-5 {margin-left:1.25rem!important}.mr-xl-5 {margin-right:1.25rem!important}.mt-xl-5 {margin-top:1.25rem!important}.mb-xl-5 {margin-bottom:1.25rem!important}.mx-xl-5 {margin-right:1.25rem!important;margin-left:1.25rem!important;}.my-xl-5 {margin-top:1.25rem!important;margin-bottom:1.25rem!important;}

    .p-xl-0 {padding:0!important}.px-xl-0 {padding-right:0!important;padding-left:0!important;}.py-xl-0 {padding-top:0!important;padding-bottom:0!important;}
    .p-xl-1 {padding:0.25rem!important}.pl-xl-1 {padding-left:0.25rem!important}.pr-xl-1 {padding-right:0.25rem!important}.pt-xl-1 {padding-top:0.25rem!important}.pb-xl-1 {padding-bottom:0.25rem!important}.px-xl-1 {padding-right:0.25rem!important;padding-left:0.25rem!important;}.py-xl-1 {padding-top:0.25rem!important;padding-bottom:0.25rem!important;}
    .p-xl-2 {padding:0.5rem!important}.pl-xl-2 {padding-left:0.5rem!important}.pr-xl-2 {padding-right:0.5rem!important}.pt-xl-2 {padding-top:0.5rem!important}.pb-xl-2 {padding-bottom:0.5rem!important}.px-xl-2 {padding-right:0.5rem!important;padding-left:0.5rem!important;}.py-xl-2 {padding-top:0.5rem!important;padding-bottom:0.5rem!important;}
    .p-xl-3 {padding:0.75rem!important}.pl-xl-3 {padding-left:0.75rem!important}.pr-xl-3 {padding-right:0.75rem!important}.pt-xl-3 {padding-top:0.75rem!important}.pb-xl-3 {padding-bottom:0.75rem!important}.px-xl-3 {padding-right:0.75rem!important;padding-left:0.75rem!important;}.py-xl-3 {padding-top:0.75rem!important;padding-bottom:0.75rem!important;}
    .p-xl-4 {padding:1rem!important}.pl-xl-4 {padding-left:1rem!important}.pr-xl-4 {padding-right:1rem!important}.pt-xl-4 {padding-top:1rem!important}.pb-xl-4 {padding-bottom:1rem!important}.px-xl-4 {padding-right:1rem!important;padding-left:1rem!important;}.py-xl-4 {padding-top:1rem!important;padding-bottom:1rem!important;}
    .p-xl-5 {padding:1.25rem!important}.pl-xl-5 {padding-left:1.25rem!important}.pr-xl-5 {padding-right:1.25rem!important}.pt-xl-5 {padding-top:1.25rem!important}.pb-xl-5 {padding-bottom:1.25rem!important}.px-xl-5 {padding-right:1.25rem!important;padding-left:1.25rem!important;}.py-xl-5 {padding-top:1.25rem!important;padding-bottom:1.25rem!important;}

    .w-xl-10 {width:10%;}.max-w-xl-10 {max-width:10%}.min-w-xl-10 {min-width:10%}.h-xl-10 {height:10%;}.mh-xl-10 {max-height:10%}.max-h-xl-10v {max-height:10vh}.min-h-xl-10 {min-height:10%}.min-h-xl-10v {min-height:10vh}
    .w-xl-20 {width:20%;}.max-w-xl-20 {max-width:20%}.min-w-xl-20 {min-width:20%}.h-xl-20 {height:20%;}.mh-xl-20 {max-height:20%}.max-h-xl-20v {max-height:20vh}.min-h-xl-20 {min-height:20%}.min-h-xl-20v {min-height:20vh}
    .w-xl-30 {width:30%;}.max-w-xl-30 {max-width:30%}.min-w-xl-30 {min-width:30%}.h-xl-30 {height:30%;}.mh-xl-30 {max-height:30%}.max-h-xl-30v {max-height:30vh}.min-h-xl-30 {min-height:30%}.min-h-xl-30v {min-height:30vh}
    .w-xl-40 {width:40%;}.max-w-xl-40 {max-width:40%}.min-w-xl-40 {min-width:40%}.h-xl-40 {height:40%;}.mh-xl-40 {max-height:40%}.max-h-xl-40v {max-height:40vh}.min-h-xl-40 {min-height:40%}.min-h-xl-40v {min-height:40vh}
    .w-xl-50 {width:50%;}.max-w-xl-50 {max-width:50%}.min-w-xl-50 {min-width:50%}.h-xl-50 {height:50%;}.mh-xl-50 {max-height:50%}.max-h-xl-50v {max-height:50vh}.min-h-xl-50 {min-height:50%}.min-h-xl-50v {min-height:50vh}
    .w-xl-60 {width:60%;}.max-w-xl-60 {max-width:60%}.min-w-xl-60 {min-width:60%}.h-xl-60 {height:60%;}.mh-xl-60 {max-height:60%}.max-h-xl-60v {max-height:60vh}.min-h-xl-60 {min-height:60%}.min-h-xl-60v {min-height:60vh}
    .w-xl-70 {width:70%;}.max-w-xl-70 {max-width:70%}.min-w-xl-70 {min-width:70%}.h-xl-70 {height:70%;}.mh-xl-70 {max-height:70%}.max-h-xl-70v {max-height:70vh}.min-h-xl-70 {min-height:70%}.min-h-xl-70v {min-height:70vh}
    .w-xl-80 {width:80%;}.max-w-xl-80 {max-width:80%}.min-w-xl-80 {min-width:80%}.h-xl-80 {height:80%;}.mh-xl-80 {max-height:80%}.max-h-xl-80v {max-height:80vh}.min-h-xl-80 {min-height:80%}.min-h-xl-80v {min-height:80vh}
    .w-xl-90 {width:90%;}.max-w-xl-90 {max-width:90%}.min-w-xl-90 {min-width:90%}.h-xl-90 {height:90%;}.mh-xl-90 {max-height:90%}.max-h-xl-90v {max-height:90vh}.min-h-xl-90 {min-height:90%}.min-h-xl-90v {min-height:90vh}
    .w-xl-100 {width:100%;}.max-w-xl-100 {max-width:100%}.min-w-xl-100 {min-width:100%}.h-xl-100 {height:100%;}.mh-xl-100 {max-height:100%}.max-h-xl-100v {max-height:100vh}.min-h-xl-100 {min-height:100%}.min-h-xl-100v {min-height:100vh}
}

@media only screen and (min-width: 106em) {
    .d-xxl-flex {display:flex!important}
    .d-xxl-grid {display:grid!important}
    .d-xxl-inline-flex {display:inline-flex!important}
    .d-xxl-block {display:block!important;}
    .d-xxl-inline {display:inline!important;}
    .d-xxl-inline-block {display:inline-block!important;}
    .d-xxl-none {display:none!important;}
    
    .m-xxl-0 {margin:0!important}.mx-xxl-0 {margin-right:0!important;margin-left:0!important;}.my-xxl-0 {margin-top:0!important;margin-bottom:0!important;}
    .m-xxl-1 {margin:0.25rem!important}.ml-xxl-1 {margin-left:0.25rem!important}.mr-xxl-1 {margin-right:0.25rem!important}.mt-xxl-1 {margin-top:0.25rem!important}.mb-xxl-1 {margin-bottom:0.25rem!important}.mx-xxl-1 {margin-right:0.25rem!important;margin-left:0.25rem!important;}.my-xxl-1 {margin-top:0.25rem!important;margin-bottom:0.25rem!important;}
    .m-xxl-2 {margin:0.5rem!important}.ml-xxl-2 {margin-left:0.5rem!important}.mr-xxl-2 {margin-right:0.5rem!important}.mt-xxl-2 {margin-top:0.5rem!important}.mb-xxl-2 {margin-bottom:0.5rem!important}.mx-xxl-2 {margin-right:0.5rem!important;margin-left:0.5rem!important;}.my-xxl-2 {margin-top:0.5rem!important;margin-bottom:0.5rem!important;}
    .m-xxl-3 {margin:0.75rem!important}.ml-xxl-3 {margin-left:0.75rem!important}.mr-xxl-3 {margin-right:0.75rem!important}.mt-xxl-3 {margin-top:0.75rem!important}.mb-xxl-3 {margin-bottom:0.75rem!important}.mx-xxl-3 {margin-right:0.75rem!important;margin-left:0.75rem!important;}.my-xxl-3 {margin-top:0.75rem!important;margin-bottom:0.75rem!important;}
    .m-xxl-4 {margin:1rem!important}.ml-xxl-4 {margin-left:1rem!important}.mr-xxl-4 {margin-right:1rem!important}.mt-xxl-4 {margin-top:1rem!important}.mb-xxl-4 {margin-bottom:1rem!important}.mx-xxl-4 {margin-right:1rem!important;margin-left:1rem!important;}.my-xxl-4 {margin-top:1rem!important;margin-bottom:1rem!important;}
    .m-xxl-5 {margin:1.25rem!important}.ml-xxl-5 {margin-left:1.25rem!important}.mr-xxl-5 {margin-right:1.25rem!important}.mt-xxl-5 {margin-top:1.25rem!important}.mb-xxl-5 {margin-bottom:1.25rem!important}.mx-xxl-5 {margin-right:1.25rem!important;margin-left:1.25rem!important;}.my-xxl-5 {margin-top:1.25rem!important;margin-bottom:1.25rem!important;}

    .p-xxl-0 {padding:0!important}.px-xxl-0 {padding-right:0!important;padding-left:0!important;}.py-xxl-0 {padding-top:0!important;padding-bottom:0!important;}
    .p-xxl-1 {padding:0.25rem!important}.pl-xxl-1 {padding-left:0.25rem!important}.pr-xxl-1 {padding-right:0.25rem!important}.pt-xxl-1 {padding-top:0.25rem!important}.pb-xxl-1 {padding-bottom:0.25rem!important}.px-xxl-1 {padding-right:0.25rem!important;padding-left:0.25rem!important;}.py-xxl-1 {padding-top:0.25rem!important;padding-bottom:0.25rem!important;}
    .p-xxl-2 {padding:0.5rem!important}.pl-xxl-2 {padding-left:0.5rem!important}.pr-xxl-2 {padding-right:0.5rem!important}.pt-xxl-2 {padding-top:0.5rem!important}.pb-xxl-2 {padding-bottom:0.5rem!important}.px-xxl-2 {padding-right:0.5rem!important;padding-left:0.5rem!important;}.py-xxl-2 {padding-top:0.5rem!important;padding-bottom:0.5rem!important;}
    .p-xxl-3 {padding:0.75rem!important}.pl-xxl-3 {padding-left:0.75rem!important}.pr-xxl-3 {padding-right:0.75rem!important}.pt-xxl-3 {padding-top:0.75rem!important}.pb-xxl-3 {padding-bottom:0.75rem!important}.px-xxl-3 {padding-right:0.75rem!important;padding-left:0.75rem!important;}.py-xxl-3 {padding-top:0.75rem!important;padding-bottom:0.75rem!important;}
    .p-xxl-4 {padding:1rem!important}.pl-xxl-4 {padding-left:1rem!important}.pr-xxl-4 {padding-right:1rem!important}.pt-xxl-4 {padding-top:1rem!important}.pb-xxl-4 {padding-bottom:1rem!important}.px-xxl-4 {padding-right:1rem!important;padding-left:1rem!important;}.py-xxl-4 {padding-top:1rem!important;padding-bottom:1rem!important;}
    .p-xxl-5 {padding:1.25rem!important}.pl-xxl-5 {padding-left:1.25rem!important}.pr-xxl-5 {padding-right:1.25rem!important}.pt-xxl-5 {padding-top:1.25rem!important}.pb-xxl-5 {padding-bottom:1.25rem!important}.px-xxl-5 {padding-right:1.25rem!important;padding-left:1.25rem!important;}.py-xxl-5 {padding-top:1.25rem!important;padding-bottom:1.25rem!important;}

    .w-xxl-10 {width:10%;}.max-w-xxl-10 {max-width:10%}.min-w-xxl-10 {min-width:10%}.h-xxl-10 {height:10%;}.mh-xxl-10 {max-height:10%}.max-h-xxl-10v {max-height:10vh}.min-h-xxl-10 {min-height:10%}.min-h-xxl-10v {min-height:10vh}
    .w-xxl-20 {width:20%;}.max-w-xxl-20 {max-width:20%}.min-w-xxl-20 {min-width:20%}.h-xxl-20 {height:20%;}.mh-xxl-20 {max-height:20%}.max-h-xxl-20v {max-height:20vh}.min-h-xxl-20 {min-height:20%}.min-h-xxl-20v {min-height:20vh}
    .w-xxl-30 {width:30%;}.max-w-xxl-30 {max-width:30%}.min-w-xxl-30 {min-width:30%}.h-xxl-30 {height:30%;}.mh-xxl-30 {max-height:30%}.max-h-xxl-30v {max-height:30vh}.min-h-xxl-30 {min-height:30%}.min-h-xxl-30v {min-height:30vh}
    .w-xxl-40 {width:40%;}.max-w-xxl-40 {max-width:40%}.min-w-xxl-40 {min-width:40%}.h-xxl-40 {height:40%;}.mh-xxl-40 {max-height:40%}.max-h-xxl-40v {max-height:40vh}.min-h-xxl-40 {min-height:40%}.min-h-xxl-40v {min-height:40vh}
    .w-xxl-50 {width:50%;}.max-w-xxl-50 {max-width:50%}.min-w-xxl-50 {min-width:50%}.h-xxl-50 {height:50%;}.mh-xxl-50 {max-height:50%}.max-h-xxl-50v {max-height:50vh}.min-h-xxl-50 {min-height:50%}.min-h-xxl-50v {min-height:50vh}
    .w-xxl-60 {width:60%;}.max-w-xxl-60 {max-width:60%}.min-w-xxl-60 {min-width:60%}.h-xxl-60 {height:60%;}.mh-xxl-60 {max-height:60%}.max-h-xxl-60v {max-height:60vh}.min-h-xxl-60 {min-height:60%}.min-h-xxl-60v {min-height:60vh}
    .w-xxl-70 {width:70%;}.max-w-xxl-70 {max-width:70%}.min-w-xxl-70 {min-width:70%}.h-xxl-70 {height:70%;}.mh-xxl-70 {max-height:70%}.max-h-xxl-70v {max-height:70vh}.min-h-xxl-70 {min-height:70%}.min-h-xxl-70v {min-height:70vh}
    .w-xxl-80 {width:80%;}.max-w-xxl-80 {max-width:80%}.min-w-xxl-80 {min-width:80%}.h-xxl-80 {height:80%;}.mh-xxl-80 {max-height:80%}.max-h-xxl-80v {max-height:80vh}.min-h-xxl-80 {min-height:80%}.min-h-xxl-80v {min-height:80vh}
    .w-xxl-90 {width:90%;}.max-w-xxl-90 {max-width:90%}.min-w-xxl-90 {min-width:90%}.h-xxl-90 {height:90%;}.mh-xxl-90 {max-height:90%}.max-h-xxl-90v {max-height:90vh}.min-h-xxl-90 {min-height:90%}.min-h-xxl-90v {min-height:90vh}
    .w-xxl-100 {width:100%;}.max-w-xxl-100 {max-width:100%}.min-w-xxl-100 {min-width:100%}.h-xxl-100 {height:100%;}.mh-xxl-100 {max-height:100%}.max-h-xxl-100v {max-height:100vh}.min-h-xxl-100 {min-height:100%}.min-h-xxl-100v {min-height:100vh}
}