@charset "UTF-8";
:root {
    --product-bc-color: #81d4fa;
    --product-fg-color: #01579b;
    --item-bc-color: #006064;
    --item-fg-color: #00999e;
    --order-bc-color: #ffcc80;
    --order-fg-color: #e65100;
    --receipt-bc-color: #39c90d;
    --receipt-group-bc-color: #ffac05;
    --receipt-fg-color: #33691e;
    --receipt2-bc-color: #dcf312;
    --receipt2-fg-color: #827717;
    --main-font-color: #333;
    --slate-font-color: grey;
    --darkgray-font-color: #4f4f4f;
    --transfer-bc-color: #aaff80;
    --transfer-fg-color: #8ae600;
    --complaint-bg-color: #764a42;
    --chekbox-color: #3182ce;
    --chekbox-disabled: #959495;
    --disabled: #959495;
    --price-tag-background: rgba(0, 0, 0, 0.3);
    --price-tag-height: 1rem
}

@font-face {
    font-family: Montserrat;
    font-weight: 600;
    src: url(../webfonts/Montserrat-SemiBold.woff2) format("woff2"), url(../webfonts/Montserrat-SemiBold.woff) format("woff")
}

@font-face {
    font-family: Montserrat;
    font-weight: 700;
    src: url(../webfonts/Montserrat-Bold.woff2) format("woff2"), url(../webfonts/Montserrat-Bold.woff) format("woff")
}

@font-face {
    font-family: Roboto;
    font-weight: 400;
    src: url(../webfonts/Roboto-Regular.woff2) format("woff2"), url(../webfonts/Roboto-Regular.woff) format("woff")
}

@font-face {
    font-family: Roboto;
    font-weight: 700;
    src: url(../webfonts/Roboto-Bold.woff2) format("woff2"), url(../webfonts/Roboto-Bold.woff) format("woff")
}

@font-face {
    font-family: Rubik;
    font-weight: 400;
    src: url(../webfonts/Rubik-Regular.woff2) format("woff2"), url(../webfonts/Rubik-Regular.woff) format("woff")
}

@font-face {
    font-family: Rubik;
    font-weight: 500;
    src: url(../webfonts/Rubik-Medium.woff2) format("woff2"), url(../webfonts/Rubik-Medium.woff) format("woff")
}

@font-face {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: 400;
    src: url(../webfonts/fontawesome-webfont.woff2) format("woff2"), url(../webfonts/fontawesome-webfont.woff) format("woff")
}

@media print {
    .pagebreak {
        page-break-before: always
    }

    html {
        height: 99% !important
    }

    body {
        height: 100vh
    }

    body, html {
        background-color: #fff;
        color: #000;
        margin: 0 !important;
        padding: 0 !important;
        width: 100%
    }

    body * {
        visibility: hidden
    }

    #document-print, #section-to-print {
        bottom: 0;
        left: 0;
        position: absolute;
        top: 0
    }

    #document-print, #document-print * {
        visibility: visible
    }

    #section-to-print, #section-to-print * {
        font-size: 1rem;
        visibility: visible
    }

    #section-to-print * .btn, #section-to-print .btn {
        display: none;
        visibility: hidden
    }

    #document-print .form-control {
        border: unset
    }

    .cover-letter {
        -moz-column-gap: 3em;
        column-gap: 3em;
        -moz-column-width: 17em;
        column-width: 17em
    }
}

.header a {
    text-decoration: none
}

.header ul {
    list-style: none
}

.menu-items {
    align-items: center;
    display: flex;
    justify-content: space-between
}

.site-signup .menu-items {
    display: flex;
    flex-wrap: wrap
}

.menu-items li a {
    padding: .5rem 1rem
}

.menu-items.open {
    opacity: 1;
    transform: translateY(0)
}

@media (max-width: 1024px) {
    .menu-items {
        background: #000;
        display: block;
        height: calc(100vh - 100%);
        line-height: 3rem;
        max-width: 350px;
        opacity: 0;
        overflow-y: auto;
        padding: 1rem;
        position: absolute;
        right: 0;
        top: 100%;
        transform: translateY(-100vh);
        transition: all .3s ease-out;
        width: 100%;
        z-index: -1
    }

    .menu-items li {
        margin: 10px
    }

    .menu-items li a {
        display: block;
        font-size: 1.2rem;
        padding: 0 1rem
    }
}

.mega-dropdown {
    position: relative
}

.mega-dropdown .mega-dropdown-menu {
    left: 0;
    opacity: 0;
    position: absolute;
    top: 49px;
    transition: all .3s ease;
    visibility: hidden;
    width: 100%
}

.mega-dropdown:hover .mega-dropdown-menu {
    opacity: 1;
    top: 34px;
    visibility: visible
}

@media (max-width: 1024px) {
    .mega-dropdown .mega-dropdown-menu {
        max-height: 0;
        opacity: 1;
        overflow: hidden;
        padding-left: 1rem;
        position: static;
        top: 4rem;
        transform: scaleY(0);
        transform-origin: top;
        transition: all .3s ease;
        visibility: visible;
        width: 100%
    }
}

.mega-menu {
    left: -5000px;
    max-height: 100vh;
    opacity: 0;
    overflow: auto;
    position: absolute;
    top: 80px;
    transition: all .3s ease;
    visibility: hidden;
    width: 100vw
}

.mega-menu .content {
    display: grid;
    gap: .5rem;
    grid-template-columns:repeat(10, 1fr);
    width: 100%
}

.mega-menu .content .col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    line-height: 1.85rem;
    margin-bottom: 1rem
}

@media (max-width: 1024px) {
    .mega-menu {
        max-height: 0;
        opacity: 1;
        overflow: hidden;
        padding-left: 1rem;
        position: static;
        top: 4rem;
        transform: scaleY(0);
        transform-origin: top;
        transition: all .3s ease;
        visibility: visible;
        width: 100%
    }

    .mega-menu .content {
        grid-template-columns:auto;
        padding: 0 1rem
    }

    .mega-menu .content .col {
        margin-bottom: .5rem;
        padding-top: 1rem;
        width: 100%
    }

    .mega-menu .content .mega-links {
        padding-left: 1rem
    }

    .mega-menu .content .mega-links li {
        margin: 0
    }

    .mega-expand-btn.open + .mega-expandable {
        max-height: 100%;
        transform: scaleY(1)
    }

    .mega-expandable li {
        margin: 0
    }

    .mega-expandable li a {
        font-size: 1rem
    }
}

.mega-links.section-settings {
    border-left-color: #337ab7
}

.mega-links.section-settings li:hover {
    background-color: #337ab7
}

.mega-links.section-orders {
    border-left-color: var(--order-bc-color)
}

.mega-links.section-orders li:hover {
    background-color: var(--order-bc-color)
}

.mega-links.section-receipts {
    border-left-color: var(--receipt2-bc-color)
}

.mega-links.section-receipts li:hover {
    background-color: var(--receipt2-bc-color)
}

.mega-links.section-receipt-groups {
    border-left-color: var(--receipt-group-bc-color)
}

.mega-links.section-receipt-groups li:hover {
    background-color: var(--receipt-group-bc-color)
}

.mega-links.section-products {
    border-left-color: var(--product-bc-color)
}

.mega-links.section-products li:hover {
    background-color: var(--product-bc-color)
}

.mega-links.section-items {
    border-left-color: var(--item-bc-color)
}

.mega-links.section-items li:hover {
    background-color: var(--item-bc-color)
}

.mega-links.section-transfers {
    border-left-color: var(--transfer-bc-color)
}

.mega-links.section-transfers li:hover {
    background-color: var(--transfer-bc-color)
}

.mega-links.section-printers {
    border-left-color: #e1ff2f
}

.mega-links.section-printers li:hover {
    background-color: #e1ff2f
}

.mega-links.section-groups {
    border-left-color: #5cb85c
}

.mega-links.section-groups li:hover {
    background-color: #5cb85c
}

.mega-links.section-recycling {
    border-left-color: #337ab7
}

.mega-links.section-recycling li:hover {
    background-color: #337ab7
}

.mega-links.section-eshops {
    border-left-color: #611bbd
}

.mega-links.section-eshops li:hover {
    background-color: #611bbd
}

.mega-links.section-money {
    border-left-color: #70cc00
}

.mega-links.section-money li:hover {
    background-color: #70cc00
}

.mega-links.section-statuses {
    border-left-color: #3d3d6b
}

.mega-links.section-statuses li:hover {
    background-color: #3d3d6b
}

.mega-links.section-emails {
    border-left-color: #00a65a
}

.mega-links.section-emails li:hover {
    background-color: #00a65a
}

.mega-links.section-customhtml {
    border-left-color: #28a4f7
}

.mega-links.section-customhtml li:hover {
    background-color: #28a4f7
}

.mega-links.section-history {
    border-left-color: #900c3f
}

.mega-links.section-history li:hover {
    background-color: #900c3f
}

.mega-links.section-complaint {
    border-left-color: #cc5d00
}

.mega-links.section-complaint li:hover {
    background-color: #cc5d00
}

.col .mega-links li, .col .mega-links li a {
    display: block;
    padding: 0 .5rem;
    width: 100%
}

.menu-items li:hover .mega-menu {
    left: 0;
    opacity: 1;
    top: 45px;
    visibility: visible
}

.menu-btn {
    cursor: pointer;
    height: 40px;
    transition: all .3s ease-in-out;
    width: 60px;
    z-index: 11
}

.menu-btn__burger, .menu-btn__burger:after, .menu-btn__burger:before {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(255, 101, 47, .2);
    height: 6px;
    transition: all .5s ease-in-out;
    width: 40px
}

.menu-btn__burger:after, .menu-btn__burger:before {
    content: "";
    position: absolute
}

.menu-btn__burger:before {
    transform: translateY(-16px)
}

.menu-btn__burger:after {
    transform: translateY(16px)
}

.menu-btn.open .menu-btn__burger {
    background: transparent;
    box-shadow: none;
    transform: translateX(-50px)
}

.menu-btn.open .menu-btn__burger:before {
    transform: rotate(45deg) translate(35px, -35px)
}

.menu-btn.open .menu-btn__burger:after {
    transform: rotate(-45deg) translate(35px, 35px)
}

.btn.disabled, .btn.disabled.active, .btn.disabled:active, .btn.disabled:focus, .btn.disabled:hover, .btn[disabled], .btn[disabled].active, .btn[disabled]:active, .btn[disabled]:focus, .btn[disabled]:hover, fieldset[disabled] .btn, fieldset[disabled] .btn.active, fieldset[disabled] .btn:active, fieldset[disabled] .btn:focus, fieldset[disabled] .btn:hover {
    background-color: #a1a1a1;
    border-color: #737373
}

.btn-cloud {
    background-color: #28a4f7;
    border-color: #0386eb;
    color: #fff
}

.btn-amb.active, .btn-amb:active, .btn-blue-dark.active, .btn-blue-dark:active, .btn-cloud.active, .btn-cloud:active, .btn-dhl-reverse.active, .btn-dhl-reverse:active, .btn-dhl.active, .btn-dhl:active, .btn-gls.active, .btn-gls:active, .btn-items.active, .btn-items:active, .btn-kurier.active, .btn-kurier:active, .btn-lb.active, .btn-lb:active, .btn-parcel.active, .btn-parcel:active, .btn-prediction.active, .btn-prediction:active, .btn-service.active, .btn-service:active, .btn-show-changes.active, .btn-show-changes:active, .btn-webareal-black.active, .btn-webareal-black:active, .btn-yl.active, .btn-yl:active, .dropdown-toggle.btn-gls, .open .dropdown-toggle.btn-amb, .open .dropdown-toggle.btn-blue-dark, .open .dropdown-toggle.btn-cloud, .open .dropdown-toggle.btn-dhl, .open .dropdown-toggle.btn-dhl-reverse, .open .dropdown-toggle.btn-items, .open .dropdown-toggle.btn-kurier, .open .dropdown-toggle.btn-lb, .open .dropdown-toggle.btn-parcel, .open .dropdown-toggle.btn-prediction, .open .dropdown-toggle.btn-service, .open .dropdown-toggle.btn-show-changes, .open .dropdown-toggle.btn-webareal-black, .open .dropdown-toggle.btn-yl {
    background-image: none
}

.btn-dhl {
    background-color: #fc0;
    border-color: #fc0;
    color: #c00
}

.btn-gls {
    background-color: #061ab1;
    border-color: #061ab1;
    color: #ffd100
}

.btn-parcel {
    background-color: #f58220;
    border-color: #44515a;
    color: #fff
}

.btn-kurier {
    background-color: #f05a3c;
    border-color: #656565;
    color: #fff
}

.btn-dpd {
    background-color: #dc0032;
    border-color: #a90034;
    color: #fff
}

.btn-dhl-reverse {
    background-color: #c00;
    border-color: #b00000;
    color: #fff503
}

.btn-show-changes {
    background-color: #611bbd;
    border-color: #130269;
    color: #fff
}

.btn-yl {
    background-color: #f7eb00;
    border-color: #dec000;
    color: #212121
}

.btn-blue-dark {
    background-color: #0029f7;
    border-color: #0a0099;
    color: #fff
}

.btn-lb {
    background-color: #01579b;
    border-color: #01579b;
    color: #fff
}

.btn-amb {
    background-color: #ff6f00;
    border-color: #ffa000;
    color: #212121
}

.btn-service {
    background-color: #c4c4c4;
    border-color: #7b7b7b;
    color: #c00
}

.btn-prediction {
    background-color: #862879;
    border-color: #862879;
    color: #fff
}

.btn-items {
    background-color: var(--item-bc-color);
    border-color: #003133;
    color: #fff
}

.btn-webareal-black {
    background-color: #030303;
    border-color: #000;
    color: #fff
}

.btn-success-reverse {
    background: transparent;
    border: 2px solid #27ae60;
    color: #27ae60
}

.btn-info-reverse {
    background: transparent;
    border: 2px solid #46b8da;
    color: #5bc0de
}

.btn-danger-reverse {
    background: transparent;
    border: 2px solid #d43f3a;
    color: #d43f3a
}

.btn-warning-reverse {
    background: transparent;
    border: 2px solid #eea236;
    color: #f0ad4e
}

.btn-default-reverse {
    background: #fff;
    border: 2px solid #ccc;
    color: #000
}

.btn.focus, .btn:focus, .btn:hover {
    color: initial;
    filter: brightness(130%) saturate(120%)
}

.btn:active {
    filter: saturate(80%)
}

.site-signup {
    align-items: center;
    display: flex;
    min-height: 100vh;
    padding-bottom: 0;
    padding-top: 0;
    width: 100%
}

@media (max-width: 480px) {
    .site-signup {
        align-items: flex-start;
        padding-top: 2em
    }
}

@media (max-width: 767px) {
    .site-signup .container {
        max-width: 80%;
        padding-left: 0;
        padding-right: 0;
        width: 80%
    }
}

.site-signup .login-card {
    word-wrap: break-word;
    background-clip: border-box;
    background-color: #fff;
    border: 0;
    border-radius: 12.5px;
    box-shadow: 0 10px 30px 0 hsla(0, 2%, 67%, .43);
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    position: relative
}

.site-signup .image-container {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
    position: relative
}

@media (max-width: 767px) {
    .site-signup .image-container {
        display: none
    }
}

.site-signup .form-container {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
    position: relative
}

@media (max-width: 767px) {
    .site-signup .form-container {
        flex: 1;
        max-width: 100%
    }
}

.site-signup .form-container .form-body {
    min-height: 1px;
    padding: 85px 60px 60px
}

@media (max-width: 480px) {
    .site-signup .form-container .form-body {
        padding: 35px 24px
    }
}

.site-signup .form-container .brand-wrapper {
    font-size: 4em;
    margin-bottom: 19px;
    margin-top: 0
}

