* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

html {
    background: #FAFAFA;
}

.order-first-step__container,
.order-cat-selection__container {
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
    text-align: center;
}

.order-first-step__container .radio-buttons,
.order-cat-selection__container .radio-buttons {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

.order-first-step__container .button#confirm_button,
.order-cat-selection__container .button#confirm_button {
    margin-top: 1.5rem;
}

.order-first-step__date {
    margin-top: 3rem;
}

.order-first-step__date input {
    width: 100%;
    border-radius: 4px;
    border: solid 1px #d3d3d3;
    height: 50px;
    line-height: 50px;
    padding: 0 1.25rem;
    text-align: center;
    font-size: 1rem;
}

.radio-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.radio-buttons--grid {
    display: grid;
    grid: auto / repeat(2, 1fr);
    gap: 5px;
    justify-content: stretch;
    align-items: center;
}

.radio-buttons--grid .radio:nth-of-type(5) {
    width: 100%;
    grid-column: span 2;
}

.radio-buttons .radio {
    width: 100%;
    height: 60px;
}

.radio-buttons .radio input {
    margin-bottom: 0;
}

.radio-buttons .radio input:hover {
    cursor: pointer;
}

.radio-buttons {
    list-style-type: none;
    margin: 0;
    margin-bottom: 1rem;
    padding: 0;
}

.radio-buttons li {
    float: left;
    margin: 0 5px 0 0;
    width: 100px;
    height: 40px;
    position: relative;
}

.radio-buttons--grid li {
    margin: 0;
}

.radio-buttons .label,
.radio-buttons input {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    margin: 0;
}

.radio-buttons input[type="radio"] {
    opacity: 0.011;
    z-index: 100;
    position: relative;
    width: 100%;
    height: 100%;
}

.radio-buttons input[type="radio"]+.label {
    border: 1px solid #991b1d;
}

.radio-buttons .radio:first-of-type input[type="radio"]:checked+.label {
    background: #d2f8d2;
}

.radio-buttons .radio:last-of-type input[type="radio"]:checked+.label {
    background: #95cdff;
}

.radio-buttons--grid:nth-child(1n) .radio input[type="radio"]:checked+.label {
    background: #991b1dc4;
    color: white;
}

.radio-buttons .label {
    cursor: pointer;
    z-index: 1;
    line-height: 60px;
    font-weight: 600;
    border-radius: 4px;
}

.radio-buttons .label:hover {
    background: #DDD;
}

.radio-buttons .radio-mark {
    /* position: absolute; */
    top: 6px;
    right: 6px;
    width: 1.5rem;
    height: 1.5rem;
    display: grid;
    place-items: center;
    font-size: 1rem;
    background: #2ecf2e;
    color: white;
    border-radius: 4px;
    z-index: 2;
}

.container.login .logo {
    background-color: transparent;
    display: block;
    max-width: 250px;
    margin: auto;
    margin-bottom: 50px;
}

.container.login h1 {
    text-transform: none;
}

.container.login p {
    margin-top: 1rem;
}

.input-wrapper .label {
    position: absolute;
    left: 20px;
    bottom: 23px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    cursor: text;
    -webkit-transition: -webkit-transform .2s ease-in-out;
    transition: -webkit-transform .2s ease-in-out;
    transition: transform .2s ease-in-out;
    transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
    color: grey;
    pointer-events: none;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.input-text {
    display: block;
    width: 100%;
    height: 63px;
    border: solid 1px #d3d3d3;
    border-radius: 6px;
    font-size: 18px;
    line-height: 63px;
    font-weight: 400;
    padding: 0 1.25rem;
    text-align: left;
}

.form-field {
    position: relative;
    margin: 1.5rem 0;
    background: #fff;
    border-radius: 6px;
}

.form-field .input-text {
    text-align: left;
}

.form-field .input-text:focus {
    outline: none;
}

.form-field .input-text:focus+.label,
.form-field .input-text.not-empty+.label {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: translateY(-19px) translateX(0) scale(0.8);
    transform: translateY(-19px) translateX(0) scale(0.8);
}

.container.login .form-wrapper {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
    position: absolute;
    left: 50%;
    top: 40%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 1.5rem;
}

.container.login .logo {
    width: 100%;
    max-width: 250px;
}

@media only screen and (min-width: 760px) {
    .container.login .form-wrapper {
        padding: 0;
    }
}

.forgotten_password {
    display: block;
    margin-top: 1rem;
    text-align: right;
}

.back_to_login {
    display: block;
    margin-top: 1rem;
    text-align: right;
}

.button {
    -webkit-transition: background-color ease-in-out 200ms;
    transition: background-color ease-in-out 200ms;
}

.button:hover {
    background-color: #631213 !important;
    cursor: pointer;
}

.login>.block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100vh;
}

