/* IMPORTS */

/* OBJECTS */
@import './components/objects/button.css';
@import './components/objects/checkbox.css';
@import './components/objects/fileInput.css';
@import './components/objects/input.css';
@import './components/objects/notification.css';
@import './components/objects/passwordInput.css';
@import './components/objects/pill.css';
@import './components/objects/switch.css';
@import './components/objects/select.css';
@import './components/objects/tooltip.css';
@import './components/objects/loader.css';

/* COMPONENTS */
@import './components/accordionCard.css';
@import './components/baseIcon.css';
@import './components/mobileNavbar.css';
@import './components/footer.css';
@import './components/header.css';
@import './components/languageSelector.css';
@import './components/messageCard.css';
@import './components/mobileNewsContent.css';
@import './components/pagination.css';
@import './components/planCard.css';
@import './components/product.css';
@import './components/productPreview.css';
@import './components/productsTableRow.css';
@import './components/sidebar.css';
@import './components/tabsBar.css';
@import './components/topbar.css';

/* PAGES */
@import '../../includes/dashboard/dashboard.css';
@import '../../man_files/css/filemanager.css';
@import './account/accountDetails.css';
@import './account/accountTax.css';
@import './account/allSales.css';
@import './account/orderInvoice.css';
@import './account/messages.css';
@import './account/productsSold.css';
@import './account/salesReport.css';
@import './account/salesReportPrint.css';
@import './accountSummary.css';
@import './base.css';
@import './dsgvo/dsgvo.css';
@import './error.css';
@import './free_order/vendorCopy.css';
@import './keys.css';
@import './homepage.css';
@import './location_finder.css';
@import './login.css';
@import './product_preview.css';
@import './products.css';
@import './promotions/promotions.css';
@import './promotions/promotions-list.css';
@import './register.css';
@import './support/productSupport.css';
@import './validation/registrationSent.css';

/* WIDGETS */
@import '../../includes/dashboard/widget.css';
@import '../../includes/dashboard/widgets/allSales/allSales.css';
@import '../../includes/dashboard/widgets/downloads/downloads.css';
@import '../../includes/dashboard/widgets/messageInbox/messageInbox.css';
@import '../../includes/dashboard/widgets/news/news.css';
@import '../../includes/dashboard/widgets/notes/notes.css';
@import '../../includes/dashboard/widgets/productsSold/productsSold.css';
@import '../../includes/dashboard/widgets/productSupport/productSupport.css';
@import '../../includes/dashboard/widgets/productTickets/productTickets.css';
@import '../../includes/dashboard/widgets/promotionsOverview/promotionsOverview.css';
@import '../../includes/dashboard/widgets/salesReport/salesReport.css';
@import '../../includes/dashboard/widgets/salesSummary/salesSummary.css';
/*--------------------------------------------------------------
Variables
--------------------------------------------------------------*/

:root {
    /*************************
  *      Typography        *
  *************************/
    /* Font Weights */
    --font-weight-bold: 700;
    --font-weight-semibold: 600;
    --font-weight-medium: 500;
    --font-weight-regular: 400;
    --font-weight-small: 300;
    /* Font Size */
    --font-size-xs: 10px;
    --font-size-small: 12px;
    --font-size-medium: 14px;
    --font-size-standard: 16px;
    --font-size-large: 18px;
    --font-size-xl: 24px;
    --font-size-xxl: 32px;
    --font-size-xxxl: 36px;
    /* Font Leadings */
    --font-line-height-xs: 12px;
    --font-line-height-small: 16px;
    --font-line-height-medium: 20px;
    --font-line-height-standard: 24px;
    --font-line-height-large: 26px;
    --font-line-height-xl: 32px;
    --font-line-height-xxl: 36px;
    --font-line-height-xxxl: 40px;
    /* Font Trackings */
    --font-letter-spacing-extra-tight: -0.04em;
    --font-letter-spacing-tighter: -0.03em;
    --font-letter-spacing-tight: -0.02em;
    --font-letter-spacing-normal: 0;
    /*************************
  *        Colors          *
  *************************/
    --color-gray1: #1F2933;
    --color-gray2: #3C464F;
    --color-gray3: #727A82;
    --color-gray4: #B2B7BD;
    --color-gray5: #D9DDE0;
    --color-gray6: #EBEDF0;
    --color-gray7: #F7F8FA;
    --color-white: #FFFFFF;
    --color-red1: #EB5757;
    --color-red2: #f9f2f4;
    --color-orange: #F2994A;
    --color-yellow: #F2C94C;
    --color-green1: #219653;
    --color-green2: #27AE60;
    --color-green3: #6FCF97;
    --color-blue1: #3B6FA3;
    --color-blue2: #2F5982;
    --color-blue3: #294E72;
    --color-blue4: #57A6F5;
    --color-blue5: #B1C5DA;
    --color-blue6: #3F90E0;
    --color-purple1: #9B51E0;
    --color-purple2: #BB6BD9;
    --color-simmarket-blue: #00629f;
  /*************************
  *        Layout          *
  *************************/
    --base-border-radius: 10px;
    --footer-bottom-margin: 40px;
    --mobile-header-height: 58px;
    --mobile-navbar-height: 46px;
    --mobile-topbar-height: 46px;
    --sidebar-width: 256px;
}