@media (max-width: 767px) {
    .site-signup .form-container .brand-wrapper {
        font-size: 3em
    }
}

.site-signup .form-container .login-card-description {
    color: #000;
    font-size: 2em;
    font-weight: 400;
    margin-bottom: 23px
}

.site-signup .form-container .form {
    max-height: 245px;
    max-width: 326px
}

.site-signup .form-container .form .form-group {
    margin-bottom: 1.5rem;
    min-height: 70px
}

.site-signup .form-container .form .sr-only {
    clip: rect(0, 0, 0, 0);
    border: 0;
    display: inline-block;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px
}

.site-signup .form-container .form .form-control {
    border: 1px solid #d5dae2;
    border-radius: .25rem;
    font-size: 13px;
    font-weight: 400;
    line-height: 15;
    margin-bottom: 0;
    min-height: 45px;
    padding: 15px 25px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.site-signup .form-container .forgot-password-link {
    background-color: transparent;
    color: #919aa3;
    font-size: 14px;
    margin-bottom: 12px;
    text-decoration: none
}

.site-signup .form-container .login-card-footer-text {
    color: #0d2366;
    font-size: 16px;
    margin-bottom: 60px;
    margin-top: 0
}

@media (max-width: 767px) {
    .site-signup .form-container .login-card-footer-text {
        margin-bottom: 24px
    }
}

.site-signup .form-container .text-reset {
    background-color: transparent;
    color: inherit !important;
    text-decoration: none
}

.site-signup .form-container .text-reset:hover {
    text-decoration: underline
}

.site-signup .flex {
    display: flex;
    flex-wrap: wrap
}

.site-signup .login-card-img {
    border-radius: 0;
    border-style: none;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    width: 100%
}

.btn-login {
    background-color: #000;
    border: 1px solid #000;
    border-radius: 4px;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 24px;
    padding: 13px 20px 12px;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    width: 100%
}

.btn-login:hover {
    background-color: transparent;
    border: 1px solid #000;
    color: #000
}

.login-wrap {
    background-color: #d0d0ce
}

.transport-table > tbody {
    border: 2px solid red
}

.transport-table td:not(.no-padding) {
    padding-bottom: 5px;
    padding-top: 5px
}

.transport-table .for-carrier {
    border: 4px solid red
}

.transport-table .border-full {
    border: 2px solid red
}

.transport-table .border-top {
    border-top: 2px solid red
}

.transport-table .border-left {
    border-left: 2px solid red
}

.transport-table .border-right {
    border-right: 2px solid red
}

.transport-table .border-bottom {
    border-bottom: 2px solid red
}

.transport-table .vertical-top {
    vertical-align: top
}

.eshop-login-bar {
    display: flex;
    flex-direction: row;
    font-size: 1.1em;
    justify-content: space-between;
    padding: 15px 10px 0;
    width: 100%
}

.eshop-login-bar ul {
    display: flex;
    flex-direction: row;
    list-style: none;
    margin: 0;
    padding: 0
}

.eshop-login-bar ul > li > a {
    color: #20648b;
    padding: 10px 8px;
    position: relative
}

.eshop-login-bar ul > li > span {
    padding: 10px 8px
}

.eshop-login-bar .list-border {
    border-left: 1px solid #999
}

@media (max-width: 1024px) {
    .eshop-login-bar {
        display: none
    }
}

.eshop-header {
    width: 100%
}

.eshop-header .wrapper {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 25px 20px 40px;
    width: 100%
}

@media (max-width: 1024px) {
    .eshop-header .wrapper {
        flex-wrap: wrap;
        padding: 10px 0 40px
    }
}

.eshop-header .logo {
    flex-shrink: 0;
    font-size: 4em;
    font-weight: 600;
    line-height: 1;
    margin: 0;
    padding-right: 5px;
    text-transform: capitalize
}

.eshop-header .logo a {
    color: inherit;
    text-decoration: none
}

@media (max-width: 1024px) {
    .eshop-header .logo {
        font-size: 3em;
        margin-right: auto;
        padding-left: 20px
    }
}

@media (max-width: 480px) {
    .eshop-header .logo {
        font-size: 2em;
        margin-right: unset;
        padding-left: 10px
    }
}

.eshop-header .search {
    background-color: #fff;
    flex-basis: 59%;
    position: relative
}

.eshop-header .search .form {
    background-color: #fff;
    border: 1px solid #d2e0ed;
    border-radius: 3px;
    position: relative
}

.eshop-header .search .form input {
    -webkit-appearance: textfield;
    background-color: transparent;
    border: none;
    border-radius: inherit;
    caret-color: #20648b;
    height: 42px;
    outline: none;
    padding-left: 42px;
    width: calc(100% - 85px)
}

.eshop-header .search .search-mobile-navigation {
    display: none
}

@media (max-width: 1024px) {
    .eshop-header .search .search-mobile-navigation {
        display: flex;
        flex-direction: row
    }

    .eshop-header .search .search-mobile-navigation a {
        display: block;
        padding: 10px 10px 5px 0
    }
}

@media (max-width: 480px) {
    .eshop-header .search .search-mobile-navigation {
        justify-content: space-between
    }

    .eshop-header .search .search-mobile-navigation a {
        padding: 10px 0 5px
    }
}

@media (max-width: 1024px) {
    .eshop-header .search {
        box-shadow: 0 5px 5px rgba(0, 0, 0, .2);
        display: block;
        flex-basis: 100%;
        font-size: 1.2em;
        order: 3;
        padding: 4px 20px 6px
    }
}

@media (max-width: 480px) {
    .eshop-header .search {
        padding: 4px 10px 6px
    }
}

.eshop-header .previews {
    display: flex;
    flex-shrink: 0;
    margin-left: 5%;
    position: relative
}

.eshop-header .previews .previews_btn {
    align-items: center;
    color: #20648b;
    display: inline-flex;
    height: 44px;
    justify-content: center;
    margin-left: 5px;
    min-width: 44px;
    position: relative;
    text-align: center;
    text-decoration: none;
    white-space: nowrap
}

@media (max-width: 1024px) {
    .eshop-header .previews .previews_btn {
        fill: #fff;
        background-color: #20648b;
        border-radius: 3px;
        color: #fff;
        margin-left: 15px
    }
}

@media (max-width: 480px) {
    .eshop-header .previews .previews_btn {
        height: 38px;
        margin-left: 10px;
        min-width: 38px
    }
}

.eshop-header .previews .logout {
    display: none
}

@media (max-width: 1024px) {
    .eshop-header .previews .logout {
        display: block
    }

    .eshop-header .previews .logout .previews_btn {
        background-color: #d91f29
    }
}

.eshop-header .previews .previews_btn i.main {
    font-size: 2.5em
}

@media (max-width: 1024px) {
    .eshop-header .previews .previews_btn i.main {
        font-size: 2em
    }
}

.eshop-header .previews .previews_btn.empty {
    fill: #999;
    color: #999
}

@media (max-width: 1024px) {
    .eshop-header .previews {
        padding-right: 20px
    }
}

@media (max-width: 480px) {
    .eshop-header .previews {
        margin-left: 2px;
        padding-right: 10px
    }

    .eshop-header .previews .comparison {
        display: none
    }
}

.eshop-header .icon-search {
    fill: #c2c2c2;
    bottom: 0;
    font-size: 1.3em;
    height: 19px;
    left: 12px;
    margin: auto;
    pointer-events: none;
    position: absolute;
    top: 4px;
    width: 19px
}

.iquantity {
    background: #d91f29;
    border-radius: 1em;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    font-weight: 400;
    height: 17px;
    left: 26px;
    line-height: 14px;
    min-width: 17px;
    padding: 1px;
    position: absolute;
    text-align: center;
    top: 2px;
    white-space: nowrap;
    width: auto;
    z-index: 1
}

.btn-def {
    font-size: 17px;
    line-height: 20px;
    padding: 13px 20px
}

.btn-def, .btn-def-sm {
    border-radius: 4px;
    box-shadow: 0 2px 3px 0 #ccc;
    font-weight: 700;
    text-decoration: 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
}

.btn-def-sm {
    font-size: 14px;
    line-height: 1.42857143;
    padding: 6px 12px
}

.btn-def-sm:focus, .btn-def-sm:hover, .btn-def:focus, .btn-def:hover {
    text-decoration: none
}

.btn-def-sm.disabled, .btn-def.disabled {
    box-shadow: none;
    pointer-events: none
}

.btn-def-sm.disabled, .btn-def-sm.disabled:hover, .btn-def.disabled, .btn-def.disabled:hover {
    background-color: #c4c4c4;
    border-color: #c4c4c4;
    color: grey
}

.btn-back {
    background-color: var(--slate-font-color);
    color: #fff
}

.btn-back, .btn-back:hover {
    border: 1px solid var(--slate-font-color)
}

.btn-back:hover {
    background-color: transparent;
    color: var(--slate-font-color);
    text-decoration: none
}

.btn-continue {
    background-color: #2f8dcd;
    border: 1px solid #2f8dcd;
    color: #fff
}

.btn-continue:hover {
    background-color: #fff;
    border: 1px solid #2f8dcd;
    color: #2f8dcd
}

.btn-continue:active, .btn-continue:focus {
    background-color: #cce3ff;
    background-image: none;
    border-color: #2f8dcd;
    color: #2f8dcd
}

.btn-alert {
    background-color: #f0ad4e;
    border: 1px solid #f0ad4e;
    color: #fff
}

.btn-alert:hover {
    background-color: #fff;
    border: 1px solid #f0ad4e;
    color: #f0ad4e
}

.btn-alert:active, .btn-alert:focus {
    background-color: #ffe5cc;
    background-image: none;
    border-color: #f0ad4e;
    color: #f0ad4e
}

.btn-confirm {
    background-color: #2ecc39;
    border: 1px solid #2ecc39;
    color: #fff
}

.btn-confirm:hover {
    background-color: #fff;
    border: 1px solid #2ecc39;
    color: #2ecc39
}

.btn-confirm:active, .btn-confirm:focus {
    background-color: #ccffd9;
    background-image: none;
    border-color: #2ecc39;
    color: #2ecc39
}

.btn-clear-cart {
    background-color: #cc2e2e;
    border: 1px solid #cc2e2e;
    color: #fff
}

.btn-clear-cart:focus, .btn-clear-cart:hover {
    background-color: #fff;
    border: 1px solid #cc2e2e;
    color: #cc2e2e
}

.delivery-container {
    border: 3px solid #f5f5f5;
    flex: 2
}

.delivery-container h2 {
    background-color: #f5f5f5;
    color: var(--darkgray-font-color);
    font-size: 2em;
    margin-top: 0;
    padding: 15px
}

.delivery-container .delivery-options-wrapper {
    padding-left: 15px;
    padding-right: 15px
}

.variation-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 100%;
    overflow: auto;
    padding: 15px 8px;
    width: 100%
}

.variation-wrapper {
    display: flex;
    flex-flow: wrap;
    justify-content: flex-start;
    width: 100%
}

.variation-container .variation-image {
    background: transparent;
    box-shadow: 0 1px 8px rgba(0, 0, 0, .15);
    font-size: 100%;
    margin: 0;
    max-width: 200px;
    min-width: 100px;
    outline: 0;
    padding: 0;
    vertical-align: top
}

.variation-href {
    margin-bottom: 15px;
    margin-right: 15px;
    min-width: 100px;
    position: relative
}

.variation-href:hover {
    border: 2px solid #eee
}

.variation-href.selected {
    border: 3px solid #d1d1d1
}

.variation-name {
    background-color: #fff;
    bottom: 10%;
    box-shadow: 0 2px 20px rgba(50, 50, 93, .1), 0 5px 15px rgba(0, 0, 0, .07);
    color: #3f3d5b;
    font-size: .8em;
    font-weight: 700;
    left: 0;
    margin: 0 auto;
    max-width: 85%;
    min-width: 20px;
    padding: 5% 5px;
    position: absolute;
    right: 0;
    text-transform: uppercase
}

h3.recommended {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 15px;
    margin-left: 0;
    padding-bottom: 15px;
    width: 100%
}

td.headline {
    border-bottom: 1px solid #d9d9d9;
    padding: 16px 10px
}

.productList tbody tr.row_noimg, td.headline {
    background-color: #f4f4f4 !important
}

.search-bar-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding-bottom: 1em;
    padding-top: 1em;
    width: 100%
}

.search-bar-container .icon-input-wrapper {
    background-color: #fff;
    border: 2px solid #fff;
    border-radius: .375em;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .08), 0 2px 3px -1px rgba(0, 0, 0, .06), 0 -4px 6px -1px rgba(0, 0, 0, .08);
    display: flex;
    padding: .25em;
    transition-duration: .3s;
    transition-property: background-color, border-color, color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, 1, 1);
    width: 100%
}

.search-bar-container .icon-input-wrapper:focus-within {
    border-color: #5988d4
}

.search-bar-container .icon-search {
    align-self: center;
    display: block;
    margin-left: .5rem
}

.search-bar-container .search-bar {
    align-self: center;
    border-radius: .375em;
    border-width: 0;
    font-size: 1em;
    margin-bottom: .85em;
    margin-left: 1em;
    margin-top: .85em;
    outline: 0;
    padding-left: .5em;
    width: 100%
}

@media (max-width: 480px) {
    .search-bar-container .search-bar {
        font-size: 1.25em;
        margin-bottom: .5em;
        margin-left: .75em;
        margin-top: .5em
    }
}

.cd-products-comparison-table {
    margin-bottom: 8em;
    position: relative
}

.cd-products-comparison-table:after {
    content: "desktop";
    display: none
}

@media (max-width: 1024px) {
    .cd-products-comparison-table {
        margin-bottom: 6em
    }

    .cd-products-comparison-table:after {
        content: "mobile"
    }
}

.cd-products-table {
    overflow: hidden;
    position: relative
}

.cd-products-table .features {
    background-color: #fafafa;
    border: 1px solid #e6e6e6;
    border-right-width: 0;
    left: 0;
    opacity: .95;
    position: absolute;
    top: 0;
    width: 210px;
    z-index: 1
}

.cd-products-table .features:after {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, .06), transparent);
    content: "";
    height: 100%;
    left: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 4px
}

@media (max-width: 1024px) {
    .cd-products-table .features {
        height: 100%;
        width: 120px
    }
}

.cd-products-table.scrolling .features:after {
    opacity: 1
}

.cd-products-wrapper {
    -webkit-overflow-scrolling: touch;
    border-bottom: 1px solid #e6e6e6;
    border-left-color: #e6e6e6;
    border-left-style: solid;
    border-right-color: #e6e6e6;
    border-right-style: solid;
    border-top: 1px solid #e6e6e6;
    overflow-x: auto
}

.cd-products-columns {
    list-style: none;
    margin-bottom: 5px;
    margin-left: 210px;
    padding-left: 0
}

@media (max-width: 1024px) {
    .cd-products-columns {
        margin-left: 120px;
        width: 1200px
    }
}

.cd-products-columns:after, .cd-products-columns:before {
    clear: both;
    content: "";
    display: table
}

.cd-products-columns .product {
    float: left;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    text-align: center;
    transition: opacity .3s, visibility .3s, transform .3s;
    width: 310px
}

@media (max-width: 1024px) {
    .cd-products-columns .product {
        width: 150px
    }
}

.cd-features-list li {
    border-color: #e6e6e6;
    border-style: solid;
    border-width: 1px 1px 0 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.cd-features-list li, .cd-products-table .features .top-info, .features .cd-features-list li {
    font-size: 1.2em;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 16px;
    padding: 25px 20px;
    text-align: left;
    text-transform: uppercase
}

@media (max-width: 1024px) {
    .cd-products-table .features .top-info, .features .cd-features-list li {
        letter-spacing: 0;
        line-height: 14px;
        padding: 25px 10px;
        text-transform: none
    }
}

.features .cd-features-list li {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.cd-products-table .top-info {
    background: #fafafa;
    border: solid #e6e6e6;
    border-width: 0 1px 0 0;
    cursor: auto;
    display: flex;
    flex-direction: column;
    font-weight: 700;
    height: 350px;
    justify-content: space-between;
    letter-spacing: 1px;
    line-height: 16px;
    padding: 10px 0;
    position: relative;
    text-align: left;
    text-transform: uppercase;
    width: 310px
}

.cd-products-table .top-info:after {
    background-color: transparent;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .06), transparent);
    content: "";
    height: 4px;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 100%;
    width: 100%
}

