:root {
    --cs-primary-text-color: #222;
    --cs-secondary-text-color: #555;
    --cs-background-color: #fff;
    --cs-border-color: #ddd;
}

@keyframes appear-then-fade {

    0%,
    100% {
        opacity: 0;
    }

    5%,
    60% {
        opacity: 1;
    }
}

/* General */
.cs-text--small {
    font-size: 0.85em;
}

.cs-text--subdued {
    color: var(--cs-secondary-text-color);
}

.cs-component {
    font-size: 16px;
    padding: 30px 0;
    background: var(--cs-background-color);
}

.cs-empty {
    text-align: center;
    margin: 100px 0;
}

.cs-link {
    color: var(--cs-primary-text-color);
    text-decoration: underline;
}

.cs-link > * {
    margin: 0;
}

.cs-link:hover {
    text-decoration: none;
}

.cs-h3 {
    font-size: 1em;
    margin: 0;
}

.cs-table {
    width: 100%;
    border-collapse: collapse;
}

.cs-table-wrapper {
    overflow-x: auto;
}

.cs-table th {
    text-align: center;
    border-bottom: 1px solid var(--cs-border-color);
    padding: 15px;
    white-space: nowrap;
}

.cs-table th:first-child {
    padding-left: 0;
    text-align: left;
}

.cs-table th:last-child {
    padding-right: 0;
    text-align: right;
}

.cs-table td {
    border-bottom: 1px solid var(--cs-border-color);
    padding: 20px 15px;
    text-align: center;
}

.cs-table td:first-child {
    padding-left: 0;
    text-align: left;
}

.cs-table td:first-child h3 {
    text-align: left;
}

.cs-table td:last-child {
    padding-right: 0;
    text-align: right;
}

.cs-table tr:last-child td {
    border-bottom: 0;
}

.cs-table tfoot {
    position: sticky;
}

.cs-table tfoot td {
    border-top: 1px solid var(--cs-border-color);
}

.cs-table tfoot td:last-child {
    text-align: right;
}

.cs-table--compact th {
    padding: 5px;
    font-size: 0.85em;
}

.cs-table--compact td {
    padding: 10px 5px;
}

.cs-table--compact th,
.cs-table--compact td {
    line-height: 1;
}

.cs-table--striped tbody tr:nth-child(odd) {
    background: #f5f5f5;
}

.cs-table--striped th:first-child,
.cs-table--striped td:first-child {
    padding-left: 5px;
}

.cs-table--striped th:last-child,
.cs-table--striped td:last-child {
    padding-right: 5px;
}

.cs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cs-list--border {
    border: 1px solid var(--cs-border-color);
    border-radius: 6px;
    overflow: hidden;
}

.cs-list--scroll {
    overflow-y: auto;
}

.cs-list__item {
    border: 1px solid var(--cs-border-color);
    border-radius: 5px;
    padding: 6px 10px;
    margin-bottom: 0.75rem;

    &:last-child {
        margin-bottom: 0;
    }
}