header {
    position: fixed;
    left: 0;
    top: 0;
    width: 310px;
    background-color: white;
    min-height: 100vh;
    z-index: 5;
}

header .logo {
    display: block;
    background-color: transparent;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    padding: 20px;
}

header .logo img {
    max-width: 185px;
    width: auto;
    height: auto;
    margin: 0;
}

header .menu_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

header .menu_list a {
    text-decoration: none;
    color: #848484;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 20px 20px;
    border-left: 5px solid transparent;
    -webkit-transition: all ease-in-out 200ms;
    transition: all ease-in-out 200ms;
}

header .menu_list a:last-of-type {
    height: 60px;
    position: absolute;
    bottom: 0;
}

header .menu_list a i {
    margin-right: 16px;
    width: 25px;
    font-size: 20px;
    text-align: center;
}

header .menu_list a .label {
    color: #BFBFBF;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.1;
    -webkit-transition: all ease-in-out 200ms;
    transition: all ease-in-out 200ms;
    text-transform: uppercase;
}

header .menu_list a:hover,
header .menu_list a:hover .label {
    color: #991b1d;
}

header .menu_list a:hover {
    background-color: #EEEEEE;
}

header:after {
    content: "";
    width: 1px;
    background-color: #E9ECF0;
    right: 0;
    top: 0;
    height: 90%;
    position: absolute;
}

header .menu_list a.active {
    background-color: #EEEEEE;
}

header .menu_list a.active {
    color: #991b1d;
    border-left: 5px solid #991b1d;
}

header .menu_list a.active .label {
    color: #991b1d;
}

@media (max-height: 600px) {
    header {
        overflow: auto;
    }
    header .menu_bottom {
        position: static;
    }
    header ul li .label {
        display: none;
    }
}

@media (max-width: 700px) {
    header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        min-height: unset;
        width: unset;
        right: 0;
    }
    header .logo {
        padding: 0;
        height: 75px;
    }
    header .logo img {
        padding: 0;
        max-width: 155px;
    }
    header .menu_container {
        display: none;
    }
    header .menu_list {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }
    header .menu_list a {
        width: 33.3333%;
        margin: 0;
        padding: 10px;
        width: 33.333%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    header .menu_list a i {
        margin: 0;
        margin-bottom: 5px;
    }
    header .menu_list a .label {
        text-align: center;
    }
}

@media (max-width: 500px) {
    header .menu_list a {
        width: 50%;
    }
}

.cards_grid_container h1 {
    margin-bottom: 1.5rem;
}

.cards_grid_container .card {
    margin-bottom: 3rem;
}

.cards_grid_container .card.summary ul.list {
    border-radius: 4px;
    list-style-type: none;
    padding-left: 0;
    background-color: white;
    margin: 1.5rem 0;
}

.cards_grid_container .card.summary ul.list li.item {
    margin-left: 3rem;
    padding: 1rem 0;
    display: inline-block;
    border-radius: 4px;
}

.cards_grid_container .card.summary ul.list li.item strong {
    display: block;
    font-weight: normal;
    font-size: .85rem;
    color: #888888;
}

.cards_grid_container .card.summary ul.list li.item span {
    font-weight: bold;
    font-size: 1.25rem;
}

.cards_grid_container .card.graph {
    max-width: 1000px;
}

.edit-inputs {
    max-width: 600px;
}

.edit-inputs label {
    display: block;
    margin-top: .75rem;
    margin-bottom: .5rem;
    font-weight: 600;
}