.cd-products-table .top-info h3 {
    font-size: 1em;
    font-weight: 700;
    padding: 1em .2em .625em
}

.cd-products-table .top-info h4 {
    font-size: 1em;
    font-weight: 700;
    padding: .1em .2em .625em
}

.cd-products-table .top-info img {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: block;
    margin: 0 auto
}

.cd-products-table .top-info .product-availability, .cd-products-table .top-info .wishlist-comparison-wrapper, .cd-products-table .top-info h3, .cd-products-table .top-info h4, .cd-products-table .top-info img {
    transition: transform .3s
}

@media (max-width: 1024px) {
    .cd-products-table .top-info {
        height: 177px;
        width: 150px
    }

    .cd-products-table .top-info h3 {
        font-size: 1em;
        overflow: hidden;
        padding-top: 1.4em;
        text-overflow: ellipsis;
        white-space: nowrap
    }

    .cd-products-table .top-info .product-availability {
        font-size: 10px !important;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap
    }
}

.cd-products-table .features .top-info {
    background: #fafafa;
    cursor: auto;
    width: 209px
}

@media (max-width: 1024px) {
    .cd-products-table .features .top-info {
        width: 119px
    }
}

@-webkit-keyframes cd-bounce {
    0% {
        transform: scale(1)
    }
    60% {
        transform: scale(1.6)
    }
    to {
        transform: scale(1.5)
    }
}

@keyframes cd-bounce {
    0% {
        transform: scale(1)
    }
    60% {
        transform: scale(1.6)
    }
    to {
        transform: scale(1.5)
    }
}

.cd-products-table.top-fixed .cd-products-columns > li, .cd-products-table.top-fixed .features, .cd-products-table.top-scrolling .cd-products-columns > li, .cd-products-table.top-scrolling .features {
    padding-top: 230px
}

.cd-products-table.top-fixed .top-info, .cd-products-table.top-scrolling .top-info {
    height: 260px;
    position: fixed;
    top: 0
}

.no-cssgradients .cd-products-table.top-fixed .top-info, .no-cssgradients .cd-products-table.top-scrolling .top-info {
    border-bottom: 1px solid #e6e6e6
}

.cd-products-table.top-fixed .top-info:after, .cd-products-table.top-scrolling .top-info:after {
    opacity: 1
}

.cd-products-table.top-fixed .top-info .product-availability, .cd-products-table.top-fixed .top-info .wishlist-comparison-wrapper, .cd-products-table.top-fixed .top-info h3, .cd-products-table.top-fixed .top-info h4, .cd-products-table.top-scrolling .top-info .product-availability, .cd-products-table.top-scrolling .top-info .wishlist-comparison-wrapper, .cd-products-table.top-scrolling .top-info h3, .cd-products-table.top-scrolling .top-info h4 {
    overflow: hidden;
    text-overflow: ellipsis;
    transform: translateY(0);
    white-space: nowrap
}

.cd-products-table.top-fixed .top-info .product-availability, .cd-products-table.top-scrolling .top-info .product-availability {
    font-size: 12px !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.cd-products-table.top-fixed .top-info img, .cd-products-table.top-scrolling .top-info img {
    transform: translateY(0) scale(.8)
}

.cd-products-table.top-scrolling .top-info {
    position: absolute
}

.cd-table-navigation a {
    background: rgba(64, 64, 66, .8) no-repeat 50%;
    border-radius: 3px;
    height: 60px;
    position: absolute;
    right: 15px;
    top: 0;
    transform: translateY(100px);
    transition: background-color .3s, opacity .3s, visibility .3s, transform .3s;
    width: 40px;
    z-index: 2
}

.cd-table-navigation a.inactive {
    opacity: 0;
    visibility: hidden
}

.cd-table-navigation a.prev {
    left: 210px;
    right: auto;
    transform: translateY(100px) translateX(15px)
}

.no-touch .cd-table-navigation a:hover {
    background-color: #404042
}

@media (max-width: 1024px) {
    .cd-table-navigation a {
        transform: translateY(55px)
    }

    .cd-table-navigation a.prev {
        left: 120px;
        transform: translateY(55px) translateX(15px)
    }

    .top-fixed .cd-table-navigation a {
        position: fixed
    }

    .top-fixed .cd-table-navigation a, .top-scrolling .cd-table-navigation a {
        transform: translateY(45px)
    }

    .top-fixed .cd-table-navigation a.prev, .top-scrolling .cd-table-navigation a.prev {
        transform: translateY(45px) translateX(15px)
    }
}

.wi {
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .08), 0 2px 3px -1px rgba(0, 0, 0, .06), 0 -2px 4px -1px rgba(0, 0, 0, .08)
}

.wi .product-availability {
    font-weight: 700;
    padding: 5px 10px;
    text-align: left;
    width: 100%
}

.wi .remove-product-from-wishlist {
    color: #b8b8b8;
    transition: background-color .3s, transform .3s, border-color .3s
}

.wi .remove-product-from-wishlist:hover {
    background-color: #eca9a7;
    border-radius: .375em
}

*, :after, :before {
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246/0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-color: #ffff;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
}

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

.pointer-events-none {
    pointer-events: none
}

.visible {
    visibility: visible
}

.static {
    position: static
}

.fixed {
    position: fixed
}

.absolute {
    position: absolute
}

.relative {
    position: relative
}

.sticky {
    position: sticky
}

.inset-0 {
    left: 0;
    right: 0
}

.inset-0, .inset-y-0 {
    bottom: 0;
    top: 0
}

.bottom-0 {
    bottom: 0
}

.left-0 {
    left: 0
}

.bottom-1 {
    bottom: .25rem
}

.right-1 {
    right: .25rem
}

.left-1 {
    left: .25rem
}

.right-0 {
    right: 0
}

.top-32 {
    top: 8rem
}

.top-0 {
    top: 0
}

.right-2 {
    right: .5rem
}

.top-2 {
    top: .5rem
}

.top-3 {
    top: .75rem
}

.top-24 {
    top: 6rem
}

.right-1\.5 {
    right: .375rem
}

.bottom-1\.5 {
    bottom: .375rem
}

.left-3 {
    left: .75rem
}

.z-100 {
    z-index: 100
}

.z-20 {
    z-index: 20
}

.z-1000 {
    z-index: 1000
}

.z-50 {
    z-index: 50
}

.z-10 {
    z-index: 10
}

.order-2 {
    order: 2
}

.order-1 {
    order: 1
}

.col-span-2 {
    grid-column: span 2/span 2
}

.float-right {
    float: right
}

.float-left {
    float: left
}

.m-2 {
    margin: .5rem
}

.m-auto {
    margin: auto
}

.m-1 {
    margin: .25rem
}

.my-2 {
    margin-bottom: .5rem;
    margin-top: .5rem
}

.my-10 {
    margin-bottom: 2.5rem;
    margin-top: 2.5rem
}

.mx-1 {
    margin-left: .25rem;
    margin-right: .25rem
}

.mx-2 {
    margin-left: .5rem;
    margin-right: .5rem
}

.my-4 {
    margin-bottom: 1rem;
    margin-top: 1rem
}

.my-auto {
    margin-bottom: auto;
    margin-top: auto
}

.mx-auto {
    margin-left: auto;
    margin-right: auto
}

.mx-4 {
    margin-left: 1rem;
    margin-right: 1rem
}

.my-0 {
    margin-bottom: 0;
    margin-top: 0
}

.my-1 {
    margin-bottom: .25rem;
    margin-top: .25rem
}

.my-3 {
    margin-bottom: .75rem;
    margin-top: .75rem
}

.my-8 {
    margin-bottom: 2rem;
    margin-top: 2rem
}

.my-5 {
    margin-bottom: 1.25rem;
    margin-top: 1.25rem
}

.mb-3 {
    margin-bottom: .75rem
}

.mr-4 {
    margin-right: 1rem
}

.mb-2 {
    margin-bottom: .5rem
}

.mt-12 {
    margin-top: 3rem
}

.mt-20 {
    margin-top: 5rem
}

.mt-2 {
    margin-top: .5rem
}

.mt-0 {
    margin-top: 0
}

.mb-1 {
    margin-bottom: .25rem
}

.mb-8 {
    margin-bottom: 2rem
}

.mt-8 {
    margin-top: 2rem
}

.mt-4 {
    margin-top: 1rem
}

.mb-4 {
    margin-bottom: 1rem
}

.mt-1 {
    margin-top: .25rem
}

.mr-2 {
    margin-right: .5rem
}

.mt-5 {
    margin-top: 1.25rem
}

.mt-auto {
    margin-top: auto
}

.mr-16 {
    margin-right: 4rem
}

.mr-1 {
    margin-right: .25rem
}

.mb-0 {
    margin-bottom: 0
}

.ml-2 {
    margin-left: .5rem
}

.mr-auto {
    margin-right: auto
}

.-mb-px {
    margin-bottom: -1px
}

.-mt-10 {
    margin-top: -2.5rem
}

.ml-4 {
    margin-left: 1rem
}

.ml-auto {
    margin-left: auto
}

.block {
    display: block
}

.inline-block {
    display: inline-block
}

.inline {
    display: inline
}

.flex {
    display: flex
}

.table {
    display: table
}

.grid {
    display: grid
}

.hidden {
    display: none
}

.h-6 {
    height: 1.5rem
}

.h-36 {
    height: 9rem
}

.h-screen {
    height: 100vh
}

.h-full {
    height: 100%
}

.h-60 {
    height: 15rem
}

.h-8 {
    height: 2rem
}

.h-20 {
    height: 5rem
}

.h-12 {
    height: 3rem
}

.h-4 {
    height: 1rem
}

.h-auto {
    height: auto
}

.max-h-48 {
    max-height: 12rem
}

.max-h-8 {
    max-height: 2rem
}

.w-full {
    width: 100%
}

.w-6 {
    width: 1.5rem
}

.w-1\/2 {
    width: 50%
}

.w-0 {
    width: 0
}

.w-1\/4 {
    width: 25%
}

.w-2\/5 {
    width: 40%
}

.w-8 {
    width: 2rem
}

.w-4 {
    width: 1rem
}

.max-w-md {
    max-width: 28rem
}

.max-w-sm {
    max-width: 24rem
}

.max-w-xs {
    max-width: 20rem
}

.max-w-lg {
    max-width: 32rem
}

.flex-1 {
    flex: 1
}

.flex-auto {
    flex: 1 1 auto
}

.shrink-0 {
    flex-shrink: 0
}

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

.border-collapse {
    border-collapse: collapse
}

.transform {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.cursor-pointer {
    cursor: pointer
}

.cursor-move {
    cursor: move
}

.resize {
    resize: both
}

.appearance-none {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.grid-cols-5 {
    grid-template-columns:repeat(5, minmax(0, 1fr))
}

.grid-cols-1 {
    grid-template-columns:repeat(1, minmax(0, 1fr))
}

.grid-cols-4 {
    grid-template-columns:repeat(4, minmax(0, 1fr))
}

.grid-cols-8 {
    grid-template-columns:repeat(8, minmax(0, 1fr))
}

.grid-cols-2 {
    grid-template-columns:repeat(2, minmax(0, 1fr))
}

.grid-cols-3 {
    grid-template-columns:repeat(3, minmax(0, 1fr))
}

.grid-rows-1 {
    grid-template-rows:repeat(1, minmax(0, 1fr))
}

.flex-row {
    flex-direction: row
}

.flex-col {
    flex-direction: column
}

.flex-wrap {
    flex-wrap: wrap
}

.content-center {
    align-content: center
}

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

.items-end {
    align-items: flex-end
}

.items-center {
    align-items: center
}

.items-baseline {
    align-items: baseline
}

.items-stretch {
    align-items: stretch
}

.justify-start {
    justify-content: flex-start
}

.justify-center {
    justify-content: center
}

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

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

.justify-evenly {
    justify-content: space-evenly
}

.gap-2 {
    gap: .5rem
}

.gap-1 {
    gap: .25rem
}

.gap-0\.5 {
    gap: .125rem
}

.gap-0 {
    gap: 0
}

.gap-4 {
    gap: 1rem
}

.gap-8 {
    gap: 2rem
}

.gap-y-2 {
    row-gap: .5rem
}

.gap-x-4 {
    -moz-column-gap: 1rem;
    column-gap: 1rem
}

.space-y-1 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-bottom: calc(.25rem * var(--tw-space-y-reverse));
    margin-top: calc(.25rem * (1 - var(--tw-space-y-reverse)))
}

.space-x-2 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-left: calc(.5rem * (1 - var(--tw-space-x-reverse)));
    margin-right: calc(.5rem * var(--tw-space-x-reverse))
}

.space-x-1 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-left: calc(.25rem * (1 - var(--tw-space-x-reverse)));
    margin-right: calc(.25rem * var(--tw-space-x-reverse))
}

.space-x-4 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-left: calc(1rem * (1 - var(--tw-space-x-reverse)));
    margin-right: calc(1rem * var(--tw-space-x-reverse))
}

.space-y-2 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-bottom: calc(.5rem * var(--tw-space-y-reverse));
    margin-top: calc(.5rem * (1 - var(--tw-space-y-reverse)))
}

.space-y-3 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-bottom: calc(.75rem * var(--tw-space-y-reverse));
    margin-top: calc(.75rem * (1 - var(--tw-space-y-reverse)))
}

.divide-y > :not([hidden]) ~ :not([hidden]) {
    --tw-divide-y-reverse: 0;
    border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
    border-top-width: calc(1px * (1 - var(--tw-divide-y-reverse)))
}

.divide-x-0 > :not([hidden]) ~ :not([hidden]) {
    --tw-divide-x-reverse: 0;
    border-left-width: calc(0px * (1 - var(--tw-divide-x-reverse)));
    border-right-width: calc(0px * var(--tw-divide-x-reverse))
}

.divide-solid > :not([hidden]) ~ :not([hidden]) {
    border-style: solid
}

.divide-slate-400 > :not([hidden]) ~ :not([hidden]) {
    --tw-divide-opacity: 1;
    border-color: rgb(148 163 184/var(--tw-divide-opacity))
}

.self-end {
    align-self: flex-end
}

.self-stretch {
    align-self: stretch
}

.overflow-auto {
    overflow: auto
}

.overflow-hidden {
    overflow: hidden
}

.overflow-visible {
    overflow: visible
}

.overflow-scroll {
    overflow: scroll
}

.break-all {
    word-break: break-all
}

.rounded-sm {
    border-radius: .125rem
}

.rounded {
    border-radius: .25rem
}

.rounded-full {
    border-radius: 9999px
}

.rounded-lg {
    border-radius: .5rem
}

.rounded-md {
    border-radius: .375rem
}

.rounded-xl {
    border-radius: .75rem
}

.rounded-b {
    border-bottom-left-radius: .25rem;
    border-bottom-right-radius: .25rem
}