* {
    padding: 0;
    margin: 0;
}

html, body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    background-color: var(--color-gray7);
}

/* FORCE NON RESPONSIVE BEHAVIOUR */
.container {
  max-width: 1320px !important;
}

body.auth-view {
    min-width: 320px;
}

/*--------------------------------------------------------------
Helpers
--------------------------------------------------------------*/

.font-weight-bold {
    font-weight: var(--font-weight-bold);
}

.font-weight-semibold {
    font-weight: var(--font-weight-semibold);
}

.font-weight-medium {
    font-weight: var(--font-weight-medium);
}

.font-weight-regular {
    font-weight: var(--font-weight-regular);
}

/*--------------------------------------------------------------
Styles
--------------------------------------------------------------*/

/*************************
*      Text Styles       *
*************************/

h1 {
    margin: 0;
    color: var(--color-gray1);
    font-size: var(--font-size-xxl);
    line-height: var(--font-line-height-xxl);
    font-weight: var(--font-weight-bold);
}

h2 {
    margin: 0;
    color: var(--color-gray1);
    font-size: var(--font-size-xl);
    line-height: var(--font-line-height-xl);
    font-weight: var(--font-weight-semibold);
}

h3 {
    margin: 0;
    color: var(--color-gray1);
    font-size: var(--font-size-large);
    line-height: var(--font-line-height-large);
    font-weight: var(--font-weight-bold);
}

h4 {
    margin: 0;
    color: var(--color-gray1);
    font-size: var(--font-size-medium);
    line-height: var(--font-line-height-medium);
    font-weight: var(--font-weight-regular);
}

p, .body-text {
    margin: 0;
    color: var(--color-gray1);
    font-size: var(--font-size-medium);
    line-height: var(--font-line-height-medium);
    font-weight: var(--font-weight-regular);
}

.body-text-two {
    color: var(--color-gray1);
    font-size: var(--font-size-medium);
    line-height: var(--font-line-height-medium);
    font-weight: var(--font-weight-regular);
}

.base-button-text {
    color: var(--color-gray1);
    font-size: var(--font-size-medium);
    line-height: var(--font-line-height-medium);
    font-weight: var(--font-weight-medium);
}

.label-text {
    font-size: var(--font-size-small);
    line-height: var(--font-line-height-small);
    font-weight: var(--font-weight-semibold);
    color: var(--color-gray1);
    text-transform: uppercase;
}

.price {
    color: var(--color-gray1);
    font-size: var(--font-size-medium);
    line-height: var(--font-line-height-medium);
    font-weight: var(--font-weight-semibold);
}

.price-two {
    color: var(--color-gray1);
    font-size: var(--font-size-small);
    line-height: var(--font-line-height-small);
    font-weight: var(--font-weight-semibold);
}

h5, .subtitle {
    margin: 0;
    color: var(--color-gray3);
    font-size: var(--font-size-small);
    line-height: var(--font-line-height-small);
    font-weight: var(--font-weight-regular);
}

.subtitle--semibold {
    color: var(--color-gray1);
    font-size: var(--font-size-small);
    line-height: var(--font-line-height-small);
    font-weight: var(--font-weight-bold);
}

h6, .subtitle-two {
    margin: 0;
    color: var(--color-gray1);
    font-size: var(--font-size-large);
    line-height: var(--font-line-height-large);
    font-weight: var(--font-weight-regular);
}

/*************************
*       Components       *
*************************/

.content.content_print {
    width: 974px;
    margin: 0 auto 33px auto;
    padding-top: 0;
    border: none;
}

.content.content_print .noPrint {
    display: none;
}

.base-modal {
    border: 1px solid var(--color-gray6);
    border-radius: 10px;
    background-color: var(--color-white);
}

.modal.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.modal .modal-dialog {
    max-width: 380px;
    margin: 0 auto;
}

.modal .modal-content {
    height: 100%;
    max-height: 559px;
    border: 0;
    overflow-y: auto;
    border-radius: 10px;
}