.cs-loading-item {
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-move-button {
    width: 100%;
    background: none;
    border: 0;
    padding: 10px;
    cursor: pointer;
    text-align: left;
}

.cs-move-button:hover {
    background: #f5f5f5;
}

.cs-move-button:disabled:hover {
    background: none;
}

.cs-sort {
    flex-basis: 100px;
}

.cs-toggle-icon {
    width: 16px;
    height: 16px;
}

.cs-toggle-icon--checked {
    display: none;
}

.cs-toggle {
    cursor: pointer;
    display: flex;
    width: 47px;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    line-height: 1.15;
    align-items: center;
    transition: border 0.2s;
    background-color: #fff;
    border: 1px solid var(--cs-border-color);
    color: var(--cs-secondary-text-color);

    & input {
        display: none;
    }

    & input:checked ~ .cs-toggle-icon {
        display: none;
    }

    & input:checked ~ .cs-toggle-icon--checked {
        display: block;
    }
}

/* Forms */

.cs-form {
    width: 100%;
}

.cs-field-group {
    margin-bottom: 15px;
}

.cs-field-group:last-child {
    margin-bottom: 0;
}

.cs-label {
    font-size: 0.88em;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.cs-label--checkbox {
    font-weight: normal;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.cs-label--checkbox input {
    margin-right: 1em;
}

.cs-input,
input.cs-input,
.cs-select {
    width: 100%;
    padding: 6px 8px;
    border-radius: 5px;
    border: 1px solid var(--cs-border-color);
    margin: 0;
}

.cs-select {
    appearance: none;
    background: url("/api/assets/chevron-down-solid-5e081275.svg") no-repeat center right 7px;
    background-size: 12px;
    padding-right: 30px;

    &:focus,
    &:focus-visible {
        outline: 0;
        box-shadow: none;
    }
}

.cs-input--full-width {
    width: 100%;
}

/* Utility */
.cs-strike {
    text-decoration: line-through;
}

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

.cs-font-bold {
    font-weight: bold;
}

.cs-text-subdued {
    color: var(--cs-secondary-text-color);
}

.cs-nowrap {
    white-space: nowrap;
}

.cs-no-border {
    border: 0 !important;
}

/* Components */

.cs-header {
    margin: 0 0 30px 0;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--cs-border-color);
}

.cs-header .cs-title {
    padding: 5px;
    margin: 0;
}

.cs-header .cs-title h1 {
    font-size: 1.5em;
    margin: 0;
    cursor: pointer;
}

.cs-header .cs-header-right {
    display: flex;
}

.cs-toolbar {
    overflow: hidden;
}

.cs-back-button {
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.cs-back-button svg {
    width: 14px;
    height: auto;
}

.cs-back-button,
.cs-back-button:visited {
    color: var(--cs-primary-text-color);
}

.cs-flash {
    position: fixed;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 1rem;
    max-width: 100%;
    width: max-content;
    padding: 0 1rem;
    z-index: 999;
}

.cs-flash__message {
    padding: 1rem 1.5rem;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    background-color: #222;
    animation: appear-then-fade 4s both;
}

.cs-flash__message.error {
    background-color: #e74c3c;
}

.cs-dialog {
    padding: 15px;
    border-radius: 5px;
    background: #f5f5f5;
    color: #444;
    border: 1px solid #ddd;
    line-height: 1;
}

.cs-dialog--warning {
    background: #ededce;
    color: #70680d;
    border-color: #c9c937;
}

.cs-loading {
    display: inline-flex;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
}

.cs-loading svg {
    width: 100%;
    height: auto;
}

.cs-show-loading[busy] {
    opacity: 0.5;
}

.cs-button {
    cursor: pointer;
    display: inline-flex;
    padding: 10px 12px;
    background-color: #222;
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    line-height: 1.15;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    transition: border 0.2s,
    background-color 0.2s;
}

.cs-button--secondary {
    background-color: #fff;
    border: 1px solid var(--cs-border-color);
    color: var(--cs-secondary-text-color);
}

.cs-button--tertiary {
    background-color: transparent;
    color: var(--cs-secondary-text-color);
}

.cs-button--destructive {
    background-color: transparent;
    color: #e74c3c;
}

.cs-button--dropdown svg {
    width: 12px;
    height: auto;
    margin-left: 10px;
    max-width: none;
}

.cs-button--icon {
    color: var(--cs-secondary-text-color);
    background-color: transparent;
    border: 1px solid var(--cs-border-color);
}

.cs-button--icon span {
    margin-left: 8px;
}

.cs-button--icon svg {
    line-height: 1;
    width: 16px;
    max-height: 16px;
    height: auto;
    fill: var(--cs-secondary-text-color);
}

.cs-button--icon svg.cs-default {
    fill: #faee3f;
    stroke: #d3c93a;
    stroke-width: 1px;
}

.cs-button--no-label span {
    display: none;
}

.cs-button:hover {
    background-color: #444;
}

.cs-button--icon:hover,
.cs-button--icon:focus,
.cs-button--secondary:hover,
.cs-button--secondary:focus,
.cs-button--destructive:hover,
.cs-button--destructive:focus,
.cs-toggle:hover {
    border-color: #aaa;
    background-color: #fff;
}

.cs-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.cs-button--add {
    background: #fff;
    color: var(--cs-primary-text-color);
    text-align: left;
    border-bottom: 1px solid var(--cs-border-color);
    border-radius: 0;
    font-weight: normal;
    font-size: 1em;
}

.cs-button--form {
    margin: 0;
}

.cs-icon-button {
    border: 0;
    background: transparent;
    height: 16px;
    width: 16px;
    padding: 0;
    margin: 0;
    color: var(--cs-secondary-text-color);
    cursor: pointer;
}

.cs-icon-button:hover {
    color: var(--cs-primary-text-color);
}

.cs-icon-button svg {
    width: 16px;
    height: 16px;
}

.cs-icon {
    width: 16px;
    height: 16px;
}

.cs-search {
    padding: 15px;
    background: #f5f5f5;
    border-radius: 5px;
    margin-bottom: 15px;
}

.cs-id {
    color: var(--cs-secondary-text-color);
    font-size: 0.8em;
}

.cs-badge {
    font-size: 0.7em;
    padding: 0.2em 1em;
    border-radius: 20px;
    background-color: var(--cs-secondary-text-color);
    color: var(--cs-primary-text-color);
}

.cs-badge--info {
    background-color: var(--cs-border-color);
}

.cs-thumbnail {
    width: 144px;
    border: 1px solid var(--cs-border-color);
    border-radius: 6px;
    display: block !important;
    overflow: hidden;
}

.cs-thumbnail--small {
    width: 80px;
    height: 80px;
    background-position: center center;
    background-size: cover;
}

.cs-thumbnail--xsmall {
    width: 60px;
    height: 60px;
    background-position: center center;
    background-size: cover;
}

.cs-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.cs-thumbnail__image--restrict {
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center center;
}

.cs-thumbnail .cs-actions {
    padding: 5px;
}

.cs-actions > * {
    margin-left: 1rem;
}

.cs-actions > *:first-child {
    margin-left: 0;
}

.cs-dropdown__menu {
    border: 1px solid #eee;
    position: absolute;
    top: 0;
    left: -9999px;
    width: max-content;
    min-width: 170px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: scale(0.8);
    transform-origin: top right;
    transition: transform 0.2s,
    opacity 0.2s;
    overflow: hidden;
    z-index: 999;
}

.cs-dropdown__menu-group {
    border-bottom: 1px solid #eee;
    padding: 5px;
}

.cs-dropdown__menu-group:last-child {
    border-bottom: 0;
}

.cs-dropdown__menu.show {
    opacity: 1;
    left: 0;
}

.cs-dropdown__menu button {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    line-height: 1;
    color: var(--cs-secondary-text-color);
    border-radius: 6px;
    text-decoration: none;
    border: 0;
    background: #fff;
    width: 100%;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 3px;

    &:last-child {
        margin-bottom: 0;
    }
}

.cs-dropdown__menu button svg {
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

.cs-dropdown__menu button:hover,
.cs-dropdown__menu .cs-dropdown__menu--selected {
    background: #f5f5f5;
}

.cs-cart-items__item {
    display: flex;
    flex-flow: row;
    border-bottom: 1px solid var(--cs-border-color);
    padding: 28px 0;
}

.cs-cart-items__item:last-child {
    border-bottom: 0;
}

.cs-cart-items__component {
    margin-top: 0px;
}

.cs-cart-items__thumbnail {
    margin-right: 15px;
}

.cs-cart-items__product-details {
    display: flex;
    flex-basis: 100%;
    justify-content: space-between;
}

.cs-cart-items__product-details h3 {
    margin: 0;
    font-size: 18px;
}

.cs-cart-items__product-details a {
    color: inherit;
}

.cs-cart-items__product-details a:hover {
    text-decoration: none;
}

.cs-cart-items__vendor,
.cs-cart-items__sku,
.cs-cart-items__tags {
    display: block;
    font-size: 12px;
    margin-bottom: 12px;
    line-height: 1;
}

.cs-cart-items__sku span:after {
    content: ": ";
}

.cs-cart-items__tags {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cs-cart-items__tags li {
    display: inline-block;
    margin-right: 5px;
    font-size: 12px;
    background: #f5f5f5;
    padding: 5px 10px;
    border-radius: 5px;
}

.cs-cart-items__price {
    margin-bottom: 0.5em;
}

.cs-cart-items__compare-at-price {
    color: #e74c3c;
    text-decoration: line-through;
}

.cs-cart-items__original-price,
.cs-cart-items__compare-at-price {
    font-weight: bold;
    font-size: 16px;
}

.cs-cart-items__bundle {
    border: 1px solid var(--cs-border-color);
    border-radius: 6px;
    margin: 0 0 15px 0;
    line-height: 1;
    max-width: 400px;
    width: 100%;
}

.cs-cart-items__bundle summary {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    cursor: pointer;

    & svg {
        width: auto;
        height: 12px;
        margin-right: 10px;
        transition: transform 0.2s;
    }
}

.cs-cart-items__bundle[open] summary {
    border-bottom: 1px solid var(--cs-border-color);

    & svg {
        transform: rotate(90deg);
    }
}

.cs-cart-items__bundle dl {
    margin: 0;
    padding: 10px;
}

.cs-cart-items__bundle dt {
    margin: 15px 0 0;
    line-height: 1;
}

.cs-cart-items__bundle dt:first-child {
    margin-top: 0;
}

.cs-cart-items__bundle dd {
    margin: 5px 0 0;
    font-size: 12px;
}

.cs-cart-items__selling-plan {
    display: flex;
    align-items: center;
    font-size: 0.8em;
    margin-bottom: 1em;

    & svg {
        width: 12px;
        height: 12px;
        margin-right: 0.5em;
    }
}

.cs-cart-items__buy-buttons {
    text-align: right;
}

.cs-cart-items__quantity {
    display: flex;
    align-items: center;
}

.cs-cart-items__quantity > input {
    width: 50px;
    text-align: center;
    margin-left: 10px;
}

.cs-cart-items__availability {
    font-size: 12px;
    color: #fff;
    background-color: #999;
    border-radius: 10px;
    display: inline-block;
    padding: 5px 10px;
    margin-bottom: 15px;
    line-height: 1;
}

.cs-cart-items__availability--warning {
    background-color: #f5a623;
}

.cs-cart-items__availability--critical {
    background-color: #e74c3c;
}

.cs-cart-items__total {
    font-size: 24px;
    line-height: 1;
}

.cs-cart-items__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 15px;
}

.cs-cart-items__actions > button {
    margin-left: 10px;
}

.cs-cart-items__footer {
    position: sticky;
    bottom: 0;
    background: var(--cs-background-color);
    padding: 15px 0;
    border-top: 1px solid var(--cs-border-color);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.cs-cart-items__footer-totals {
    margin-left: auto;
}

.cs-properties {
    padding: 0;
    margin: 0 0 15px;
    max-width: 500px;
}

.cs-properties > li {
    list-style: none;
    margin-bottom: 8px;
    word-break: break-all;
    line-height: 1;
    font-size: 14px;
}

.cs-properties > li:last-child {
    margin-bottom: 0;
}

.cs-properties > li > span:after {
    content: ": ";
}

.cs-input {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid var(--cs-border-color);
    font-size: 14px;
}

.cs-input__number::-webkit-outer-spin-button,
.cs-input__number::-webkit-inner-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: auto;
}

.cs-input[readonly] {
    background: #f5f5f5;
}

input.cs-input--search {
    border: 1px solid var(--cs-border-color);
    border-radius: 6px;
    outline: 0;
    box-shadow: none;
}

.cs-input__textarea {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    min-height: 150px;
}

.cs-field-with-button {
    position: relative;
    background: #f5f5f5;
}

.cs-field-with-button.cs-input {
    padding: 8px;
    display: flex;
    align-items: center;
}

.cs-field-with-button input {
    border: 0;
    background: transparent;
    appearance: none;
    width: 100%;
    margin: 0;
    padding: 0;
}

.cs-field-button {
    font-size: 0.8em;
    font-weight: 400;
    margin-left: 10px;
    color: #777;
}

.cs-stepper {
    display: inline-flex;
    flex-flow: row;
    align-items: center;
    width: 120px;
    border: 1px solid var(--cs-border-color);
    border-radius: 5px;
    background: #fff;
    overflow: hidden;
    margin-left: 10px;
}

.cs-stepper__button {
    width: 30px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    color: var(--cs-primary-text-color);
    cursor: pointer;
    background: transparent;
    border: 0;
}

.cs-stepper__button:hover {
    color: #777;
}

.cs-stepper input {
    flex-basis: 100%;
    width: 100%;
    appearance: none;
    border: 0;
    padding: 5px;
    text-align: center;
    color: #444;
    background: #fff;
}

.cs-paginator a {
    background: #f1f1f1;
    padding: 0.5em;
    width: auto;
    height: auto;
    border-radius: 5px;
}

.cs-paginator a:hover {
    background: #ddd;
}

@media (max-width: 768px) {
    .cs-cart-items__product-details {
        flex-flow: column;
    }

    .cs-cart-items__actions button {
        flex-basis: 50%;
        justify-content: center;
        padding: 15px;
    }

    .cs-cart-items__actions button:first-child {
        margin-left: 0;
    }
}

.cs-total {
    font-size: 18px;
}

.cs-total-discounts {
    font-size: 12px;
    display: flex;
}

.cs-total-discount {
    margin-left: 15px;
}

@media (max-width: 1100px) {
    .cs-cart-items__thumbnail {
        margin-right: 0;
    }

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

.cs-notification {
    padding: 1em;
    margin-bottom: 30px;
    border-radius: 10px;
    border: 0;
    position: relative;
    background-color: #eff6ff;
    color: #1447e6;
    display: flex;
    align-items: center;

    & .cs-notification__title {
        margin: 0 0 0.5em;
        font-size: 16px;
        font-weight: 400;
        color: inherit;
    }

    & .cs-notification__message {
        margin: 0;
        font-size: 14px;
    }

    & .cs-notification__actions {
        margin-left: auto;
    }

    & .cs-notification__dismiss {
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: 0;
        border-radius: 5px;
        width: 24px;
        height: 24px;
        color: inherit;
        cursor: pointer;

        & svg {
            width: 18px;
            height: 18px;
            display: block;
        }

        &:hover {
            background: rgba(20, 71, 230, 0.1);
        }
    }
}

.cs-shipping-item {
    display: flex;
    justify-content: space-between;
    border: 1px solid var(--cs-border-color);
    border-radius: 5px;
    padding: 6px 10px;
    margin-bottom: 0.75rem;

    &:last-child {
        margin-bottom: 0;
    }
}

.cs-modal {
    position: fixed;
    top: 0;
    left: -9999px;
    width: 100%;
    height: 100%;
    z-index: 999;
    overflow-y: auto;
    font-size: 16px;
}

.cs-modal.show {
    left: 0;
}

.cs-modal .cs-modal__container {
    padding: 30px;
    width: 100%;
    max-width: 500px;
}

.cs-modal .cs-modal__overlay {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.cs-modal.show .cs-modal__overlay {
    opacity: 1;
}

.cs-modal__content {
    position: relative;
    background: #fff;
    border-radius: 5px;
    margin: 0 auto;
    width: 100%;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.cs-modal.show .cs-modal__content {
    opacity: 1;
    transform: translateY(0);
}

.cs-modal__header {
    padding: 15px;
}

.cs-modal__title {
    margin: 0;
    font-size: 1.5em;
}

.cs-modal__section {
    padding: 15px;
    padding-top: 0;
    border-bottom: 1px solid var(--cs-border-color);

    &.cs-modal__section--no-border {
        border: 0;
    }
}

.cs-modal__section:last-child {
    border-bottom: 0;
}

.cs-modal__section-title {
    font-size: 1.15em;
    margin: 0 0 1.2rem;
    text-align: left;
}

.cs-modal__actions {
    padding: 15px;
}

.cs-modal__actions {
    border-top: 1px solid var(--cs-border-color);
}

.cs-modal__close {
    border: 0;
    color: #444;
}

/* Widget */

.cs-widget__header {
    font-size: 18px;
}

/* Layout */

.cs-container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 1100px) {
    .cs-container {
        padding: 0 15px;
    }
}

.cs-gap-2 {
    gap: 10px;
}

.cs-block {
    display: block;
}

.cs-flex {
    display: flex;
}

.cs-inline-flex {
    display: inline-flex;
}

.cs-flex-column {
    flex-flow: column;
}

@media (max-width: 1100px) {
    .cs-flex-column\:sm {
        flex-flow: column;
    }
}

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

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

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

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

@media (max-width: 768px) {
    .cs-items-start\:xs {
        align-items: flex-start;
    }

    .cs-justify-start\:sm {
        justify-content: flex-start;
    }

    .cs-justify-end\:xs {
        justify-content: flex-end;
    }
}

@media (min-width: 769px) {
    .cs-items-center\:sm {
        align-items: center;
    }

    .cs-items-left\:sm {
        align-items: flex-start;
    }
}

.cs-mt-1 {
    margin-top: 0.4rem;
}

.cs-ml-2 {
    margin-left: 0.8rem;
}

.cs-ml-3 {
    margin-left: 1.2rem;
}

.cs-mr-3 {
    margin-right: 1.2rem;
}

.cs-mt-3 {
    margin-top: 1.2rem;
}

.cs-mb-3 {
    margin-bottom: 1.2rem;
}

.cs-mb-6 {
    margin-bottom: 2.4rem;
}

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

.cs-my-6 {
    margin-top: 2.4rem;
    margin-bottom: 2.4rem;
}

@media (min-width: 1100px) {
    .cs-ml-3\:lg {
        margin-left: 1.2rem;
    }

    .cs-mr-3\:lg {
        margin-right: 1.2rem;
    }

    .cs-mt-3\:lg {
        margin-top: 1.2rem;
    }

    .cs-mb-3\:lg {
        margin-bottom: 1.2rem;
    }

    .cs-my-3\:lg {
        margin-top: 1.2rem;
        margin-bottom: 1.2rem;
    }

    .cs-my-6\:lg {
        margin-top: 2.4rem;
        margin-bottom: 2.4rem;
    }
}

.cs-max-h-400 {
    max-height: 400px;
}

.cs-full-width {
    width: 100%;
}

@media (max-width: 1100px) {
    .cs-full-width\:sm {
        width: 100%;
    }

    .cs-mt-3\:sm {
        margin-top: 1.2rem;
    }

    .cs-mb-3\:sm {
        margin-bottom: 1.2rem;
    }

    .cs-my-3\:sm {
        margin-top: 1.2rem;
        margin-bottom: 1.2rem;
    }

    .cs-my-6\:sm {
        margin-top: 2.4rem;
        margin-bottom: 2.4rem;
    }

    .cs-full-width\:sm {
        width: 100%;
    }
}

.cs-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 30vh;
}

@keyframes cs-on {
    0% {
        opacity: 0.5;
        transform: scale(0.8);
    }

    20% {
        opacity: 1;
        transform: scale(1);
    }

    90% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.cs-c1 {
    opacity: 0.5;
    transform: scale(0.8);
    transform-origin: 50% 50%;
    animation-iteration-count: infinite;
    animation-name: cs-on;
    animation-duration: 1.7s;
    animation-delay: 0;
}

.cs-c2 {
    opacity: 0.5;
    transform: scale(0.8);
    transform-origin: 50% 50%;
    animation-iteration-count: infinite;
    animation-name: cs-on;
    animation-duration: 1.7s;
    animation-delay: 0.2s;
}

.cs-c3 {
    opacity: 0.5;
    transform: scale(0.8);
    transform-origin: 50% 50%;
    animation-iteration-count: infinite;
    animation-name: cs-on;
    animation-duration: 1.7s;
    animation-delay: 0.4s;
}

/**
* Tapcart Styles
*/

.tapcart-webbridge #cs-index {
    margin-top: 30px;
}

.tapcart-webbridge #cs-index .cs-header {
    display: none;
}