.rounded-l-none {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.rounded-t {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem
}

.border {
    border-width: 1px
}

.border-2 {
    border-width: 2px
}

.border-0 {
    border-width: 0
}

.border-4 {
    border-width: 4px
}

.border-t-4 {
    border-top-width: 4px
}

.border-b-2 {
    border-bottom-width: 2px
}

.border-b {
    border-bottom-width: 1px
}

.border-t-2 {
    border-top-width: 2px
}

.border-l {
    border-left-width: 1px
}

.border-t {
    border-top-width: 1px
}

.border-r {
    border-right-width: 1px
}

.border-l-2 {
    border-left-width: 2px
}

.border-l-4 {
    border-left-width: 4px
}

.border-solid {
    border-style: solid
}

.border-dashed {
    border-style: dashed
}

.border-slate-900 {
    --tw-border-opacity: 1;
    border-color: rgb(15 23 42/var(--tw-border-opacity))
}

.border-slate-400 {
    --tw-border-opacity: 1;
    border-color: rgb(148 163 184/var(--tw-border-opacity))
}

.border-slate-200 {
    --tw-border-opacity: 1;
    border-color: rgb(226 232 240/var(--tw-border-opacity))
}

.border-teal-500 {
    --tw-border-opacity: 1;
    border-color: rgb(20 184 166/var(--tw-border-opacity))
}

.border-blue-500 {
    --tw-border-opacity: 1;
    border-color: rgb(59 130 246/var(--tw-border-opacity))
}

.border-orange-200 {
    --tw-border-opacity: 1;
    border-color: rgb(254 215 170/var(--tw-border-opacity))
}

.border-slate-300 {
    --tw-border-opacity: 1;
    border-color: rgb(203 213 225/var(--tw-border-opacity))
}

.border-emerald-200 {
    --tw-border-opacity: 1;
    border-color: rgb(167 243 208/var(--tw-border-opacity))
}

.border-black {
    --tw-border-opacity: 1;
    border-color: rgb(0 0 0/var(--tw-border-opacity))
}

.border-red-600 {
    --tw-border-opacity: 1;
    border-color: rgb(220 38 38/var(--tw-border-opacity))
}

.border-blue-200 {
    --tw-border-opacity: 1;
    border-color: rgb(191 219 254/var(--tw-border-opacity))
}

.border-slate-100 {
    --tw-border-opacity: 1;
    border-color: rgb(241 245 249/var(--tw-border-opacity))
}

.border-red-700 {
    --tw-border-opacity: 1;
    border-color: rgb(185 28 28/var(--tw-border-opacity))
}

.border-red-900 {
    --tw-border-opacity: 1;
    border-color: rgb(127 29 29/var(--tw-border-opacity))
}

.border-slate-800 {
    --tw-border-opacity: 1;
    border-color: rgb(30 41 59/var(--tw-border-opacity))
}

.border-b-slate-100 {
    --tw-border-opacity: 1;
    border-bottom-color: rgb(241 245 249/var(--tw-border-opacity))
}

.border-b-slate-50 {
    --tw-border-opacity: 1;
    border-bottom-color: rgb(248 250 252/var(--tw-border-opacity))
}

.border-b-emerald-400 {
    --tw-border-opacity: 1;
    border-bottom-color: rgb(52 211 153/var(--tw-border-opacity))
}

.border-opacity-30 {
    --tw-border-opacity: 0.3
}

.bg-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255/var(--tw-bg-opacity))
}

.bg-red-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 202 202/var(--tw-bg-opacity))
}

.bg-emerald-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(16 185 129/var(--tw-bg-opacity))
}

.bg-slate-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(203 213 225/var(--tw-bg-opacity))
}

.bg-red-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(248 113 113/var(--tw-bg-opacity))
}

.bg-slate-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(100 116 139/var(--tw-bg-opacity))
}

.bg-emerald-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(110 231 183/var(--tw-bg-opacity))
}

.bg-teal-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(204 251 241/var(--tw-bg-opacity))
}

.bg-blue-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(59 130 246/var(--tw-bg-opacity))
}

.bg-red-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(239 68 68/var(--tw-bg-opacity))
}

.bg-emerald-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(167 243 208/var(--tw-bg-opacity))
}

.bg-slate-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(226 232 240/var(--tw-bg-opacity))
}

.bg-red-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(252 165 165/var(--tw-bg-opacity))
}

.bg-indigo-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(199 210 254/var(--tw-bg-opacity))
}

.bg-indigo-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(99 102 241/var(--tw-bg-opacity))
}

.bg-green-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(134 239 172/var(--tw-bg-opacity))
}

.bg-red-700 {
    --tw-bg-opacity: 1;
    background-color: rgb(185 28 28/var(--tw-bg-opacity))
}

.bg-blue-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(191 219 254/var(--tw-bg-opacity))
}

.bg-slate-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(241 245 249/var(--tw-bg-opacity))
}

.bg-emerald-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(52 211 153/var(--tw-bg-opacity))
}

.bg-orange-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(255 237 213/var(--tw-bg-opacity))
}

.bg-blue-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(147 197 253/var(--tw-bg-opacity))
}

.bg-red-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(220 38 38/var(--tw-bg-opacity))
}

.bg-blue-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(37 99 235/var(--tw-bg-opacity))
}

.bg-emerald-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(209 250 229/var(--tw-bg-opacity))
}

.bg-teal-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(17 94 89/var(--tw-bg-opacity))
}

.bg-yellow-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 240 138/var(--tw-bg-opacity))
}

.bg-yellow-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(253 224 71/var(--tw-bg-opacity))
}

.bg-orange-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 215 170/var(--tw-bg-opacity))
}

.bg-orange-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(253 186 116/var(--tw-bg-opacity))
}

.bg-blue-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(30 58 138/var(--tw-bg-opacity))
}

.bg-blue-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(219 234 254/var(--tw-bg-opacity))
}

.bg-red-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 226 226/var(--tw-bg-opacity))
}

.bg-orange-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(234 88 12/var(--tw-bg-opacity))
}

.bg-orange-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(124 45 18/var(--tw-bg-opacity))
}

.bg-pink-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(249 168 212/var(--tw-bg-opacity))
}

.bg-yellow-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(234 179 8/var(--tw-bg-opacity))
}

.bg-green-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(34 197 94/var(--tw-bg-opacity))
}

.bg-red-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(153 27 27/var(--tw-bg-opacity))
}

.bg-indigo-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(224 231 255/var(--tw-bg-opacity))
}

.bg-orange-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(249 115 22/var(--tw-bg-opacity))
}

.bg-slate-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(15 23 42/var(--tw-bg-opacity))
}

.bg-purple-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(168 85 247/var(--tw-bg-opacity))
}

.bg-black {
    --tw-bg-opacity: 1;
    background-color: rgb(0 0 0/var(--tw-bg-opacity))
}

.bg-slate-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(148 163 184/var(--tw-bg-opacity))
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops))
}

.from-slate-100 {
    --tw-gradient-from: #f1f5f9;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(241 245 249/0))
}

.to-slate-200 {
    --tw-gradient-to: #e2e8f0
}

.fill-current {
    fill: currentColor
}

.object-center {
    -o-object-position: center;
    object-position: center
}

.p-2 {
    padding: .5rem
}

.p-4 {
    padding: 1rem
}

.p-1 {
    padding: .25rem
}

.p-10 {
    padding: 2.5rem
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem
}

.py-4 {
    padding-bottom: 1rem;
    padding-top: 1rem
}

.px-2 {
    padding-left: .5rem;
    padding-right: .5rem
}

.py-1 {
    padding-bottom: .25rem;
    padding-top: .25rem
}

.px-1 {
    padding-left: .25rem;
    padding-right: .25rem
}

.py-3 {
    padding-bottom: .75rem;
    padding-top: .75rem
}

.py-2 {
    padding-bottom: .5rem;
    padding-top: .5rem
}

.py-8 {
    padding-bottom: 2rem;
    padding-top: 2rem
}

.px-3 {
    padding-left: .75rem;
    padding-right: .75rem
}

.px-16 {
    padding-left: 4rem;
    padding-right: 4rem
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem
}

.py-0\.5 {
    padding-bottom: .125rem;
    padding-top: .125rem
}

.py-0 {
    padding-bottom: 0;
    padding-top: 0
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem
}

.pt-2 {
    padding-top: .5rem
}

.pt-1 {
    padding-top: .25rem
}

.pb-2 {
    padding-bottom: .5rem
}

.pt-10 {
    padding-top: 2.5rem
}

.pt-4 {
    padding-top: 1rem
}

.pb-4 {
    padding-bottom: 1rem
}

.pb-1 {
    padding-bottom: .25rem
}

.pb-10 {
    padding-bottom: 2.5rem
}

.pt-8 {
    padding-top: 2rem
}

.pt-16 {
    padding-top: 4rem
}

.pr-2 {
    padding-right: .5rem
}

.pr-8 {
    padding-right: 2rem
}

.pl-8 {
    padding-left: 2rem
}

.pl-2 {
    padding-left: .5rem
}

.pt-5 {
    padding-top: 1.25rem
}

.pl-4 {
    padding-left: 1rem
}

.pl-1 {
    padding-left: .25rem
}

.pr-4 {
    padding-right: 1rem
}

.pr-1 {
    padding-right: .25rem
}

.text-left {
    text-align: left
}

.text-center {
    text-align: center
}

.text-right {
    text-align: right
}

.align-baseline {
    vertical-align: baseline
}

.align-top {
    vertical-align: top
}

.align-bottom {
    vertical-align: bottom
}

.text-tiny {
    font-size: .875rem
}

.text-xl {
    font-size: 1.25rem
}

.text-base {
    font-size: 1rem
}

.text-sm {
    font-size: .875rem
}

.text-2xl {
    font-size: 1.5rem
}

.text-xs {
    font-size: .75rem
}

.text-lg {
    font-size: 1.125rem
}

.text-xss {
    font-size: .5rem
}

.text-3xl {
    font-size: 1.875rem
}

.text-14xl {
    font-size: 10rem
}

.text-4xl {
    font-size: 2.25rem
}

.font-bold {
    font-weight: 700
}

.font-semibold {
    font-weight: 600
}

.font-normal {
    font-weight: 400
}

.font-extrabold {
    font-weight: 800
}

.uppercase {
    text-transform: uppercase
}

.italic {
    font-style: italic
}

.ordinal {
    --tw-ordinal: ordinal;
    font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)
}

.leading-tight {
    line-height: 1.25
}

.leading-8 {
    line-height: 2rem
}

.tracking-wider {
    letter-spacing: .05em
}

.tracking-wide {
    letter-spacing: .025em
}

.text-slate-400 {
    --tw-text-opacity: 1;
    color: rgb(148 163 184/var(--tw-text-opacity))
}

.text-emerald-900 {
    --tw-text-opacity: 1;
    color: rgb(6 78 59/var(--tw-text-opacity))
}

.text-red-900 {
    --tw-text-opacity: 1;
    color: rgb(127 29 29/var(--tw-text-opacity))
}

.text-blue-900 {
    --tw-text-opacity: 1;
    color: rgb(30 58 138/var(--tw-text-opacity))
}

.text-red-600 {
    --tw-text-opacity: 1;
    color: rgb(220 38 38/var(--tw-text-opacity))
}

.text-red-800 {
    --tw-text-opacity: 1;
    color: rgb(153 27 27/var(--tw-text-opacity))
}

.text-teal-900 {
    --tw-text-opacity: 1;
    color: rgb(19 78 74/var(--tw-text-opacity))
}

.text-teal-500 {
    --tw-text-opacity: 1;
    color: rgb(20 184 166/var(--tw-text-opacity))
}

.text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255/var(--tw-text-opacity))
}

.text-emerald-800 {
    --tw-text-opacity: 1;
    color: rgb(6 95 70/var(--tw-text-opacity))
}

.text-slate-700 {
    --tw-text-opacity: 1;
    color: rgb(51 65 85/var(--tw-text-opacity))
}

.text-emerald-700 {
    --tw-text-opacity: 1;
    color: rgb(4 120 87/var(--tw-text-opacity))
}

.text-red-400 {
    --tw-text-opacity: 1;
    color: rgb(248 113 113/var(--tw-text-opacity))
}

.text-slate-500 {
    --tw-text-opacity: 1;
    color: rgb(100 116 139/var(--tw-text-opacity))
}

.text-blue-700 {
    --tw-text-opacity: 1;
    color: rgb(29 78 216/var(--tw-text-opacity))
}

.text-blue-600 {
    --tw-text-opacity: 1;
    color: rgb(37 99 235/var(--tw-text-opacity))
}

.text-red-700 {
    --tw-text-opacity: 1;
    color: rgb(185 28 28/var(--tw-text-opacity))
}

.text-slate-300 {
    --tw-text-opacity: 1;
    color: rgb(203 213 225/var(--tw-text-opacity))
}

.text-slate-100 {
    --tw-text-opacity: 1;
    color: rgb(241 245 249/var(--tw-text-opacity))
}

.text-blue-400 {
    --tw-text-opacity: 1;
    color: rgb(96 165 250/var(--tw-text-opacity))
}

.text-blue-500 {
    --tw-text-opacity: 1;
    color: rgb(59 130 246/var(--tw-text-opacity))
}

.text-slate-900 {
    --tw-text-opacity: 1;
    color: rgb(15 23 42/var(--tw-text-opacity))
}

.text-yellow-900 {
    --tw-text-opacity: 1;
    color: rgb(113 63 18/var(--tw-text-opacity))
}

.text-orange-600 {
    --tw-text-opacity: 1;
    color: rgb(234 88 12/var(--tw-text-opacity))
}

.text-teal-800 {
    --tw-text-opacity: 1;
    color: rgb(17 94 89/var(--tw-text-opacity))
}

.text-orange-500 {
    --tw-text-opacity: 1;
    color: rgb(249 115 22/var(--tw-text-opacity))
}

.text-slate-600 {
    --tw-text-opacity: 1;
    color: rgb(71 85 105/var(--tw-text-opacity))
}

.text-slate-200 {
    --tw-text-opacity: 1;
    color: rgb(226 232 240/var(--tw-text-opacity))
}

.text-slate-800 {
    --tw-text-opacity: 1;
    color: rgb(30 41 59/var(--tw-text-opacity))
}

.underline {
    text-decoration-line: underline
}

.line-through {
    text-decoration-line: line-through
}

.no-underline {
    text-decoration-line: none
}

.placeholder-slate-500::-moz-placeholder {
    --tw-placeholder-opacity: 1;
    color: rgb(100 116 139/var(--tw-placeholder-opacity))
}

.placeholder-slate-500:-ms-input-placeholder {
    --tw-placeholder-opacity: 1;
    color: rgb(100 116 139/var(--tw-placeholder-opacity))
}

.placeholder-slate-500::placeholder {
    --tw-placeholder-opacity: 1;
    color: rgb(100 116 139/var(--tw-placeholder-opacity))
}

.placeholder-slate-600::-moz-placeholder {
    --tw-placeholder-opacity: 1;
    color: rgb(71 85 105/var(--tw-placeholder-opacity))
}

.placeholder-slate-600:-ms-input-placeholder {
    --tw-placeholder-opacity: 1;
    color: rgb(71 85 105/var(--tw-placeholder-opacity))
}

.placeholder-slate-600::placeholder {
    --tw-placeholder-opacity: 1;
    color: rgb(71 85 105/var(--tw-placeholder-opacity))
}

.opacity-50 {
    opacity: .5
}

.opacity-0 {
    opacity: 0
}

.opacity-90 {
    opacity: .9
}

.opacity-100 {
    opacity: 1
}

.opacity-75 {
    opacity: .75
}

.shadow-md {
    --tw-shadow: 0 4px 6px -1px rgb(0 0 0/0.1), 0 2px 4px -2px rgb(0 0 0/0.1);
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color)
}

.shadow-lg, .shadow-md {
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow), var(--tw-shadow)
}

.shadow-lg {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0/0.1), 0 4px 6px -4px rgb(0 0 0/0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color)
}

.shadow {
    --tw-shadow: 0 1px 3px 0 rgb(0 0 0/0.1), 0 1px 2px -1px rgb(0 0 0/0.1);
    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow), var(--tw-shadow)
}

.blur {
    --tw-blur: blur(8px)
}