.modal .modal-content::-webkit-scrollbar {
    display: none;
}

.modal .modal-body {
    padding: 24px;
    padding-top: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.modal .modal-header {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: sticky;
    top: 0;
    width: 100%;
    border-color: var(--color-gray7);
    padding: 24px;
    padding-bottom: 10px;
    background-color: var(--color-white);
    z-index: 1;
}

.modal .modal-header>.base-icon {
    margin-right: 8px;
}

.modal .modal-header--no-border {
    border: none;
}

.modal .modal-header .btn-close {
    background-image: url('../v1/images/icons/closeCircle.svg');
    background-size: 20px;
    height: 20px;
    width: 20px;
}

.modal .modal-footer {
    padding: 24px;
    border: none;
    justify-content: flex-start;
}

.modal .modal-footer * {
    margin: 0;
}

.base-radio {
    cursor: pointer;
    position: relative;
    height: 16px;
    width: 16px;
}

.base-radio input {
    cursor: pointer;
    position: relative;
    opacity: 0;
    height: 100%;
    width: 100%;
    margin: 0;
    z-index: 1;
}

.base-radio__radio {
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: transparent;
    border: 1px solid var(--color-blue1);
    border-radius: 50%;
}

.base-radio .base-radio__radio::after {
    content: '';
    position: absolute;
    display: none;
    top: 3px;
    left: 3px;
    width: 8px;
    background: var(--color-blue2);;
    height: 8px;
    border-radius: 50%;
}

.base-radio input:checked+.base-radio__radio::after {
    display: block;
}

.base-radio input:disabled+.base-radio__radio {
    cursor: not-allowed;
    border-color: var(--color-blue5);
}

.ui-datepicker {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    padding: 20px 24px;
    background: var(--color-white);
    box-shadow: 0px 24px 40px rgba(0, 0, 0, 0.06);
    border-radius: var(--base-border-radius);
}

.ui-datepicker.ui-widget.ui-widget-content {
    border: none;
    color: var(--color-gray2);
}

.ui-widget-header {
    background: var(--color-white);
    border: none;
}

.ui-datepicker-title {
    color: var(--color-gray2);
    font-weight: var(--font-weight-regular);
    font-size: var(--font-size-medium);
    line-height: var(--font-line-height-medium);
}

.ui-datepicker-calendar thead tr {
    opacity: 0.4;
}

.ui-datepicker-calendar thead tr {
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-small);
    line-height: var(--font-line-height-small);
    color: var(--color-gray2);
}

.ui-datepicker-calendar tbody td {
    padding: 0;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-small);
    line-height: var(--font-line-height-small);
    color: var(--color-gray2);
    border-radius: var(--base-border-radius);
    padding: 8px;
    text-align: center;
    background: transparent;
    border: none;
}

.ui-datepicker-calendar tbody td .ui-state-default:hover {
    background-color: var(--color-blue1);
    color: var(--color-white);
}

.ui-state-default.ui-state-highlight {
    color: var(--color-blue1);
    background-color: var(--color-gray6);
}

.ui-state-default.ui-state-active {
    background-color: var(--color-blue1);
    color: var(--color-white);
}

.ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary {
    color: var(--color-gray4);
    opacity: 0.4;
}

.ui-icon.ui-icon-circle-triangle-w {
    width: 20px;
    height: 20px;
    background-image: url('images/icons/chevronLeft.svg');
    background-size: contain;
    background-position: 0 0;
}

.ui-icon.ui-icon-circle-triangle-e {
    width: 20px;
    height: 20px;
    background-image: url('images/icons/chevronRight.svg');
    background-size: contain;
    background-position: 0 0;
}

.ui-state-hover.ui-datepicker-prev-hover, .ui-state-hover.ui-datepicker-next-hover {
    border: none;
    background: transparent;
}

.dropdown-menu__item {
    cursor: pointer;
    padding: 16px;
    text-align: center;
}

.dropdown-menu__item:hover {
    background-color: var(--color-gray6);
}

/* Base Card */

.base-card, .panel.panel-default {
    display: inline-block;
    padding: 20px;
    background: var(--color-white);
    box-shadow: 0px 24px 40px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
}

.panel.panel-default {
    display: flex;
    flex-direction: column;
    padding: 40px;
}

.panel-actions {
    padding-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    flex-shrink: 0;
}

.panel-actions .btn {
    min-width: 96px;
}

.panel-actions .btn:not(:first-child) {
    margin-left: 20px;
}

.panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-shrink: 0;
    padding-bottom: 20px;
}