.edit-inputs>div>input[type=checkbox],
.edit-inputs .option_container input[type=checkbox] {
    display: block;
    margin-left: auto;
    margin-top: -1rem;
    width: 1rem;
    height: 1rem;
}

.edit-inputs input:not(input[type=checkbox]),
.edit-inputs select {
    width: 100%;
    border-radius: 4px;
    border: solid 1px #d3d3d3;
    height: 50px;
    line-height: 50px;
    padding: 0 1.25rem;
}

.edit-inputs textarea {
    width: 100%;
    border-radius: 1px;
    border: solid 5px #d3d3d3;
    height: 50px;
    line-height: 1rem;
    padding: 0 1.25rem;
    padding-top: 1rem;
    max-width: 100%;
    height: 250px;
    background-color: #efefef;
}

.edit-inputs .alergens input[type=checkbox] {
    margin-right: .75rem;
    width: 1rem;
    height: 1rem;
}

.edit-inputs__icons i {
    width: 1rem;
}

.edit-inputs__icons label {
    display: inline-block;
    margin-left: .5rem;
}

.mobile-header {
    /**
    
    c- = component
    e- = element
    l- = layout
    
     **/
    /** layout **/
    /* ////// MOBILE MENU ////// */
    /* -- menu mobilne -- */
    /* -- menu mobilne input -- */
    /* -- mobile menu hamburger -- */
    /* -- mobile menu hamburger element -- */
    /* -- mobile menu container -- */
    /* -- mobile menu content -- */
    /* -- mobile menu unordered list -- */
    /* -- mobile menu all links -- */
    /* -- mobile menu links when touch and hover -- */
    /* -- mobile menu 'before' marker of the 1st level menu -- */
    /* -- mobile menu 'before' marker of the 1st level menu with submenu  -- */
    /* -- mobile menu animation of 'before' marker of the 1st level menu with submenu -- */
    /* -- mobile menu active 1st level menu item with opened submenu -- */
    /* -- mobile menu submenu closed -- */
    /* -- mobile menu submenu opened -- */
}

.mobile-header article,
.mobile-header aside,
.mobile-header details,
.mobile-header figcaption,
.mobile-header figure,
.mobile-header footer,
.mobile-header header,
.mobile-header hgroup,
.mobile-header menu,
.mobile-header nav,
.mobile-header section {
    display: block;
}

.mobile-header nav ul {
    list-style: none;
}

.mobile-header blockquote,
.mobile-header q {
    quotes: none;
}

.mobile-header blockquote:before,
.mobile-header blockquote:after,
.mobile-header q:before,
.mobile-header q:after {
    content: '';
    content: none;
}

.mobile-header a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

.mobile-header ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}

.mobile-header mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: 700;
}

.mobile-header del {
    text-decoration: line-through;
}

.mobile-header abbr[title],
.mobile-header dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

.mobile-header table {
    border-collapse: collapse;
    border-spacing: 0;
}

.mobile-header hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

.mobile-header input,
.mobile-header select {
    vertical-align: middle;
}

.mobile-header body {
    height: 5000px;
}

.mobile-header a {
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
}

.mobile-header nav ul,
.mobile-header nav li {
    list-style: none;
    list-style-position: inside;
    -webkit-padding-start: 0;
    padding-inline-start: 0;
    padding: 0;
    margin: 0;
}

.mobile-header .l-menu {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    padding: 20px;
    height: 75px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: white;
}

.mobile-header .c-mobile-menu {
    /*
    This element should be always in the same position on screen, like fixed to top. It opens and closes the menu, so user should have it always in the same place. In this case I used .l-menu element with position:fixed. This is required for mobile (so screen resolution under 1030px width), for desktop is irrelevant.
    */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 24px;
    height: 22px;
}

@media all and (min-width: 700px) {
    .mobile-header .c-mobile-menu {
        display: none !important;
    }
}

.mobile-header .e-mobile-menu-input {
    /** reset default input styles **/
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    -webkit-font-smoothing: inherit;
    -moz-osx-font-smoothing: inherit;
    margin: 0;
    width: 24px;
    height: 22px;
    cursor: pointer;
    z-index: 40;
    opacity: 0;
}

.mobile-header .e-mobile-menu-input:checked~.e-mobile-menu__wrapper {
    top: 0;
    max-width: 9999px;
    max-height: 9999px;
}