.blur, .filter {
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}

.transition {
    transition-duration: .15s;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1)
}

.transition-colors {
    transition-duration: .15s;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1)
}

.duration-300 {
    transition-duration: .3s
}

.duration-150 {
    transition-duration: .15s
}

.ease-in {
    transition-timing-function: cubic-bezier(.4, 0, 1, 1)
}

.ease-in-out {
    transition-timing-function: cubic-bezier(.4, 0, .2, 1)
}

.grid {
    display: revert
}

.grid-custom {
    display: grid
}

.\[display\:none\], .hidden-to-show {
    display: none
}

*, :after, :before {
    border: 0 solid #e5e7eb;
    box-sizing: border-box
}

:after, :before {
    --tw-content: ""
}

body {
    line-height: inherit;
    margin: 0
}

hr {
    border-top-width: 1px;
    color: inherit;
    height: 0
}

abbr:where([title]) {
    text-decoration: underline dotted
}

h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit
}

a {
    color: inherit;
    text-decoration: inherit
}

b, strong {
    font-weight: bolder
}

small {
    font-size: 80%
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

table {
    border-collapse: collapse;
    border-color: inherit;
    text-indent: 0
}

button, input, optgroup, select, textarea {
    color: inherit;
    font-family: inherit;
    font-size: 100%;
    line-height: inherit;
    margin: 0;
    padding: 0
}

button, select {
    text-transform: none
}

:-moz-focusring {
    outline: auto
}

:-moz-ui-invalid {
    box-shadow: none
}

progress {
    vertical-align: baseline
}

::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

summary {
    display: list-item
}

blockquote, dd, dl, figure, h1, h2, h3, h4, h5, h6, hr, p, pre {
    margin: 0
}

fieldset {
    margin: 0
}

fieldset, legend {
    padding: 0
}

menu, ol, ul {
    list-style: none;
    margin: 0;
    padding: 0
}

textarea {
    resize: vertical
}

[role=button], button {
    cursor: pointer
}

:disabled {
    cursor: default
}

audio, canvas, embed, iframe, img, object, svg, video {
    display: block;
    vertical-align: middle
}

img, video {
    height: auto;
    max-width: 100%
}

[hidden] {
    display: none
}

html {
    font-size: calc(.9em + .04vw)
}

body, html {
    height: 100%;
    width: 100%
}

body {
    font-family: Roboto, sans-serif;
    font-size: unset;
    font-weight: 400
}

.select2-results__options {
    font-size: .875rem
}

a {
    --tw-text-opacity: 1;
    color: rgb(37 99 235/var(--tw-text-opacity))
}

.checkbox {
    color: var(--chekbox-color);
    display: grid;
    font-size: 2rem;
    grid-template-columns:min-content auto
}

.checkbox--disabled {
    color: var(--chekbox-disabled)
}

.checkbox__control {
    border: .1em solid;
    border-radius: .1em;
    display: inline-grid;
    height: .8em;
    width: .8em
}

.checkbox__control svg {
    transform: scale(0);
    transform-origin: bottom left;
    transition: transform .1s ease-in 25ms
}

.checkbox__input {
    display: grid;
    grid-template-areas:"checkbox"
}

.checkbox__input > * {
    grid-area: checkbox
}

.checkbox__input input {
    height: .2em;
    opacity: 0;
    width: .2em
}

.checkbox__input input:focus + .checkbox__control {
    box-shadow: 0 0 0 .05em #fff, 0 0 .15em .1em currentColor
}

.checkbox__input input:checked + .checkbox__control svg {
    transform: scale(1)
}

.checkbox__input input:disabled + .checkbox__control {
    color: var(--disabled)
}

div, h1, h2, h3, h4, h5, h6, p {
    font-size: .75rem
}

body .fa-2x {
    font-size: 1.25rem
}

.product-row {
    border: 2px solid #eee;
    border-radius: 4px;
    margin-bottom: 10px
}

a > i, a > span, button > i, button > span {
    pointer-events: none
}

.input-has-error {
    border: 1px solid #a94442 !important
}

.qr-message {
    bottom: -50px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    z-index: 1000
}

.form-control[disabled] {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: hsla(0, 0%, 100%, .2);
    border: 1px solid rgba(0, 0, 0, .1);
    box-shadow: none
}

.tag {
    background: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
    color: #555;
    cursor: default;
    margin: 5px 0 0 6px;
    padding: 1px 6px
}

#ordertable .kv-expand-detail-row.success.skip-export > td {
    background-color: #e16441;
    border-bottom: 3px solid #e16441;
    border-left: 3px solid #e16441;
    border-right: 3px solid #e16441;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important
}

.border-highlight {
    border-left: 3px solid #e16441 !important;
    border-right: 3px solid #e16441 !important;
    border-top: 3px solid #e16441 !important
}

.pulsating-fc {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: colorFC;
    animation-name: colorFC;
    color: #ffbda8
}

.pulsating-bc, .pulsating-fc {
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s
}

.pulsating-bc {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: colorBC;
    animation-name: colorBC;
    background-color: #ffbda8
}

@-webkit-keyframes colorBC {
    0% {
        background-color: #ffbda8
    }
    50% {
        background-color: #ff470f
    }
    to {
        background-color: #ffbda8
    }
}

@keyframes colorBC {
    0% {
        background-color: #ffbda8
    }
    50% {
        background-color: #ff470f
    }
    to {
        background-color: #ffbda8
    }
}

@-webkit-keyframes colorFC {
    0% {
        color: #ffbda8
    }
    50% {
        color: #ff470f
    }
    to {
        color: #ffbda8
    }
}

@keyframes colorFC {
    0% {
        color: #ffbda8
    }
    50% {
        color: #ff470f
    }
    to {
        color: #ffbda8
    }
}

.main-image-container .additional-images .img {
    transition: transform .3s ease-in-out
}

.main-image-container .additional-images .img:hover {
    transform: scale(1.05)
}

.product-detail-header {
    font-family: Montserrat, sans-serif
}

.swipe-arrows {
    display: none
}

.skew20 {
    transform: skew(20deg)
}

.skew-20 {
    transform: skew(-20deg)
}

.skew0 {
    transform: skew(0deg)
}

.step {
    background: var(--complaint-bg-color);
    border-radius: 0 .675em .675em 0;
    color: #fff;
    font-size: 1.5rem;
    height: 1.35em;
    left: 0;
    padding-left: 0;
    padding-top: 0;
    position: absolute;
    text-align: center;
    text-shadow: 1px 1px rgba(255, 150, 0, .5);
    top: 3%;
    width: 1.35em
}

.mt-20 {
    margin-top: 5px
}

.alert {
    border: 1px solid transparent;
    border-radius: 4px;
    margin-bottom: 10px;
    padding: 10px
}

.alert-info {
    background-color: #d9edf7;
    border-color: #bce8f1;
    color: #31708f
}

.alert-danger {
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442
}

.alert-warning {
    background-color: #fcf8e3;
    border-color: #faebcc;
    color: #8a6d3b
}

.alert-success {
    background-color: #dff0d8;
    border-color: #d6e9c6;
    color: #3c763d
}

.alert-not-avail {
    background-color: #d9d9d9;
    border-color: #bababa;
    color: #6b6666
}

h4.product {
    background-color: var(--product-bc-color)
}

h4.item {
    background-color: #80deea
}

h4.user {
    background-color: #eee
}

h4.eshop {
    background-color: #b39ddb
}

h4.dhl {
    background-color: #fc0;
    color: #c00;
    padding: 5px
}

h4.settings {
    background-color: #00b2ff;
    padding: 5px
}

h4.webareal {
    background-color: #0083d4;
    color: #fff;
    padding: 5px
}

h4.order {
    background-color: var(--order-bc-color)
}

h4.item {
    background-color: var(--item-bc-color)
}

h4.receipt2 {
    background-color: var(--receipt2-bc-color)
}

h4.receipt {
    background-color: var(--receipt-bc-color)
}

.product-bc {
    background-color: var(--product-bc-color);
    color: var(--main-font-color)
}

.item-bc {
    background-color: var(--item-bc-color);
    color: #fff
}

.item-fg {
    color: var(--item-fg-color)
}

.order-bc {
    background-color: var(--order-bc-color)
}

.expenditure-bc, .order-bc {
    color: var(--main-font-color)
}

.expenditure-bc {
    background-color: #fff59d
}

.order-fg {
    color: var(--order-fg-color)
}

.transfer-bc {
    background-color: var(--transfer-bc-color);
    color: var(--main-font-color)
}

.transfer-fg {
    color: var(--transfer-fg-color)
}

.receipt-bc {
    background-color: var(--receipt-bc-color);
    color: var(--main-font-color)
}

.receipt-fg {
    color: var(--receipt-fg-color)
}

.receipt2-bc {
    background-color: var(--receipt2-bc-color);
    color: var(--main-font-color)
}

.receipt-group-bc {
    background-color: var(--receipt-group-bc-color);
    color: var(--main-font-color)
}

.receipt2-fg {
    color: var(--receipt2-fg-color)
}

.container-flex-new .item-new h4.complaint {
    background-color: #3e2723;
    color: #fff
}

.cube-rectangle-left {
    border-right: 90px solid transparent;
    border-top: 90px solid #01579b;
    height: 0;
    position: absolute;
    width: 0
}

.cube-rectangle-right {
    border-bottom: 90px solid #e65100;
    border-left: 90px solid transparent;
    height: 0;
    width: 0
}

.truncate {
    max-height: 200px;
    overflow: scroll
}

.mobile-block-header i {
    display: none
}

.btn-container {
    align-items: baseline;
    display: flex;
    flex-direction: row
}

.btn-container > .btn-group, .btn-container > a, .btn-container > button {
    margin: 0 5px 0 0
}

.custom-btn-mobile-control {
    display: none
}

.product-detail-detail {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 5px 15px 15px 5px;
    width: 100%
}

.product-detail-header h1, .product-detail-header h4, .product-detail-header p {
    margin-bottom: 0;
    margin-top: 5px;
    padding: 5px
}

.product-detail-detail .main-image-container {
    flex-basis: 50%;
    flex-grow: 1;
    padding: 5px 15px 5px 5px;
    position: relative
}

.main-image-container .additional-images {
    margin-top: auto;
    overflow: hidden
}

.product-detail-detail .main-image-container .main-image {
    max-width: 100%
}

.product-detail-detail .info-container {
    display: flex;
    flex-basis: 50%;
    flex-direction: column;
    flex-grow: 1;
    flex-wrap: wrap;
    font-family: Rubik, sans-serif;
    font-weight: 400
}

.product-detail-breadcrumbs {
    font-family: Rubik, sans-serif;
    padding-left: 5px;
    padding-right: 5px;
    width: 100%
}

.producer-widget-wrapper {
    align-content: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    font-family: Montserrat, sans-serif;
    justify-content: space-between;
    margin: -5px;
    overflow: hidden;
    padding: 15px 5px;
    position: relative;
    width: 100%
}

.producer-widget-wrapper .producer {
    box-shadow: -2px 2px 10px 0 rgba(68, 68, 68, .2);
    display: flex;
    flex-basis: 10%;
    flex-direction: column;
    flex-grow: 1;
    flex-wrap: wrap;
    margin: 5px;
    padding: 5px;
    position: relative;
    transition: transform .3s ease-in-out
}

.producer-widget-wrapper .producer:hover {
    transform: scale(1.05)
}

.producer-widget-wrapper .producer-name {
    margin-top: auto;
    text-align: center
}

.producer-widget-wrapper .producer-name a {
    color: inherit;
    text-decoration: none
}

.image-gallery-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding-bottom: 15px;
    padding-top: 15px
}

.image-gallery-wrapper .image-wrapper {
    margin: 5px 10px 5px 5px
}

.image-gallery-wrapper .image-wrapper .img {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: -2px 2px 10px 0 rgba(68, 68, 68, .4);
    height: 200px;
    position: relative;
    transition: transform .3s ease-in-out;
    width: 200px
}

.image-gallery-wrapper .image-wrapper .img:hover {
    transform: scale(1.05)
}

.widget-wrapper {
    display: flex;
    flex-wrap: wrap;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    padding-top: 30px;
    width: 100%
}

.widget-wrapper .header-widget {
    font-family: Rubik, sans-serif;
    font-weight: 400;
    width: 100%
}

.widget-wrapper .products-widget {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    margin: -5px
}

.products-widget .widget-product-card {
    background: linear-gradient(180deg, #fff 0, #fff 40%, rgba(210, 223, 230, .25) 85%);
    border-radius: 2px;
    box-shadow: 0 0 3px 1px rgba(0, 0, 0, .11);
    display: flex;
    flex-basis: 20%;
    flex-direction: column;
    flex-grow: 1;
    font-family: Rubik, sans-serif;
    margin: 5px 100px 5px 5px;
    max-width: 250px;
    overflow: hidden;
    position: relative
}

.products-widget .widget-product-card:nth-child(4) {
    margin: 5px
}

.widget-product-card:first-child {
    margin-left: 5px
}

.widget-product-card .product-image img {
    max-height: 200px;
    max-width: 100%
}

.products-widget .widget-product-card .product-info {
    font-family: Rubik, sans-serif;
    font-weight: 400
}

.widget-product-card .add-to-cart-wrapper {
    align-items: flex-end;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    font-size: .5rem;
    justify-content: space-between;
    padding: .5rem;
    position: relative
}

.site-signup .widget-product-card .add-to-cart-wrapper {
    display: flex;
    flex-wrap: wrap
}

.widget-product-card .wishlist-comparison-wrapper {
    align-items: flex-end;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    font-size: .5rem;
    justify-content: space-between;
    padding: .5rem;
    position: relative
}

.site-signup .widget-product-card .wishlist-comparison-wrapper {
    display: flex;
    flex-wrap: wrap
}

.widget-product-card .quantity.buttons_added .minus, .widget-product-card .quantity.buttons_added .plus, .widget-product-card .quantity .input-text.qty {
    font-family: Roboto, sans-serif;
    font-weight: 400;
    height: 33px
}

.widget-product-card .product-info .add-to-cart {
    font-size: .5rem;
    line-height: 25px;
    min-height: 30px;
    padding: 3px 12px
}

.widget-product-card .free-shipping-flag .free-shipping-section {
    font-size: .5rem;
    padding: 10px 17px 10px 16px
}

.widget-product-card .price-el .price-el-price {
    font-size: .5rem;
    padding: 6px 17px 4px 20px
}

.widget-product-card .price-el .price-el-price .price-section {
    font-size: .875rem
}

.flag-base {
    color: #fff;
    font-family: Rubik, sans-serif;
    letter-spacing: .05px;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 4
}

.new-product-flag {
    background: #2cb2ff;
    top: 80px
}

.hot-sale-flag {
    background: #ff5b2e;
    top: 112px
}

.free-shipping-flag-detail {
    background: #181818;
    top: 48px
}

.new-product-flag .new-product-section {
    font-size: .5rem;
    font-weight: 500;
    line-height: 1;
    padding: 10px 16px 9px 12px
}

.hot-sale-flag .hot-sale-section {
    font-size: .5rem;
    font-weight: 500;
    line-height: 1;
    padding: 10px 17px 9px 10px
}

.free-shipping-flag-detail .free-shipping-section {
    font-size: .5rem;
    font-weight: 500;
    line-height: 1;
    padding: 10px 16px 9px 12px
}

.free-shipping-flag-detail .free-shipping-flag-right-top, .hot-sale-flag .hot-sale-flag-right-top, .new-product-flag .new-product-flag-right-top {
    background: inherit;
    border: 0 solid;
    border-color: inherit;
    height: 18px;
    position: absolute;
    right: -6px;
    top: 4px;
    transform: rotate(60deg);
    width: 18px;
    z-index: 1
}

.free-shipping-flag-detail .free-shipping-flag-right-bottom, .hot-sale-flag .hot-sale-flag-right-bottom, .new-product-flag .new-product-flag-right-bottom {
    background: inherit;
    border: 0 solid;
    border-color: inherit;
    bottom: 3px;
    height: 18px;
    position: absolute;
    right: -6px;
    transform: rotate(30deg);
    width: 18px;
    z-index: 1
}

.price-el {
    left: -12px
}

.free-shipping-flag, .price-el {
    color: #fff;
    font-family: Rubik, sans-serif;
    letter-spacing: .05px;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    top: 0
}

.free-shipping-flag {
    right: -12px
}

.free-shipping-flag .free-shipping-section {
    padding: 15px 18px 14px 21px
}

.free-shipping-flag .free-shipping-section, .price-el .price-el-price {
    background: hsla(0, 0%, 9%, .8);
    font-size: .5rem;
    font-weight: 500;
    line-height: 1
}

.price-el .price-el-price {
    padding: 10px 18px 8px 21px
}

.price-el-price .price-section {
    font-size: 24px;
    padding-right: 10px
}

.price-section .price sup {
    font-size: 65%;
    font-weight: 400;
    margin-right: 1px;
    top: -.4em
}

.price-section .price sup:last-of-type {
    font-weight: 300;
    margin-left: 1px
}

.price-el .price-el-discount {
    background: #181818;
    color: #6e6e6e;
    display: block;
    font-size: .5rem;
    font-weight: 400;
    padding: 2px 15px 3px 33px;
    white-space: nowrap
}

.price-el-discount span {
    color: #f7922f;
    font-size: .5rem;
    font-weight: 500
}

.quantity {
    display: inline-block
}

.quantity .input-text.qty {
    -moz-appearance: textfield;
    background-color: transparent;
    border: 1px solid #efefef;
    height: 44px;
    margin-left: -3px;
    margin-right: -3px;
    padding: 0 5px;
    text-align: center;
    width: 44px
}

.quantity.buttons_added {
    position: relative;
    text-align: left;
    vertical-align: top;
    white-space: nowrap
}

.quantity.buttons_added input {
    box-shadow: none;
    display: inline-block;
    margin: 0;
    vertical-align: top
}

.quantity.buttons_added .minus, .quantity.buttons_added .plus {
    background-color: #fff;
    border: 1px solid #efefef;
    cursor: pointer;
    height: 44px;
    padding: 7px 10px 8px
}

.quantity.buttons_added .minus {
    border-right: 0
}

.quantity.buttons_added .plus {
    border-left: 0
}

.quantity.buttons_added .minus:hover, .quantity.buttons_added .plus:hover {
    background: #eee
}

.quantity input::-webkit-inner-spin-button, .quantity input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    margin: 0
}