.panel-header .base-icon {
    cursor: pointer;
}

.panel-content {
    height: 100%;
    overflow-y: auto;
}

.panel-text:not(:first-child) {
    margin-top: 20px;
}

.panel-text--bold {
    font-weight: var(--font-weight-semibold);
}

.base-table-header {
    font-size: var(--font-size-medium);
    line-height: var(--font-line-height-medium);
    color: var(--color-gray4);
}

.base-table-row {
    display: inline-grid;
    grid-gap: 12px;
    padding: 20px;
    background-color: var(--color-white);
    box-shadow: 0px 24px 40px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
}

.base-table-row__line {
    grid-area: line;
    height: 1px;
    width: 100%;
    background-color: var(--color-gray6);
}

.base-table-row__cell {
    margin: 0;
    font-weight: var(--font-weight-regular);
    font-size: var(--font-size-medium);
    line-height: var(--font-line-height-medium);
    color: var(--color-gray1);
    text-align: right;
}

.base-table-row__name {
    grid-area: name;
    display: inline-block;
    margin: 0;
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-medium);
    line-height: var(--font-line-height-medium);
    color: var(--color-gray1);
    max-width: 200px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.base-table-row__label {
    text-align: left;
    font-size: var(--font-size-small);
    line-height: var(--font-line-height-small);
    color: var(--color-gray3);
}

.base-table-row__icons {
    grid-area: icons;
    display: inline-flex;
    justify-content: flex-end;
}

.base-table-row__icons .base-icon {
    cursor: pointer;
    color: var(--color-gray3);
}

.no-scroll {
    overflow-y: hidden;
}

table {
    margin: 0 !important;
}

.table {
    filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.05));
    border: 1px solid var(--color-gray6);
}

table.table-rounded {
    border-radius: 10px;
}

.table.dataTable {
    background-color: var(--color-white);
    margin: 0 !important;
    width: 100% !important;
    border-spacing: 0;
}

.table th {
    padding: 10px;
    font-size: var(--font-size-medium);
    line-height: var(--font-line-height-medium);
    font-weight: var(--font-weight-regular);
    color: var(--color-gray4);
    white-space: nowrap;
}

.table.table-rounded th {
    font-weight: var(--font-weight-regular);
    color: var(--color-gray2);
    padding-left: 10px;
}

.table td {
    padding: 12px;
    font-weight: var(--font-weight-regular);
    font-size: var(--font-size-medium);
    line-height: var(--font-line-height-medium);
    color: var(--color-gray1);
    text-overflow: ellipsis;
    overflow: hidden;
}

.table td>a {
    text-transform: capitalize;
    color: var(--color-gray1);
}

table td.table__actions-cell {
    display: flex;
    justify-content: flex-end;
}

table td.table__actions-cell > *:not(:first-child) {
    margin-left: 5px;
}

td.table__empty-message {
    margin-left: 0;
    color: var(--color-gray3);
    text-align: left;
}

td.table__empty-message::before {
    display: none;
}

td.table__cell-list {
    display: flex;
    flex-direction: column;
}

@media (min-width: 1150px) {
    .table tbody tr:not(.table__empty-message-row):not(.promotions-table__products-row):hover {
        background-color: var(--color-gray7);
    }

    .table tbody tr td a:hover,
    .table tbody tr td a:hover .base-icon {
        color: var(--color-blue1);
    }
}

.dataTables_length,
.dataTables_info {
    display: none;
}

.dataTables_info {
    margin-top: 26px;
    font-size: var(--font-size-medium);
    line-height: var(--font-line-height-medium);

    color: var(--color-gray1);
    text-align: right;
}

div.dataTables_wrapper div.dataTables_paginate {
    margin-top: 28px;
    justify-content: space-between;
}

div.dataTables_wrapper div.dataTables_paginate .pagination {
    justify-content: center;
    align-items: center;
}

div.dataTables_wrapper div.dataTables_paginate .paginate_button a {
    display: block;
    color: var(--color-gray1);
    padding: 4px;
    width: 28px;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    font-size: var(--font-size-medium);
    line-height: var(--font-line-height-medium);
}

div.dataTables_wrapper div.dataTables_paginate .paginate_button:not(:first-child) {
    margin-left: 10px;
}

div.dataTables_wrapper div.dataTables_paginate .paginate_button a:hover, div.dataTables_wrapper div.dataTables_paginate .paginate_button.active a {
    color: var(--color-white);
    text-decoration: none;
    background-color: var(--color-blue1);
}

div.dataTables_wrapper div.dataTables_paginate .paginate_button.previous a {
    color: var(--color-gray1);
    content: url('../v1/images/icons/chevronLeft.svg');
}