@media all and (min-width: 512px) {
    .mobile-header .e-mobile-menu-input:checked~.e-mobile-menu__wrapper {
        left: 0;
        max-width: 9999px;
        opacity: 1;
    }
    .mobile-header .e-mobile-menu-input:checked~.e-mobile-menu__wrapper::after {
        opacity: 1;
        -webkit-transition: opacity .3s .12s;
        transition: opacity .3s .12s;
    }
}

.mobile-header .e-mobile-menu-input:checked~.e-mobile-menu__hamburger>.e-mobile-menu__hamburger__block {
    -webkit-transition: top .2s, bottom .2s, opacity .2s .2s, -webkit-transform .2s .2s;
    transition: top .2s, bottom .2s, opacity .2s .2s, -webkit-transform .2s .2s;
    transition: top .2s, bottom .2s, opacity .2s .2s, transform .2s .2s;
    transition: top .2s, bottom .2s, opacity .2s .2s, transform .2s .2s, -webkit-transform .2s .2s;
}

.mobile-header .e-mobile-menu-input:checked~.e-mobile-menu__hamburger>.e-mobile-menu__hamburger__block:nth-child(1) {
    top: 10px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.mobile-header .e-mobile-menu-input:checked~.e-mobile-menu__hamburger>.e-mobile-menu__hamburger__block:nth-child(2) {
    opacity: 0;
}

.mobile-header .e-mobile-menu-input:checked~.e-mobile-menu__hamburger>.e-mobile-menu__hamburger__block:nth-child(3) {
    bottom: 10px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.mobile-header .e-mobile-menu__hamburger {
    width: 24px;
    height: 22px;
    position: relative;
    margin-left: -24px;
    z-index: 30;
}

.mobile-header .e-mobile-menu__hamburger__block {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #991b1d;
    position: absolute;
    -webkit-transition: top .2s .1s, bottom .2s .1s, opacity .2s 0s, background-color .2s 0s, -webkit-transform .2s 0s;
    transition: top .2s .1s, bottom .2s .1s, opacity .2s 0s, background-color .2s 0s, -webkit-transform .2s 0s;
    transition: top .2s .1s, bottom .2s .1s, opacity .2s 0s, transform .2s 0s, background-color .2s 0s;
    transition: top .2s .1s, bottom .2s .1s, opacity .2s 0s, transform .2s 0s, background-color .2s 0s, -webkit-transform .2s 0s;
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
}

.mobile-header .e-mobile-menu__hamburger__block:nth-child(1) {
    top: 0;
}

.mobile-header .e-mobile-menu__hamburger__block:nth-child(2) {
    top: 10px;
}

.mobile-header .e-mobile-menu__hamburger__block:nth-child(3) {
    bottom: 0;
}

.mobile-header .e-mobile-menu__wrapper {
    width: 100vw;
    height: 100vh;
    background-color: white;
    position: fixed;
    top: -100vh;
    left: 0;
    max-width: 0;
    max-height: 0;
    -webkit-transition: top .3s, left .3s, max-width .3s 0s, max-height .3s 0s;
    transition: top .3s, left .3s, max-width .3s 0s, max-height .3s 0s;
    padding: 75px 32px 32px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
}

@media all and (min-width: 512px) {
    .mobile-header {
        /* -- mobile menu container space of right side -- */
    }
    .mobile-header .e-mobile-menu__wrapper {
        width: 75vw;
        left: -75vw;
        top: 0;
        max-width: 0;
    }
    .mobile-header .e-mobile-menu-input:checked~.e-mobile-menu__wrapper {
        -webkit-box-shadow: 200px 0px 5px 15px rgba(153, 27, 29, 0.6);
        box-shadow: 200px 0px 5px 15px rgba(153, 27, 29, 0.6);
    }
}

.mobile-header .e-mobile-menu__content {
    width: calc(100% + 48px);
    height: 100%;
    overflow-y: scroll;
    padding: 16px 96px 0 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: white;
    padding-right: 0;
    padding-left: 0;
}

.mobile-header .e-mobile-menu__content::-webkit-scrollbar {
    display: none;
}

.mobile-header .e-mobile-menu__main-menu>div>ul {
    width: 100%;
}

.mobile-header .c-mobile-menu a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* style */
    text-transform: uppercase;
    color: #991b1d;
    text-decoration: none;
    padding: 1rem;
    font-size: 14px;
    -webkit-transition: background-color .3s;
    transition: background-color .3s;
}

.mobile-header .c-mobile-menu a i {
    margin-right: 16px;
    width: 25px;
    font-size: 20px;
    text-align: center;
}

.mobile-header .c-mobile-menu a:active,
.mobile-header .c-mobile-menu a:hover {
    /* style */
    background-color: #EEEEEE;
}

.mobile-header .e-mobile-menu__main-menu>div>ul>li>a::before {
    content: '';
    display: inline-block;
    min-height: 18px;
    max-height: 18px;
    min-width: 18px;
    max-width: 18px;
    -webkit-transition: -webkit-transform 0.6s;
    transition: -webkit-transform 0.6s;
    transition: transform 0.6s;
    transition: transform 0.6s, -webkit-transform 0.6s;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    margin-right: 8px;
}

.mobile-header .e-mobile-menu__main-menu>div>ul>.menu-item-has-children>a::before {
    /* style */
    font-family: "Font Awesome 5 Free";
    content: "\f0d7";
    font-weight: 900;
    font-size: 22px;
    line-height: 18px;
}

.mobile-header .c-mobile-menu .js-menu-active::before {
    /* style */
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
}

.mobile-header .c-mobile-menu .js-menu-active {
    /* style */
    background-color: #4D248E;
}

.mobile-header .c-mobile-menu .sub-menu {
    overflow: hidden;
    max-height: 0;
    /* style */
    -webkit-transition: max-height .1s;
    transition: max-height .1s;
    margin-left: 48px;
}

.mobile-header .c-mobile-menu .js-mobile-menu-open {
    max-height: 999px;
    height: auto;
    /* style */
    -webkit-transition: max-height .9s;
    transition: max-height .9s;
}

@media all and (min-width: 700px) {
    .mobile-header {
        display: none !important;
    }
}

.legend {
    background-color: white;
    padding: 1rem;
    margin: 1.5rem 0;
    max-width: 100%;
}

.legend .square {
    width: 20px;
    height: 20px;
    margin-right: .5rem;
}

.legend .delivery:nth-of-type(1) .square {
    background-color: #d2f8d2;
}

.legend .delivery:nth-of-type(2) .square {
    background-color: #95cdff;
    margin-left: 2rem;
}

.legend .redo i {
    margin-left: 2rem;
    margin-right: .5rem;
}

.legend p {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}

.legend * {
    display: inline-block;
}

.page {
    background: #EEF0F1;
    min-height: 100vh;
}

.button[name=log_in],
.button[name=reset-request-submit],
.button[name=reset-password-submit],
.button#confirm_button {
    display: block;
    text-transform: none;
    text-align: center;
    color: white;
    background-color: #991b1d;
    border-radius: 4px;
    border: none;
    width: 100%;
    height: 64px;
    line-height: 64px;
    padding: 0;
}

.button--link {
    outline: none;
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    color: #991b1d;
}

.button--link:hover {
    text-decoration: underline;
    cursor: pointer;
}

.button:not(.button[name=view_most_ordered_prods]) {
    text-transform: none;
    text-align: center;
    color: white;
    background-color: #991b1d;
    border-radius: 4px;
    border: none;
}

.page h1 {
    color: #991b1d;
}

.alergens .item {
    margin: .75rem 0;
}

h2 {
    margin-bottom: 1.5rem;
}

.hidden {
    display: none !important;
}

.order_products_page_container {
    overflow: auto;
}

.table-filters {
    display: flex;
    margin: 2rem 0;
    gap: 1rem;
    justify-content: end;
}

.table-filters i.fas {
    right: 10px;
}

@media (max-width: 1100px) {
    .table-filters {
        flex-direction: column;
    }
    .table-filters * {
        width: 100% !important;
        max-width: 100% !important;
    }
    .table-filters i.fas {
        text-align: right;
    }
}


/*# sourceMappingURL=main.css.map */