.quantity.buttons_added .minus:focus, .quantity.buttons_added .plus:focus {
    outline: none
}

.filter-label {
    background-color: #5cb85c;
    border-radius: 20px;
    color: #fff;
    display: inline-block;
    font-size: .5rem;
    padding: 5px 7px
}

.filter-label a {
    background-color: #c9c9c9;
    border: 1px solid #4cae4c;
    border-radius: 50%;
    color: #2e2e2e;
    display: inline-block;
    height: 20px;
    text-align: center;
    text-decoration: none;
    width: 20px
}

.eshop-container {
    margin: 0 auto;
    max-width: 1600px;
    width: 100%
}

.category-wrapper, .products-wrapper {
    display: flex;
    flex: 1;
    flex-wrap: wrap
}

.products-wrapper {
    margin-left: -5px;
    margin-right: -5px
}

.product-card {
    background: linear-gradient(180deg, #fff 0, #fff 40%, rgba(210, 223, 230, .25) 85%);
    border-radius: 2px;
    box-shadow: 0 0 3px 1px rgba(0, 0, 0, .11);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    font-family: Montserrat, sans-serif;
    margin: 5px;
    max-width: 500px;
    position: relative
}

.product-card-size {
    flex-basis: 20%
}

.item-card-size {
    flex-basis: 18%
}

.product-card .rating-wrapper {
    border-top: 1px solid #d9d9d9;
    color: #9a9a9a;
    text-transform: uppercase;
    width: 100%
}

.product-card .wishlist-comparison-wrapper {
    align-items: flex-end;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative
}

.product-card .wishlist-comparison-wrapper .add-to-comparison-btn:hover {
    text-decoration: underline
}

.product-card .product-availability {
    margin-bottom: 5px;
    margin-top: 5px;
    padding: 5px;
    width: 100%
}

.info-container .product-availability {
    font-weight: 500;
    margin-bottom: 5px;
    margin-top: 5px;
    padding: 10px 5px
}

.product-card .add-to-cart-wrapper {
    align-items: flex-end;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    font-size: .5rem;
    justify-content: space-between;
    padding: 10px 15px;
    position: relative
}

.product-info .add-to-cart {
    background: #47ad62;
    border-color: #47ad62;
    border-radius: 2px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: .875rem;
    line-height: 30px;
    min-height: 40px;
    outline: 0;
    text-align: center;
    text-decoration: none;
    vertical-align: middle
}

.product-info .add-to-cart:hover {
    background: #3b9052;
    border-color: #3b9052;
    color: #fff
}

.product-info {
    margin-top: auto;
    text-align: center
}

.product-info a:not(.btn) {
    color: var(--main-font-color);
    line-height: 125%;
    text-decoration: none
}

.category-card {
    background-color: #fff;
    color: #333;
    display: flex;
    flex-basis: 16%;
    flex-direction: column;
    flex-grow: 1;
    font-family: Roboto, sans-serif;
    padding: 1%;
    position: relative;
    text-decoration: none
}

.category-card:hover {
    background-color: #f1f1f1;
    color: #e60000;
    text-decoration: none
}

.category-image, .product-image {
    text-align: center
}

.category-image img, .product-image img {
    max-height: 300px;
    max-width: 100%;
    min-height: 220px
}

.category-info {
    margin-top: auto;
    text-align: center
}

.btn-group-cs:after {
    clear: both;
    content: "";
    display: table
}

.btn-group-cs > .btn {
    border-radius: 0;
    cursor: pointer;
    margin: 3px -2px;
    padding: 8px 15px
}

.btn-group-lg-cs > .btn, .btn-group-lg-cs > .btn button {
    font-size: 1.4em;
    line-height: 1.3333333;
    padding: 10px 16px
}

.btn-group-cs > .btn-group {
    margin: 3px -2px
}

.btn-group-cs > .btn-group button {
    border-radius: 0;
    cursor: pointer;
    margin: 3px -2px;
    padding: 8px 15px
}

.form-control {
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    color: #555;
    display: block;
    font-size: .75rem;
    height: 34px;
    line-height: 1.42857143;
    padding: 1px 0;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    width: 100%
}

label {
    display: inline-block;
    font-weight: 700;
    margin-bottom: 5px;
    max-width: 100%
}

.help-block {
    --tw-text-opacity: 1;
    color: rgb(71 85 105/var(--tw-text-opacity));
    display: block;
    margin-bottom: .5rem;
    margin-top: .25rem
}

.resp-cus-table {
    margin: 1em 0;
    min-width: 200px
}

.resp-cus-table th {
    display: none
}

.resp-cus-table td:before {
    content: attr(data-th) "  ";
    display: inline-block;
    font-weight: 700;
    min-width: 7em
}

.resp-cus-table {
    border-radius: .4em
}

.max300 {
    max-width: 300px
}

.wrap {
    align-items: stretch;
    display: flex;
    flex-direction: column
}

.eshop-wrap, .wrap {
    min-height: 100%;
    position: relative
}

.eshop-wrap {
    height: auto
}

.wrap > .container {
    padding: 70px 15px 20px
}

.footer {
    background-color: #f5f5f5;
    border-top: 1px solid #ddd
}

.not-set {
    color: #c55;
    font-style: italic
}

a.asc:after, a.desc:after {
    display: inline-block;
    font-family: Glyphicons Halflings, serif;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    padding-left: 5px;
    position: relative;
    top: 1px
}

a.asc:after {
    content: ""
}

a.desc:after {
    content: ""
}

.sort-numerical a.asc:after {
    content: ""
}

.sort-numerical a.desc:after {
    content: ""
}

.sort-ordinal a.asc:after {
    content: ""
}

.sort-ordinal a.desc:after {
    content: ""
}

.grid-view th {
    white-space: nowrap
}

.hint-block {
    color: #999;
    display: block;
    margin-top: 5px
}

.error-summary {
    background: #fdf7f7;
    border-left: 3px solid #eed3d7;
    color: #a94442;
    margin: 0 0 15px;
    padding: 10px 20px
}

.custom_border {
    background-color: #ddd;
    margin-bottom: 10px;
    margin-top: 15px;
    padding: 10px
}

input.placeholder12::-webkit-input-placeholder {
    font-size: .5rem
}

input.placeholder12::-moz-placeholder {
    font-size: .5rem
}

input.placeholder12:-ms-input-placeholder {
    font-size: .5rem
}

input.placeholder12:-moz-placeholder {
    font-size: .5rem
}

.well-block {
    background-color: #f5f5f5
}

.well-block, .well-block-light {
    border: 1px solid #d4d4d4;
    border-radius: 4px
}

.well-block-light {
    background-color: #fcfcfc
}

.img-preview:hover {
    border: 2px solid #cbcbcb;
    border-radius: 5px;
    display: block;
    height: auto;
    left: -35px;
    position: absolute;
    top: -25px;
    width: 350px;
    z-index: 999
}

.order-ongoing {
    border-radius: 5px;
    margin-bottom: 10px
}

.order-ongoing .top {
    background: #d9efaa;
    border: 1px solid #b8da8e;
    border-bottom: none !important;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    color: #398000;
    justify-content: space-between;
    padding: 20px;
    text-decoration: none
}

.order-ongoing .bottom {
    background: #f6ffeb;
    border: 1px solid #b8da8e;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border-top: none !important;
    padding: 20px
}

.notifications-wrapper, .product-categories-wrapper {
    align-self: flex-start;
    font-family: Roboto, sans-serif;
    height: 100%;
    max-width: 250px;
    width: 100%
}

.notifications-list, .product-category-list {
    height: 100%;
    margin-right: 10px;
    max-width: 250px;
    text-align: left;
    width: 100%
}

.notifications-list {
    max-height: 1000px;
    overflow: auto
}

.notifications-list .notification {
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    margin-bottom: 10px;
    padding: 5px
}

.notifications-list .notification:hover {
    border: 1px solid #d1d1d1;
    opacity: .85
}

.notifications-list a:hover {
    text-decoration: none
}

.notifications-list a {
    color: inherit
}

.notifications-list .notification span.h4 {
    display: inline-block;
    font-weight: 700;
    margin-bottom: 15px
}

.notifications-list .notification span.p {
    color: #424242;
    display: inline-block;
    margin-bottom: 5px
}

.product-categories-wrapper h4 {
    background-color: #f9f9f9;
    border-bottom: 1px solid hsla(0, 0%, 91%, .81);
    margin-bottom: 0
}

.product-categories-wrapper h4 a {
    color: #7f7f7f;
    display: block;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-top: 10px;
    text-decoration: none
}

.product-categories-wrapper h4 a:hover {
    background-color: #9e9e9e;
    color: #141414
}

.product-category-list ul {
    padding-left: 0
}

.product-category-list ul li {
    list-style-type: none;
    position: relative
}

.product-category-list ul .category-link {
    background-color: #f1f1f1;
    border-bottom: 1px solid #e8e8e8;
    color: #7f7f7f;
    display: block;
    padding: 8px 20px 8px 10px;
    text-decoration: none
}

.product-category-list ul .category-link:hover {
    background-color: #f9f9f9;
    color: #141414
}

.product-category-list ul .category-link-selected {
    color: #e60000
}

.product-category-list ul .category-link-selected:hover {
    background-color: wheat;
    color: #a20000
}

.product-category-list ul .sub-category-link {
    background-color: #f9f9f9;
    border-bottom: 1px solid #e8e8e8;
    color: #7f7f7f;
    display: block;
    padding: 8px 10px 8px 25px;
    text-decoration: none
}

.product-category-list ul .sub-category-link:hover {
    background-color: #9e9e9e;
    color: #141414
}

#img-overlay {
    border: 2px solid #cbcbcb;
    border-radius: 5px;
    display: none;
    height: 450px;
    position: absolute;
    right: -460px;
    top: 36px;
    width: 450px
}

.shopping-cart-input {
    border: 1px solid #dedede;
    border-radius: 5px;
    font-size: .5rem;
    height: 44px;
    line-height: 1.42857143;
    max-width: 40px;
    padding: 6px 0 6px 5px;
    vertical-align: middle
}

#prediction_table .input-group-addon, #product_table .input-group-addon {
    padding: 0 !important
}

.border-bottom-alert-full-window, .border-left-alert-full-window, .border-right-alert-full-window, .border-top-alert-full-window {
    background: #c70800;
    position: fixed
}

.border-left-alert-full-window, .border-right-alert-full-window {
    bottom: 0;
    top: 0;
    width: 15px
}

.help {
    background-color: #ddd;
    border: 1px solid #adadad;
    border-radius: 100%;
    display: inline-block
}

.help:before {
    color: #31708f;
    content: "?";
    font-family: Rubik, sans-serif;
    font-size: .875rem;
    font-weight: 500;
    padding: 1px 6px
}

.fixed-top-btn {
    left: 0;
    position: fixed;
    top: 95px;
    width: 100%;
    z-index: 100
}

.border-bottom-alert-full-window, .border-top-alert-full-window {
    height: 15px;
    left: 0;
    right: 0
}

.border-left-alert-full-window {
    left: 0
}

.border-right-alert-full-window {
    right: 0
}

.border-top-alert-full-window {
    top: 0
}

.border-bottom-alert-full-window {
    bottom: 0;
    z-index: 1000
}

.error-message-continue-anyway {
    position: fixed;
    text-align: center;
    top: 50px;
    width: 100%;
    z-index: 1000
}

.product-color {
    background-color: #2a7b9b
}

.minw90 {
    min-width: 90px
}

.width30 {
    width: 30%
}

.remove_style {
    color: #000;
    text-decoration: none
}

.remove_style_white {
    color: #fff;
    text-decoration: none
}

.product_image_class img {
    height: auto;
    width: 200px
}

.button-noborders {
    background: none;
    border: none;
    color: #337ab7;
    outline: none
}

[data-tooltip] {
    cursor: pointer;
    position: relative
}

[data-tooltip]:before {
    background: #000;
    border-radius: 4px;
    color: #fff;
    content: attr(data-tooltip);
    display: none;
    font-size: .75rem;
    font-weight: 400;
    line-height: 1.4;
    padding: 4px 8px;
    position: absolute;
    text-align: center;
    width: 250px
}

[data-tooltip-position=bottom]:before, [data-tooltip-position=top]:before {
    left: 50%;
    transform: translateX(-50%)
}

[data-tooltip-position=left]:before, [data-tooltip-position=right]:before {
    top: 50%;
    transform: translateY(-50%)
}

[data-tooltip-position=top]:before {
    bottom: 100%;
    margin-bottom: 6px
}

[data-tooltip-position=right]:before {
    left: 100%;
    margin-left: 6px
}

[data-tooltip-position=bottom]:before {
    margin-top: 6px;
    top: 100%
}

[data-tooltip-position=left]:before {
    margin-right: 6px;
    right: 100%
}

form div.required label.control-label:after, label.cl:after, span.cl:after {
    color: red;
    content: " * "
}

label.cl2:after {
    color: red;
    content: " ** "
}

.comp-form {
    align-items: center;
    display: flex;
    padding-bottom: 15px;
    width: 100%
}

.comp-form > label {
    width: 25%
}

.comp-form > span {
    margin-left: 15px;
    padding-left: 5px;
    padding-right: 5px;
    width: 200px
}