div.dataTables_wrapper div.dataTables_paginate .paginate_button.previous a:hover {
    background-color: var(--color-blue1);
    content: url('../v1/images/icons/chevronLeft--white.svg');
}

div.dataTables_wrapper div.dataTables_paginate .paginate_button.next a {
    color: var(--color-gray1);
    content: url('../v1/images/icons/chevronRight.svg');
}

div.dataTables_wrapper div.dataTables_paginate .paginate_button.disabled a {
    opacity: 0.5;
    pointer-events: none;
}

div.dataTables_wrapper div.dataTables_paginate .paginate_button.next a:hover {
    background-color: var(--color-blue1);
    content: url('../v1/images/icons/chevronRight--white.svg');
}

table.table-rounded td:first-child a, table.table-rounded td:first-child a:hover, table.table-rounded td:first-child a:visited {
    text-decoration: none;
}

.page__actions-container .page__action-cta-button {
    display: none;
}

.page__actions-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 16px;
}

.page__action-button {
    outline: 0;
    height: 40px;
    width: 40px;
    background: var(--color-white);
    border: 1px solid var(--color-gray4);
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.page__action-button {
    margin-left: 12px;
}

.page__action-cta-button {
    flex-shrink: 0;
    margin-left: 12px;
}

.page__action-search input {
    padding-left: 50px;
}

.page__action-search {
    flex-grow: 1;
}

.page__action-search::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    background-image: url('./images/icons/search.svg');
}

.page__filter-modal-input {
    width: 100%;
}

.modal-footer.page__filter-modal-footer {
    justify-content: flex-end;
}

.modal-footer.page__filter-modal-footer .btn {
    min-width: initial;
    max-width: max-content;
}

.modal-footer.page__filter-modal-footer .btn:not(:first-child) {
    margin-left: 20px;
}

.page__filter-modal-input:not(:first-child) {
    margin-top: 20px;
}

.page__header-container {
    margin: 0;
    margin-top: -8px;
    margin-left: -12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.page__header-container .page__action-cta-button {
    margin-top: 8px;
}

.page__info {
    margin-top: 8px;
    font-size: var(--font-size-medium);
    line-height: var(--font-line-height-medium);
}

.page__info label {
    font-weight: var(--font-weight-semibold);
}

.page__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-xl);
    line-height: var(--font-line-height-xl);
    letter-spacing: var(--font-letter-spacing-tight);
    color: var(--color-gray1);
}

.page__subtitle {
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-medium);
    line-height: var(--font-line-height-medium);
    color: var(--color-gray3);
}

.page__back-link,
.page__back-link:active,
.page__back-link:hover {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-medium);
    line-height: var(--font-line-height-medium);
    color: var(--color-blue1);
}

.page__back-link .base-icon {
    margin-right: 4px;
}

.base__container {
    padding-left: 8px;
    padding-right: 8px;
}

.file-upload-progress {
    padding: 6px 0;
    padding-top: 8px;
    display: flex;
    flex-direction: column;
}

.file-upload-progress__actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-shrink: 0;
}

.file-upload-progress__actions .base-icon:not(:first-child) {
    cursor: pointer;
    margin-left: 8px;
}

.file-upload-progress__bar-container {
    margin-top: 8px;
}

.file-upload-progress__header {
    display: flex;
    align-items: flex-end;
}

.file-upload-progress__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}

.file-upload-progress__size {
    color: var(--color-gray3);
}

.file-upload-progress__status {
    color: var(--color-gray2);
    text-transform: capitalize;
}

/***
    Section for product catalog preview
*/