.comp-form > span:first-letter {
    text-transform: uppercase
}

.comp-form > div, .comp-form input, .comp-form select, .comp-form textarea {
    width: 30%
}

[data-tooltip]:after {
    border: solid transparent;
    content: "";
    display: none;
    height: 0;
    position: absolute;
    width: 0
}

[data-tooltip-position=bottom]:after, [data-tooltip-position=top]:after {
    left: 50%;
    margin-left: -6px
}

[data-tooltip-position=left]:after, [data-tooltip-position=right]:after {
    margin-top: -6px;
    top: 50%
}

[data-tooltip-position=top]:after {
    border-top-color: #000;
    border-width: 6px 6px 0;
    bottom: 100%
}

[data-tooltip-position=right]:after {
    border-right-color: #000;
    border-width: 6px 6px 6px 0;
    left: 100%
}

[data-tooltip-position=bottom]:after {
    border-bottom-color: #000;
    border-width: 0 6px 6px;
    top: 100%
}

[data-tooltip-position=left]:after {
    border-left-color: #000;
    border-width: 6px 0 6px 6px;
    right: 100%
}

[data-tooltip]:hover:after, [data-tooltip]:hover:before {
    display: block;
    z-index: 50
}

.is_locked {
    background-color: red;
    color: #fff
}

.doc_is_locked {
    background-color: #ff4b41 !important
}

.is_unlocked {
    background-color: #add45c
}

.ttip {
    position: relative
}

.ttip, .ttip:hover {
    color: inherit;
    text-decoration: none
}

.tip {
    background-color: #008033;
    border-color: #008033;
    border-radius: 8px;
    border-right: 1em;
    bottom: -16px;
    color: #000;
    display: block;
    font-size: 1em;
    left: 100%;
    opacity: 0;
    padding: 1em;
    position: absolute;
    visibility: hidden;
    white-space: nowrap;
    z-index: 1
}

.tip, .ttip:hover .tip {
    margin-left: 1rem;
    transition: all .3s
}

.ttip:hover .tip {
    opacity: 1;
    visibility: visible
}

.status_editable .kv-editable-link {
    color: #000
}

.status_editable .kv-editable-link:hover {
    color: #262626
}

.stav_editable .kv-editable-link {
    color: #000
}

.stav_editable .kv-editable-link:hover {
    color: #262626
}

.logistics_editable .kv-editable-link {
    color: #000
}

.logistics_editable .kv-editable-link:hover {
    color: #262626
}

.ttip2 {
    position: relative
}

.ttip2, .ttip2:hover {
    color: inherit;
    text-decoration: none
}

.tip2 {
    background-color: hsla(0, 0%, 69%, .9);
    border-color: #000;
    border-radius: 5px;
    border-right: 1em;
    bottom: -16px;
    color: #000;
    display: block;
    font-size: 1em;
    opacity: 0;
    padding: 1em;
    position: absolute;
    right: 110%;
    visibility: hidden;
    white-space: nowrap;
    z-index: 1
}

.tip2, .ttip2:hover .tip2 {
    margin-left: 1rem;
    transition: all .3s
}

.ttip2:hover .tip2 {
    opacity: 1;
    visibility: visible
}

.tip3 {
    background-color: #000;
    border-color: #000;
    border-radius: 5px;
    border-right: 1em;
    bottom: -340px;
    color: #000;
    display: block;
    font-size: 1em;
    opacity: 0;
    padding: 1em;
    position: absolute;
    right: 9%;
    visibility: hidden;
    white-space: nowrap;
    z-index: 1
}

.tip3, .ttip2:hover .tip3 {
    margin-left: 1rem;
    transition: all .3s
}

.ttip2:hover .tip3 {
    opacity: 1;
    visibility: visible;
    z-index: 1000
}

.btn-toolbar .btn {
    margin-bottom: 5px
}

span.glyphicon-eye-open {
    font-size: 1.2em
}

.redactor-toolbar {
    background: #000
}

.redactor-toolbar li a {
    color: #fff
}

.redactor-toolbar li a:hover {
    background: #d70a16;
    color: #fff
}

.redactor-toolbar li a.redactor-act, .redactor-toolbar li a:active {
    background: #000;
    color: #aaa
}

.redactor-editor {
    background: #f5f5f5
}

#embed-api-auth-container {
    margin-bottom: 15px
}

#view-selector-container {
    padding-bottom: 30px
}

#view-selector-container table {
    float: left
}

.color-block {
    border: 1px solid #eee;
    display: inline-block;
    height: 15px;
    min-width: 8px
}

.custom-input[type=number]:enabled, .custom-input[type=text]:enabled {
    --tw-border-opacity: 1;
    border-color: rgb(59 130 246/var(--tw-border-opacity))
}

.dhl-text {
    background-color: #fc0;
    color: #c00
}

.custom-input-error {
    border-color: red !important;
    box-shadow: inset 0 1px 1px rgba(133, 0, 0, .53), 0 0 8px rgba(133, 0, 0, .53) !important
}

.error {
    --tw-text-opacity: 1;
    color: rgb(153 27 27/var(--tw-text-opacity))
}

.tablePaddingSmall tbody tr th {
    padding: 3px 5px;
    vertical-align: middle
}

.polozka-box {
    border: 1px solid #0097cf;
    display: inline-block;
    min-height: 25px;
    padding: 10px 5px
}

.blok {
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
    display: flex;
    flex-direction: row;
    min-width: 250px
}

.letter-box {
    border-radius: 2px 0 0 2px;
    color: #fff;
    display: block;
    font-size: 45px;
    height: 90px;
    line-height: 90px;
    max-width: 90px;
    text-align: center;
    width: 100%
}

.info-box-content {
    flex: 2
}

.info-box-text {
    color: #000;
    display: block;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase
}

.color-status {
    background-color: #3d3d6b !important
}

.color-stav {
    background-color: #900c3f !important
}

.color-logistics {
    background-color: #add45c !important
}

.color-action {
    background-color: #511849 !important
}

.color-file {
    background-color: #3d3d6b !important
}

.color-stock-movement {
    background-color: #0c9fe9 !important
}

.valingMidd {
    vertical-align: middle !important
}

.input100 {
    min-width: 100px;
    width: 100%
}

.ui-widget-content a {
    --tw-text-opacity: 1;
    color: rgb(59 130 246/var(--tw-text-opacity))
}

.panel-footer .kv-panel-pager {
    visibility: visible
}

.is-locked {
    --tw-bg-opacity: 1;
    --tw-text-opacity: 1;
    background-color: rgb(239 68 68/var(--tw-bg-opacity));
    color: rgb(255 255 255/var(--tw-text-opacity))
}

.is-unlocked {
    --tw-bg-opacity: 1;
    background-color: rgb(16 185 129/var(--tw-bg-opacity))
}

.is-locked-glyph {
    --tw-text-opacity: 1;
    color: rgb(239 68 68/var(--tw-text-opacity))
}

.is-unlocked-glyph {
    --tw-text-opacity: 1;
    color: rgb(16 185 129/var(--tw-text-opacity))
}

.wrap .breadcrumb {
    border-radius: 0;
    left: 0 !important;
    margin-bottom: 0;
    width: 100% !important;
    z-index: 100 !important
}

.bborder {
    border-bottom: 1px solid #a2a2a2;
    margin-bottom: 5px;
    padding-bottom: 5px
}

.container-flex {
    align-content: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start
}

.scan-from-device .container-flex {
    align-content: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

.navigation-flex-custom {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1030
}

.wrapword {
    word-wrap: break-word;
    white-space: -moz-pre-wrap !important;
    white-space: -o-pre-wrap;
    white-space: normal;
    word-break: break-all
}

.wrapwhitespace {
    white-space: pre-line !important
}

.container-flex-new {
    align-content: center;
    align-items: baseline;
    flex-wrap: wrap;
    justify-content: flex-start;
    position: relative
}

.container-flex-new, .order-mobile-search {
    display: flex;
    flex-direction: row
}

.container-flex-new .container-flex-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start
}

.container-flex-new .item-new h4 {
    --tw-text-opacity: 1;
    color: rgb(30 41 59/var(--tw-text-opacity));
    font-size: .75rem;
    font-weight: 700;
    padding: .5rem
}

.container-flex-new .item-div {
    padding-bottom: 2px;
    padding-top: 2px
}

.tab-container-custom {
    background: #fff;
    max-width: 100%;
    min-width: 250px;
    width: 100%
}

.tab-container-custom .tab-section {
    border-top: 1px solid #cfcfcf;
    display: none;
    padding: 20px 0 0
}

.tab-input-custom {
    display: none
}

.tab-label-user {
    --tw-bg-opacity: 1;
    --tw-text-opacity: 1;
    background-color: rgb(226 232 240/var(--tw-bg-opacity));
    border-left-width: 1px;
    border-right-width: 1px;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    border-top-width: 1px;
    color: rgb(51 65 85/var(--tw-text-opacity));
    cursor: pointer;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 0;
    padding: .5rem 1rem
}

@media (min-width: 1024px) {
    .tab-label-user {
        padding-bottom: 1rem;
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 1rem
    }
}

.tab-label-user {
    margin: 0 0 -1px
}

label.tab-label-user:hover {
    --tw-bg-opacity: 1;
    --tw-text-opacity: 1;
    background-color: rgb(203 213 225/var(--tw-bg-opacity));
    color: rgb(30 41 59/var(--tw-text-opacity));
    cursor: pointer
}

input.tab-input-custom:checked + label.tab-label-user {
    --tw-bg-opacity: 1;
    --tw-text-opacity: 1;
    background-color: rgb(100 116 139/var(--tw-bg-opacity));
    border-top: 2px solid #616161;
    border-right: 1px solid #bdbdbd;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #bdbdbd;
    color: rgb(15 23 42/var(--tw-text-opacity));
}


#tab1:checked ~ #content1, #tab2:checked ~ #content2, #tab3:checked ~ #content3, #tab4:checked ~ #content4, #tab5:checked ~ #content5, #tab6:checked ~ #content6, #tab7:checked ~ #content7, #tab8:checked ~ #content8, #tab9:checked ~ #content9, #tab10:checked ~ #content10, #tab11:checked ~ #content11, #tab12:checked ~ #content12, #tab13:checked ~ #content13, #tab14:checked ~ #content14, #tab15:checked ~ #content15, #tab16:checked ~ #content16, #tab17:checked ~ #content17, #tab18:checked ~ #content18, #tab19:checked ~ #content19, #tab20:checked ~ #content20, #tab21:checked ~ #content21 {
    display: block
}

input.input-custom {
    background: none;
    border: none;
    border-bottom: 1px solid #d4d4d4;
    border-radius: 0;
    color: #2a2a2a;
    font-size: 1em;
    padding: .5rem;
    width: 100%
}

input.input-custom[disabled] {
    background: hsla(0, 0%, 91%, .81);
    color: hsla(0, 0%, 47%, .81)
}

input.input-custom:focus {
    border-bottom: 1px solid #ff9800;
    outline: none
}

h2 input.input-custom:focus {
    border-bottom: 4px solid #ff9800;
    outline: none
}

input.input-custom::-webkit-input-placeholder {
    font-size: .875rem;
    font-style: italic
}

input.input-custom::-moz-placeholder {
    font-size: .875rem;
    font-style: italic
}

input.input-custom:-ms-input-placeholder {
    font-size: .875rem;
    font-style: italic
}

input.input-custom:-moz-placeholder {
    font-size: .875rem;
    font-style: italic
}

.container-flex-new .item-new-qr-code {
    align-self: flex-start
}

.container-flex-label-input {
    align-items: baseline;
    display: flex;
    flex-flow: row
}

.container-flex-label-input label {
    min-height: 25px;
    padding: 5px 5px 0
}

.invoice-alert {
    position: absolute;
    right: 44px;
    top: -18%
}

.multi-table-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

.multi-table-container .items-wrapper {
    padding: 5px
}

@media (max-width: 1280px) {
    .category-card {
        flex: 1 21%
    }

    .product-card-size {
        flex-basis: 50%
    }

    .item-card-size {
        flex-basis: 40%
    }

    .category-wrapper .category-card:first-child, .category-wrapper .category-card:nth-child(2), .category-wrapper .category-card:nth-child(3) {
        flex: 2 30%
    }

    .products-widget .widget-product-card {
        margin: 5px
    }

    .multi-table-container {
        flex-direction: column
    }
}

@media (max-width: 1024px) {
    .container-flex-new {
        align-items: flex-start;
        flex-direction: row;
        justify-content: space-between
    }

    .product-categories-wrapper {
        order: 2
    }

    .products-widget .widget-product-card {
        flex-basis: 30%;
        margin: 5px;
        max-width: 300px
    }

    .product-category-list {
        order: 2
    }

    .blok {
        min-width: 250px
    }

    .mt-20 {
        margin-top: 10px
    }

    .wrap .breadcrumb {
        top: 41px !important
    }

    .drop-ul {
        display: none;
        position: static
    }

    .navigation-flex-custom {
        background-color: transparent;
        position: relative;
        top: unset
    }
}

@media (min-width: 768px) {
    .resp-cus-table td:before {
        display: none
    }

    .resp-cus-table td, .resp-cus-table th {
        display: table-cell;
        padding: .25em .3em !important
    }

    .resp-cus-table td:last-child, .resp-cus-table th:last-child {
        padding-right: 3px
    }
}

@media (max-width: 767px) {
    .resp-cus-table thead {
        display: none
    }

    .resp-cus-table td, .resp-cus-table th {
        display: block;
        font-size: 1.2em;
        width: 100% !important
    }

    table.resp-cus-table tr > td {
        padding: .4em .5em
    }

    .resp-cus-table.table-striped > tbody > tr:nth-of-type(odd) {
        background-color: #e6e6e6;
        border-left: 1px solid #e3e3e3;
        border-right: 1px solid #e3e3e3
    }

    .resp-cus-table td:before {
        float: left;
        padding-right: 10px;
        text-align: left
    }

    .resp-cus-table td {
        text-align: right
    }

    .category-card {
        flex: 1 46%
    }

    .item-card-size, .product-card-size {
        flex-basis: 40%
    }

    .category-wrapper .category-card:first-child, .category-wrapper .category-card:nth-child(2), .category-wrapper .category-card:nth-child(3) {
        flex: 1 46%
    }

    .products-widget .widget-product-card {
        flex-basis: 35%;
        margin: 5px;
        max-width: unset
    }

    .image-gallery-wrapper {
        flex: 1;
        flex-wrap: wrap;
        width: 100%
    }

    .image-gallery-wrapper .image-wrapper {
        flex-basis: 30%;
        flex-grow: 1;
        margin: 5px;
        position: relative
    }

    .image-gallery-wrapper .image-wrapper .img {
        background-position: unset;
        background-repeat: unset;
        background-size: unset;
        height: unset;
        width: 100%
    }

    .container-flex-new {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center
    }
}