@media (max-width: 1149px) {
    .all-sales__order-cell {
        display: inline;
    }

    .table.dataTable {
        border-spacing: revert;
    }

    table.table-rounded.dataTable {
        background-color: transparent;
        border: none;
    }

    table:not(.not-responsive):not(.daterangepicker-table) > thead {
        position: absolute;
        left: -9999px;
        overflow: hidden;
        width: 0px;
        height: 0px;
    }

    table:not(.not-responsive):not(.daterangepicker-table),
    table:not(.not-responsive):not(.daterangepicker-table) > tbody,
    table:not(.not-responsive):not(.daterangepicker-table) > tbody > tr:not(.srData),
    table:not(.not-responsive):not(.daterangepicker-table) > tbody > tr > td:not(.table__actions-cell),
    table:not(.not-responsive):not(.daterangepicker-table) > thead,
    table:not(.not-responsive):not(.daterangepicker-table) > thead > tr > th,
    table:not(.not-responsive):not(.daterangepicker-table) > thead > tr:not(.srData) {
        display: block;
    }

    table:not(.not-responsive):not(.daterangepicker-table) > tbody > tr:not(.srData),
    table:not(.not-responsive):not(.daterangepicker-table) > thead > tr:not(.srData) {
        position: relative;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    table:not(.not-responsive):not(.daterangepicker-table) > tbody > tr:not(.srData):not(:first-child),
    table:not(.not-responsive):not(.daterangepicker-table) > thead > tr:not(.srData):not(:first-child) {
        margin-top: 48px;
    }

    table:not(.not-responsive):not(.daterangepicker-table) > tbody > tr:not(.srData):not(:first-child)::before,
    table:not(.not-responsive):not(.daterangepicker-table) > thead > tr:not(.srData):not(:first-child)::before {
        content: '';
        position: absolute;
        top: -24px;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: var(--color-gray6);
    }

    table:not(.not-responsive):not(.daterangepicker-table):not(.product-edit__filemanager-table) > tbody > tr:not(.srData) > td:not(.table__empty-message)::before {
        position: relative;
        content: attr(data-title);
        display: inline-block;
        text-align: left;
        font-size: var(--font-size-small);
        line-height: var(--font-line-height-medium);
        color: var(--color-gray3);
        margin-right: 8px;
        white-space: nowrap;
    }

    table:not(.not-responsive):not(.daterangepicker-table) > tbody > tr:not(.srData) > td:not(.table__empty-message) {
        padding-left: 0;
    }

    table:not(.not-responsive):not(.daterangepicker-table):not(.product-edit__filemanager-table) > tbody > tr:not(.srData) > td:not(.table__empty-message):not(.table__actions-cell) {
        margin-left: auto;
        text-align: right;
        display: flex;
        word-break: break-word;
        justify-content: space-between;
        width: 100%;
    }

    table:not(.not-responsive):not(.daterangepicker-table).table-rounded > tbody > tr:not(.srData),
    table:not(.not-responsive):not(.daterangepicker-table).table-rounded > thead > tr:not(.srData) {
        margin: 0;
        padding: 20px;
        background-color: var(--color-white);
    }

    table:not(.not-responsive):not(.daterangepicker-table).table-rounded > tbody > tr:not(.srData):not(.table__empty-message-row),
    table:not(.not-responsive):not(.daterangepicker-table).table-rounded > thead > tr:not(.srData):not(.table__empty-message-row) {
        padding-bottom: 10px;
    }

    table:not(.not-responsive):not(.daterangepicker-table).table-rounded > tbody > tr:not(.srData):not(.table__empty-message-row)::after,
    table:not(.not-responsive):not(.daterangepicker-table).table-rounded > thead > tr:not(.srData):not(.table__empty-message-row)::after {
        content: '';
        position: absolute;
        top: 50px;
        left: 20px;
        background-color: var(--color-gray6);
        height: 1px;
        width: calc(100% - 40px);
    }

    table:not(.not-responsive):not(.daterangepicker-table).table-rounded > tbody > tr:not(.srData),
    table:not(.not-responsive):not(.daterangepicker-table).table-rounded > thead > tr:not(.srData) {
        border-radius: 10px;
        border: 1px solid var(--color-gray6);
    }

    table:not(.not-responsive):not(.daterangepicker-table).table-rounded > tbody > tr:not(.srData):not(:first-child),
    table:not(.not-responsive):not(.daterangepicker-table).table-rounded > thead > tr:not(.srData):not(:first-child) {
        margin-top: 12px;
    }

    table:not(.not-responsive):not(.daterangepicker-table).table-rounded > tbody > tr:not(.srData):not(:first-child)::before,
    table:not(.not-responsive):not(.daterangepicker-table).table-rounded > thead > tr:not(.srData):not(:first-child)::before {
        display: none;
    }

    table:not(.not-responsive):not(.daterangepicker-table).table-rounded > tbody > tr:not(.srData):not(:last-child),
    table:not(.not-responsive):not(.daterangepicker-table).table-rounded > thead > tr:not(.srData):not(:last-child) {
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    table:not(.not-responsive):not(.daterangepicker-table).table-rounded > tbody > tr > td:nth-child(2),
    table:not(.not-responsive):not(.daterangepicker-table).table-rounded > thead > tr > td:nth-child(2) {
        padding-top: 12px;
    }

    table:not(.not-responsive):not(.daterangepicker-table):not(.promotions-table).table-rounded > tbody > tr > td:not(.table__empty-message):first-child {
        display: block;
        padding: 0;
        margin: 0;
        text-align: left;
        font-weight: var(--font-weight-semibold);
        font-size: var(--font-size-medium);
        line-height: var(--font-line-height-medium);
        color: var(--color-gray1);
        /* This value is necessary to prevent the MSFS 2024 switch from being cut in smaller viewports. It was set to 160px. */
        max-width: 250px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        margin-bottom: 14px;
    }

    table:not(.not-responsive):not(.daterangepicker-table).table-rounded > tbody > tr > td:first-child::before,
    table:not(.not-responsive):not(.daterangepicker-table).table-rounded > thead > tr > td:first-child::before {
        content: '';
        display: none !important;
    }

    table td.table__actions-cell {
        position: absolute;
        top: 20px;
        right: 20px;
        padding: 0;
        width: auto;
    }
}

/* Medium devices */

@media (min-width: 1150px) {
    .base__container {
        padding-left: 28px;
        padding-right: 28px;
    }

    .page__actions-container {
        margin-top: 24px;
    }

    .page__actions-container .page__action-cta-button.btn {
        display: inline-flex;
        align-self: flex-end;
    }

    .page__action-cta-button.btn {
        display: none;
    }

    .page__action-button {
        display: none;
    }

    .page__calendar-container {
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
    }

    .page__action-search {
        margin-top: 0;
        max-width: 300px;
    }

    table.table-rounded.dataTable {
        background-color: var(--color-white);
    }

    table.table-rounded th {
        padding: 16px 0;
    }

    table.table-rounded.dataTable thead .sorting::after, table.table-rounded.dataTable thead .sorting_asc::after, table.table-rounded.dataTable thead .sorting_desc::after {
        position: relative;
        display: inline-block;
        margin-left: 16px;
        top: 3px;
        height: 16px;
        width: 16px;
        content: url('./images/icons/chevronUp.svg');
        opacity: 0.35;
    }

    table.table-rounded.dataTable thead .sorting_asc::after {
        content: url('./images/icons/chevronUp.svg');
        opacity: 1;
    }

    table.table-rounded.dataTable thead .sorting_desc::after {
        content: url('./images/icons/chevronDown.svg');
        opacity: 1;
    }

    table.table-rounded.dataTable tbody tr>td.dataTables_empty {
        text-align: left;
        color: var(--color-gray3);
    }

    table.table-rounded th:first-child {
        padding-left: 24px;
    }

    table.table-rounded th:last-child {
        padding-right: 24px;
    }

    table.table-rounded td:first-child {
        padding-left: 24px;
    }

    table.table-rounded td:last-child {
        padding-right: 24px;
    }

    table.table-rounded thead {
        position: relative;
    }

    table.table-rounded thead::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        height: 1px;
        width: 100%;
        background-color: var(--color-gray6);
    }

    .dataTables_length,
    .dataTables_info {
        display: block;
        margin-top: 16px;
    }

    .dataTables_length label {
        font-size: var(--font-size-medium);
        line-height: var(--font-line-height-medium);
        color: var(--color-gray1);
    }

    div.dataTables_wrapper div.dataTables_length select {
        background: transparent;
        border: 1px solid transparent;
        font-size: var(--font-size-medium);
        line-height: var(--font-line-height-medium);
        text-align: center;
        color: var(--color-blue1);
        height: 24px;
        width: auto;
        padding: 0;
        -webkit-appearance: auto;
        -moz-appearance: auto;
        appearance: auto;
        outline: none;
    }

    div.dataTables_wrapper div.dataTables_length select:focus {
        border: 1px solid var(--color-blue1);
        outline: none;
        box-shadow: none;
    }

    .base-table-row {
        display: grid;
        grid-auto-columns: 1fr;
        grid-auto-rows: max-content;
        grid-auto-flow: column;
        grid-template-areas: initial;
        grid-gap: 0;
        padding: 12px 24px;
        background-color: transparent;
        box-shadow: none;
    }

    .base-table-row__line {
        display: none;
    }

    .base-table-row__cell, .base-table-row__name {
        margin: 0;
        display: inline-flex;
        align-items: center;
        justify-content: flex-start;
        font-weight: var(--font-weight-regular);
        font-size: var(--font-size-medium);
        line-height: var(--font-line-height-medium);
        color: var(--color-gray1);
        overflow: visible;
        text-overflow: initial;
        white-space: normal;
        max-width: 100%;
    }

    .base-table-row__label {
        grid-area: initial;
        display: none;
    }

    .base-table-row__name, .base-table-row__icons {
        text-align: center;
        grid-area: initial;
    }

    .modal .modal-dialog {
        max-width: 868px;
    }

    .modal.modal--small .modal-dialog {
        max-width: 424px;
    }

    .modal .modal-content {
        max-height: 654px;
        min-width: 480px;
    }

    .file-upload-progress__info {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
    }

    .file-upload-progress__size {
        margin-left: 12px;
    }

    .file-upload-progress__status {
        margin-left: 12px;
    }
}

@media (min-width: 768px) and (max-height: 700px) {
    .modal.show {
        align-items: flex-start;
    }

    .modal .modal-dialog {
        padding: 20px 0;
    }

    .modal .modal-content {
        max-height: initial;
    }

    .modal .modal-header {
        position: relative;
    }

    .modal .modal-body {
        height: 100%;
    }
}

.chosen-container .chosen-results li.active-result {
    margin: 0;
}

.chosen-container .chosen-results li.result-selected {
  margin: 0;
}

/* START CSS SPINNER */

.lds-roller {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
}

.lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 32px 32px;
}

.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-white);
    margin: -3px 0 0 -3px;
}

.lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
    top: 50px;
    left: 50px;
}

.lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
    top: 54px;
    left: 45px;
}

.lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
    top: 57px;
    left: 39px;
}

.lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
    top: 58px;
    left: 32px;
}

.lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
    top: 57px;
    left: 25px;
}

.lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
    top: 54px;
    left: 19px;
}

.lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
    top: 50px;
    left: 14px;
}

.lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
    top: 45px;
    left: 10px;
}

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.daterangepicker.show-calendar .drp-buttons {
    display: flex;
}

.daterangepicker.show-calendar .drp-buttons .cancelBtn:hover {
    color: var(--color-white);
}

/**** end siminstaller validation styling ****/

.daterangepicker .drp-buttons .drp-selected {
    display: none;
}

@media only print {
    .noPrint {
        display: none;
        visibility: hidden;
    }

    .onlyPrint {
        display: initial;
        visibility: visible;
    }

    .content {
        overflow: visible !important;
        margin-top: 0 !important;
        top: initial !important;
        border: none !important;
        margin-bottom: 0 !important;
        margin-left: 0 !important;
    }

    .container {
        width: 100vh;
    }

    #selfbillingFormPage,
    #selfbillingFormPage td {
        font-size: 16pt !important;
    }

    /* #selfbillingFormPage h1 {
        font-size: 24pt !important;
    } */

    #selfbillingFormPage,
    #selfbilling-agreement-content,
    #selfbilling-agreement-content .selfbilling-agreement-obligations,
    #selfbilling-agreement-content p {
        width: 100% !important;
    }

    #selfbilling-agreement-content p {
        max-width: initial;
    }
}