@media (max-width: 480px) {
    .swipe-arrows {
        display: block;
        min-width: 50px;
        position: fixed;
        text-align: center;
        top: 50%;
        z-index: 1000
    }

    .swipe-arrows i {
        color: #000
    }

    .swipe-arrows.left {
        left: 0;
        padding-left: 10px
    }

    .swipe-arrows.right {
        padding-right: 10px;
        right: 0
    }

    .step {
        font-size: 2em;
        top: 0
    }

    .category-card {
        flex: 1 90%
    }

    .mobile-block > div {
        display: none
    }

    .mobile-block-header {
        align-items: center;
        display: flex;
        flex-direction: row;
        justify-content: space-between
    }

    .mobile-block-header i {
        display: inline-block;
        font-size: 34px
    }

    .kv-table-wrap tr > td:first-child {
        font-size: 18px !important
    }

    .btn-container {
        align-items: unset;
        flex-direction: column
    }

    .btn-container > a {
        margin: 5px 0
    }

    .custom-btn-mobile-control {
        display: block
    }

    .custombtn-wrapper {
        display: none
    }

    .image-gallery-wrapper {
        flex: 1;
        flex-wrap: wrap;
        width: 100%
    }

    .image-gallery-wrapper .image-wrapper {
        flex-basis: 50%;
        flex-grow: 1;
        margin: 5px;
        position: relative
    }

    .image-gallery-wrapper .image-wrapper .img {
        background-position: unset;
        background-repeat: unset;
        background-size: unset;
        height: unset;
        width: 100%
    }

    .item-card-size, .product-card-size {
        flex-basis: 100%
    }

    .products-widget .widget-product-card {
        flex-basis: 100%;
        margin: 5px;
        max-width: unset
    }

    .category-wrapper .category-card:first-child, .category-wrapper .category-card:nth-child(2), .category-wrapper .category-card:nth-child(3) {
        flex: 1 90%
    }

    .btn-group-cs > .btn {
        border-radius: 4px;
        cursor: pointer;
        margin: 3px;
        max-width: 200px;
        padding: 6px 10px;
        width: 47%
    }

    .btn-group-lg-cs > .btn {
        line-height: 1.333333;
        padding: 8px 10px
    }

    .product-categories-wrapper {
        margin: 0 auto;
        order: 2
    }

    .product-category-list {
        order: 2
    }

    .comp-form {
        flex-direction: column
    }

    .comp-form > label {
        width: 100%
    }

    .navigation-flex-custom {
        background-color: transparent;
        position: relative;
        top: unset
    }

    .comp-form div, .comp-form input, .comp-form select, .comp-form textarea {
        width: 100%
    }

    .comp-form > span {
        margin-left: 0;
        margin-top: 5px;
        width: 100%
    }

    .container-flex-new, .order-mobile-search {
        flex-direction: column
    }

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

    .container-flex-new .item-new-qr-code {
        text-align: center;
        width: 100%
    }

    .container-flex-new .container-flex-inner {
        justify-content: center
    }

    .wrap .breadcrumb {
        font-size: .75rem;
        padding-left: 5px;
        top: 0 !important
    }
}

.product-image .pieces-container {
    background: hsla(0, 0%, 9%, .8);
    color: #fff
}

.product-image .pieces-container .price-section {
    padding: 5px
}

.product-image .price-el-discount {
    background: #181818
}

.product-image img {
    height: auto;
    min-height: unset;
    width: 50px
}

.product-image .document-container .free-shipping-section {
    padding: 5px
}

.product-name {
    font-size: 1rem;
    margin-bottom: 5px;
    margin-top: 5px;
    padding-left: 5px;
    padding-right: 5px;
    text-align: left
}

@media (max-width: 480px) {
    .product-name {
        font-size: .5rem
    }
}

.fixed-header-btn-left {
    left: 0
}

.fixed-header-btn-left, .fixed-header-btn-right {
    padding-left: 5px;
    padding-right: 5px;
    position: fixed;
    top: 95px;
    z-index: 100
}

.fixed-header-btn-right {
    right: 0
}

.msg-holder {
    left: 50%;
    position: fixed;
    z-index: 200
}

@media (max-width: 480px) {
    .msg-holder {
        left: unset;
        position: sticky;
        top: 40px;
        width: 100%
    }

    .msg-holder .msg-save-view {
        padding: 5px
    }
}

.receipt-header-title {
    left: 150px;
    margin: 0;
    padding: 5px;
    position: fixed;
    top: 90px;
    z-index: 100
}

@media (max-width: 480px) {
    .receipt-header-title {
        left: unset;
        position: sticky;
        top: 10px;
        width: 100%
    }

    .receipt-header-title span:last-of-type {
        font-size: .5em
    }
}

.price-tag {
    align-items: center;
    background: var(--price-tag-background);
    color: #fff;
    display: flex;
    height: var(--price-tag-height);
    justify-content: center;
    margin-left: .85rem;
    padding: .25rem .5rem;
    position: relative
}

.price-tag:before {
    border-bottom: calc(var(--price-tag-height) / 2) solid transparent;
    border-left: 0 solid transparent;
    border-right: calc(var(--price-tag-height) / 2) solid var(--price-tag-background);
    border-top: calc(var(--price-tag-height) / 2) solid transparent;
    content: "";
    left: 0;
    position: absolute;
    top: 1px;
    transform: translate(-100%)
}

.breadcrumb-setting > span + span:before {
    --tw-text-opacity: 1;
    color: rgb(148 163 184/var(--tw-text-opacity));
    content: "/ ";
    padding: 0 1px
}

.external-form-description {
    margin-top: 2rem
}

.external-form-description div, .external-form-description p {
    font-size: 1rem
}

.external-form-description h1 {
    font-size: 1.25rem
}

.html-from-redactor menu, .html-from-redactor ol, .html-from-redactor ul {
    list-style: unset;
    margin: inherit;
    padding: inherit
}

.html-from-redactor ol, .html-from-redactor ul {
    margin-bottom: 10px;
    margin-top: 0
}

.html-from-redactor li {
    padding-bottom: .25rem
}

.hover\:border-slate-600:hover {
    --tw-border-opacity: 1;
    border-color: rgb(71 85 105/var(--tw-border-opacity))
}

.hover\:bg-blue-600:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(37 99 235/var(--tw-bg-opacity))
}

.hover\:bg-emerald-700:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(4 120 87/var(--tw-bg-opacity))
}

.hover\:bg-red-700:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(185 28 28/var(--tw-bg-opacity))
}

.hover\:bg-blue-700:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(29 78 216/var(--tw-bg-opacity))
}

.hover\:bg-red-900:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(127 29 29/var(--tw-bg-opacity))
}

.hover\:bg-green-600:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(22 163 74/var(--tw-bg-opacity))
}

.hover\:bg-slate-400:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(148 163 184/var(--tw-bg-opacity))
}

.hover\:bg-orange-700:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(194 65 12/var(--tw-bg-opacity))
}

.hover\:bg-transparent:hover {
    background-color: transparent
}

.hover\:bg-purple-700:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(126 34 206/var(--tw-bg-opacity))
}

.hover\:bg-yellow-400:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(250 204 21/var(--tw-bg-opacity))
}

.hover\:bg-slate-800:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(30 41 59/var(--tw-bg-opacity))
}

.hover\:bg-emerald-500:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(16 185 129/var(--tw-bg-opacity))
}

.hover\:text-white:hover {
    --tw-text-opacity: 1;
    color: rgb(255 255 255/var(--tw-text-opacity))
}

.hover\:text-blue-800:hover {
    --tw-text-opacity: 1;
    color: rgb(30 64 175/var(--tw-text-opacity))
}

.hover\:text-black:hover {
    --tw-text-opacity: 1;
    color: rgb(0 0 0/var(--tw-text-opacity))
}

.hover\:text-slate-600:hover {
    --tw-text-opacity: 1;
    color: rgb(71 85 105/var(--tw-text-opacity))
}

.hover\:text-slate-900:hover {
    --tw-text-opacity: 1;
    color: rgb(15 23 42/var(--tw-text-opacity))
}

.hover\:text-red-700:hover {
    --tw-text-opacity: 1;
    color: rgb(185 28 28/var(--tw-text-opacity))
}

.hover\:no-underline:hover {
    text-decoration-line: none
}

.focus\:border-slate-500:focus {
    --tw-border-opacity: 1;
    border-color: rgb(100 116 139/var(--tw-border-opacity))
}

.focus\:border-purple-500:focus {
    --tw-border-opacity: 1;
    border-color: rgb(168 85 247/var(--tw-border-opacity))
}

.focus\:bg-white:focus {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255/var(--tw-bg-opacity))
}

.focus\:text-white:focus {
    --tw-text-opacity: 1;
    color: rgb(255 255 255/var(--tw-text-opacity))
}

.focus\:text-red-400:focus {
    --tw-text-opacity: 1;
    color: rgb(248 113 113/var(--tw-text-opacity))
}

.focus\:no-underline:focus {
    text-decoration-line: none
}

.focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px
}

.active\:text-white:active {
    --tw-text-opacity: 1;
    color: rgb(255 255 255/var(--tw-text-opacity))
}

@media (min-width: 640px) {
    .sm\:ml-auto {
        margin-left: auto
    }

    .sm\:inline-block {
        display: inline-block
    }

    .sm\:w-auto {
        width: auto
    }

    .sm\:max-w-xs {
        max-width: 20rem
    }

    .sm\:flex-row {
        flex-direction: row
    }

    .sm\:space-y-0 > :not([hidden]) ~ :not([hidden]) {
        --tw-space-y-reverse: 0;
        margin-bottom: calc(0px * var(--tw-space-y-reverse));
        margin-top: calc(0px * (1 - var(--tw-space-y-reverse)))
    }
}

@media (min-width: 768px) {
    .md\:pointer-events-auto {
        pointer-events: auto
    }

    .md\:relative {
        position: relative
    }

    .md\:order-1 {
        order: 1
    }

    .md\:order-2 {
        order: 2
    }

    .md\:col-span-4 {
        grid-column: span 4/span 4
    }

    .md\:col-span-3 {
        grid-column: span 3/span 3
    }

    .md\:mx-2 {
        margin-left: .5rem;
        margin-right: .5rem
    }

    .md\:mx-6 {
        margin-left: 1.5rem;
        margin-right: 1.5rem
    }

    .md\:mt-0 {
        margin-top: 0
    }

    .md\:mt-12 {
        margin-top: 3rem
    }

    .md\:mb-0 {
        margin-bottom: 0
    }

    .md\:block {
        display: block
    }

    .md\:hidden {
        display: none
    }

    .md\:h-16 {
        height: 4rem
    }

    .md\:w-auto {
        width: auto
    }

    .md\:w-1\/2 {
        width: 50%
    }

    .md\:w-1\/4 {
        width: 25%
    }

    .md\:w-64 {
        width: 16rem
    }

    .md\:w-16 {
        width: 4rem
    }

    .md\:max-w-\[300px\] {
        max-width: 300px
    }

    .md\:max-w-none {
        max-width: none
    }

    .md\:grid-cols-4 {
        grid-template-columns:repeat(4, minmax(0, 1fr))
    }

    .md\:grid-cols-2 {
        grid-template-columns:repeat(2, minmax(0, 1fr))
    }

    .md\:grid-cols-8 {
        grid-template-columns:repeat(8, minmax(0, 1fr))
    }

    .md\:grid-cols-6 {
        grid-template-columns:repeat(6, minmax(0, 1fr))
    }

    .md\:flex-row {
        flex-direction: row
    }

    .md\:flex-col {
        flex-direction: column
    }

    .md\:items-start {
        align-items: flex-start
    }

    .md\:items-end {
        align-items: flex-end
    }

    .md\:items-center {
        align-items: center
    }

    .md\:justify-start {
        justify-content: flex-start
    }

    .md\:justify-end {
        justify-content: flex-end
    }

    .md\:justify-between {
        justify-content: space-between
    }

    .md\:gap-2 {
        gap: .5rem
    }

    .md\:space-x-2 > :not([hidden]) ~ :not([hidden]) {
        --tw-space-x-reverse: 0;
        margin-left: calc(.5rem * (1 - var(--tw-space-x-reverse)));
        margin-right: calc(.5rem * var(--tw-space-x-reverse))
    }

    .md\:divide-y-0 > :not([hidden]) ~ :not([hidden]) {
        --tw-divide-y-reverse: 0;
        border-bottom-width: calc(0px * var(--tw-divide-y-reverse));
        border-top-width: calc(0px * (1 - var(--tw-divide-y-reverse)))
    }

    .md\:divide-x > :not([hidden]) ~ :not([hidden]) {
        --tw-divide-x-reverse: 0;
        border-left-width: calc(1px * (1 - var(--tw-divide-x-reverse)));
        border-right-width: calc(1px * var(--tw-divide-x-reverse))
    }

    .md\:p-4 {
        padding: 1rem
    }

    .md\:px-4 {
        padding-left: 1rem;
        padding-right: 1rem
    }

    .md\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem
    }

    .md\:py-0 {
        padding-bottom: 0;
        padding-top: 0
    }

    .md\:px-2 {
        padding-left: .5rem;
        padding-right: .5rem
    }

    .md\:py-4 {
        padding-bottom: 1rem;
        padding-top: 1rem
    }

    .md\:pb-0 {
        padding-bottom: 0
    }

    .md\:text-xl {
        font-size: 1.25rem
    }

    .md\:text-2xl {
        font-size: 1.5rem
    }

    .md\:text-base {
        font-size: 1rem
    }

    .md\:opacity-100 {
        opacity: 1
    }

    .md\:\[display\:grid\] {
        display: grid
    }

    .md\:\[max-width\:120px\] {
        max-width: 120px
    }

    .md\:\[min-width\:250px\] {
        min-width: 250px
    }
}

@media (min-width: 1024px) {
    .lg\:top-24 {
        top: 6rem
    }

    .lg\:m-2 {
        margin: .5rem
    }

    .lg\:mx-2 {
        margin-left: .5rem;
        margin-right: .5rem
    }

    .lg\:mr-4 {
        margin-right: 1rem
    }

    .lg\:mb-0 {
        margin-bottom: 0
    }

    .lg\:mt-4 {
        margin-top: 1rem
    }

    .lg\:mt-6 {
        margin-top: 1.5rem
    }

    .lg\:block {
        display: block
    }

    .lg\:inline-block {
        display: inline-block
    }

    .lg\:flex {
        display: flex
    }

    .lg\:hidden {
        display: none
    }

    .lg\:h-auto {
        height: auto
    }

    .lg\:w-full {
        width: 100%
    }

    .lg\:w-auto {
        width: auto
    }

    .lg\:w-1\/2 {
        width: 50%
    }

    .lg\:w-10\/12 {
        width: 83.333333%
    }

    .lg\:w-2\/12 {
        width: 16.666667%
    }

    .lg\:grid-cols-12 {
        grid-template-columns:repeat(12, minmax(0, 1fr))
    }

    .lg\:flex-row {
        flex-direction: row
    }

    .lg\:flex-col {
        flex-direction: column
    }

    .lg\:items-stretch {
        align-items: stretch
    }

    .lg\:p-2 {
        padding: .5rem
    }

    .lg\:p-4 {
        padding: 1rem
    }

    .lg\:px-4 {
        padding-left: 1rem;
        padding-right: 1rem
    }

    .lg\:pt-12 {
        padding-top: 3rem
    }

    .lg\:pt-10 {
        padding-top: 2.5rem
    }

    .lg\:pt-16 {
        padding-top: 4rem
    }

    .lg\:pt-8 {
        padding-top: 2rem
    }

    .lg\:pb-4 {
        padding-bottom: 1rem
    }

    .lg\:text-left {
        text-align: left
    }

    .lg\:text-base {
        font-size: 1rem
    }

    .lg\:text-sm {
        font-size: .875rem
    }

    .lg\:text-xl {
        font-size: 1.25rem
    }

    .lg\:overflow-unset {
        overflow: unset
    }

    .lg\:hover\:bg-emerald-600:hover {
        --tw-bg-opacity: 1;
        background-color: rgb(5 150 105/var(--tw-bg-opacity))
    }
}

/* Uprava vzhladu standartneho Autocomplete Widgetu */
.ui-autocomplete-loading {
    background: url('/images/ui-anim_basic_16x16.gif') no-repeat right center;
}
.ui-autocomplete {
    z-index: 5000  !important /* Vyšší než modálne okno */
}
.ui-autocomplete .ui-menu-item-wrapper {
    display: flex;
    align-items: center;
    padding: 1px;
}
.ui-autocomplete .ui-menu-item-wrapper span {
    font-size: 1.2em;
}
.ui-autocomplete img {
    margin: 0 5px 0 0;
    width: 40px;
    height: 40px;
}