.collapse-arrow {
    position: relative;
    float: right;
}
.collapse-control.collapsed .arrow-collapse {
    display: none;
}
.collapse-control:not(.collapsed) .arrow-expand {
    display: none;
}

.panel:not(.panel-success) .icon-success {
    display: none
}

@media (max-width: 1199px) {
    /* This is need for specificity to override styles */
    tbody tr:not(.srData) td:not(.table__empty-message).promotions-table__open-list-row {
        margin-left: 0;
        width: 100%;
    }

    /* This is need for specificity to override styles */
    tbody tr:not(.srData) td:not(.table__empty-message) .fm_tab_container {
        text-align: left;

    }
}

@media (max-width: 767px) {
    .page__action-cta-button .base-icon + .btn__text {
        display: none;
    }
}

@media (min-width: 768px) {
    table:not(.not-responsive):not(.daterangepicker-table):not(.promotions-table).table-rounded > tbody td:not(.table__empty-message):first-child {
        max-width: 460px;
    }
}

.oneline {
    display: inline-block;
    overflow: hidden;
    max-height: 1.5em;
    height: 1.5em;
    vertical-align: top;
}


#registerCodeContainer.collapsed #registerCodeDetailsContainer {
    display: none !important;
}

#registerCodeContainer:not(.collapsed) #registerCodeDetailsExpandButton {
    display: none !important;
}


#products-categories__titles {
    list-style: none;
    padding-left: 0;
}
.products-categories__titles__item {
    align-items: center;
    display: flex;
    flex-flow: row;
    gap: 0.2em;
    margin-top: 0 !important;
}
.products-categories__titles__item img {
    height: 1em;
}

.products-categories__titles__item .path-secondary {
    line-height: 1em;
    padding-top: 4px;
    color: gray;
}
.products-categories__titles__item .path-primary {
    line-height: 1em;
    padding-top: 4px;
    color: var(--color-simmarket-blue);
    font-weight: bold;
}
