/*@font-face {
    font-family: "Manrope";
    src: url(../fonts/Manrope-Regular.ttf), url(../fonts/Manrope-Regular.woff) format("woff");
    font-display: swap;
}

@font-face {
    font-family: "ManropeBold";
    src: url(../fonts/Manrope-Bold.ttf), url(../fonts/Manrope-Bold.woff) format("woff");
    font-display: swap;
}*/

@font-face {
    font-family: "RobotoItalic";
    src: url(../fonts/Roboto-Italic.ttf), url(../fonts/Roboto-Italic.woff) format("woff");
    font-display: swap;
}

#Component_0 {
    position: relative;
    overflow: hidden;
}

:root {
    --alt-background-color: #F6F6F6;
    --background-color: #F6F6F6;
    --blue: #28619D;
    --green: #95C11F;
    --red: #D9000D;
    --darkestgrey: #262626;
    --darkgrey: #3C3C3C;
    --grey: #888888;
    --lightgrey: #E6E6E6;

    --purple: #262A41;
    --lightpurple: #31344B;
    --darkpurple: #191C2D;
    --black: #363A46;
    --darkblue: #02365F;
    --lightblue: #034A78;
    --default-font: sans-serif;
    --default-font-color: #262626;
    --title-font: sans-serif;
    --standard-font-size: 18px;
    --standard-line-height: 28px;
    --standard-box-shadow: 14px 19px 32px #30478A1F;
    --small-font-size: 13px;
    --small-line-height: 19px;
}

* {
    font-family: var(--default-font);
}

html {
    height: calc(100% + env(safe-area-inset-top) + env(safe-area-inset-bottom));
    background-color: var(--darkgrey);
}

::-webkit-scrollbar {
    display: none;
}

input {
    -webkit-appearance: none;
}

input:focus {
    outline: none;
}

input:disabled {
    color: #999;
    background-color: #e1e1e1;
}

.warning {
    color: #ec0000 !important;
}

.warningBorder {
    border: 2px solid #ec0000;
}

.waiticon_container {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    font-family: var(--title-font);
}

.waiticon {
    margin: auto;
    display: block;
    /* position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0; */
    shape-rendering: auto;
}

body {
    color: var(--default-font-color);
    font-family: var(--default-font);
    font-size: var(--standard-font-size);
    line-height: var(--standard-line-height);
    background-color: #ffffff;
    overscroll-behavior: none;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    /* Disabilito la selezione del testo */
    /*-webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;*/
    /*user-select: none;*/
}

.text-selectable,
.text-selectable * {
    user-select: text;
}

.not-clickable {
    cursor: auto;
}

.hidden {
    display: none !important;
}

.blank {
    display: block !important;
    background-color: var(--alt-background-color) !important;
}

.centered {
    text-align: center;
}

.view {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.view_popup {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 21;
}

.view_popup .view_popup_container {
    position: absolute;
    left: 20px;
    top: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    overflow: hidden;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.view_popup .header {
    width: 100%;
}

.view_header {}

.view_content {
    flex-grow: 1;
    background-color: var(--alt-background-color);
    padding: 20px 0px 0px 80px;
}

.view_content_nopadding {
    padding: 0px 0px 0px 0px;
}

.view_scroll_xy {
    overflow: auto;
}

.spacer1 {
    width: 1px;
    height: 20px;
}


.categorygrid .blank {
    height: calc(100vh - 155px - 28px);
    overflow: scroll;
}

.filtersbutton {
    display: flex;
    align-items: center;
    color: var(--red);
    font-size: var(--small-font-size);
    cursor: pointer;
}

.filtersbutton img {
    height: 20px;
    margin-right: 8px;
}

.buttonFilled {
    background-color: var(--darkgrey);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-right: 10px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.buttonFilled img {
    height: 24px;
}

.checkboxContainer {
    align-self: flex-start;
}

.checkbox {
    display: flex;
    align-items: center;
}

.fakecheckbox {
    width: var(--standard-line-height);
    height: var(--standard-line-height);
    margin-right: 10px;
    padding: 0;
    position: relative;
    background-color: #FFFFFF;
    border: 4px solid var(--background-color);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    box-shadow: 6px 3px 16px #CACADC82;
}

.fakecheckbox .selection {
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url(../images/custom/bluetick.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 14px;
}

.TextBox {
    width: 100%;
    padding: 15px 20px;
    color: var(--default-font-color);
    font-size: var(--standard-font-size);
    line-height: var(--standard-font-size);
    background-position: right;
    background-position-x: calc(100% - 20px);
    background-repeat: no-repeat;
    border: 3px solid var(--background-color);
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    border-radius: 14px;
}

.TextBox.inline {
    width: 300px;
    padding: 8px 10px;
    background-position-x: calc(100% - 12px);
    background-size: 20px;
    border: 2px solid var(--background-color);
}

.TextBox::placeholder {
    color: var(--grey);
    opacity: 0.5;
}

.textbox2 {
    width: 250px;
    height: 35px;
    color: var(--default-font-color);
    font-size: var(--standard-font-size);
    line-height: var(--standard-font-size);
    border: 3px solid var(--background-color);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    margin-right: 5px;
}

.textbox2::placeholder {
    color: var(--grey);
    opacity: 0.5;
}

.textbox3 {
    width: 150px;
    height: 35px;
    margin-right: 5px;
    margin-bottom: 2px;
    padding: 0 5px;
    color: var(--default-font-color);
    font-size: var(--small-font-size);
    line-height: var(--small-font-size);
    letter-spacing: 0.28px;
    background-color: #FFFFFF;
    border: 1px solid var(--lightgrey);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.textbox3::placeholder {
    color: var(--grey);
    opacity: 0.5;
}

.textbox4 {
    width: 200px;
    height: 35px;
    color: var(--default-font-color);
    font-size: var(--standard-font-size);
    line-height: var(--standard-font-size);
    border: 3px solid var(--background-color);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    margin-right: 5px;
    background-color: #ffffff;
}

.textbox4::placeholder {
    color: var(--grey);
    opacity: 0.5;
}

.listbox2,
.listbox3,
.listbox4 {
    width: 150px;
    height: 35px;
    color: var(--default-font-color);
    font-size: var(--small-font-size);
    line-height: var(--small-font-size);
    letter-spacing: 0.28px;
    border: 3px solid var(--background-color);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    margin-right: 5px;
    background-color: #ffffff;
    margin-bottom: 2px;
}

.listbox3 {
    width: 200px;
}

.listbox4 {
    width: auto;
    height: 30px;
}

.renderWithName {
    display: flex;
    flex-direction: column;
    font-size: var(--small-font-size);
    line-height: var(--small-font-size);
    letter-spacing: 0.28px;
}

.renderWithName label {
    margin-top: 5px;
    font-size: 10px;
    text-transform: uppercase;
}

.textbox_qty_control {
    width: 40px;
    height: 30px;
    text-align: center;
    border: 1px solid var(--lightgrey);;
    text-align: center;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.textbox_qty_control2 {
    width: 40px;
    height: 30px;
    text-align: center;
    border: 1px solid #ffffff;
    text-align: center;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.textbox_qty_control2:disabled {
    background-color: transparent;
    color: var(--default-font-color);
    border-width: 0px;
}

.TextArea {
    width: 100%;
    height: 200px;
    padding: 15px 20px;
    color: var(--default-font-color);
    font-size: var(--standard-font-size);
    line-height: var(--standard-font-size);
    background-position: right;
    background-position-x: calc(100% - 20px);
    background-repeat: no-repeat;
    border: 3px solid var(--background-color);
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    border-radius: 14px;
}

.TextArea::placeholder {
    color: var(--grey);
    opacity: 0.5;
}

.CheckBox {
    width: 100%;
}

.CheckBox img {
    width: 45px;
    vertical-align: middle;
}

.alert_popup_container {
    width: 100%;
    height: 100%;
    padding: calc(10% + env(safe-area-inset-top)) 5%;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(56, 60, 83, 0.75);
    overflow: scroll;
    z-index: 30;
}

.alert_popup_container.add_to_cart_popup {
    display: flex;
    flex-flow: column;
    align-items: flex-end;
}

.alert_popup_container .buttons_container {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

.alert_popup_container .buttons_container>.custombutton {
    width: 32%;
    padding: 10px 0;
}

.alert_popup_container .buttons_container>.custombutton:first-child {
    margin-left: 0 !important;
}

.alert_popup {
    width: 50%;
    padding: 50px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.32px;
    text-align: center;
    background-color: #FFFFFF;
    border-radius: 14px;
    box-shadow: 14px 19px 32px #30478A1F;
}

.add_to_cart_popup .alert_popup {
    width: 100%;
    padding: 25px;
    background-color: #F5F7FB;
}

.alert_popup .text {
    margin: 20px 0;
}

.alert_popup img {
    width: 60%;
}

.main_screen {
    height: calc(100% + env(safe-area-inset-top) + env(safe-area-inset-bottom));
    display: flex;
    flex-flow: column;
}

.content_screen_content {
    height: 100%;
    position: relative;
    overflow: scroll;
}

.content_screen {
    /* height: calc(100vh - 76px - env(safe-area-inset-top) - env(safe-area-inset-bottom)); */
    height: 100%;
    overflow: hidden;
}

.custombutton {
    padding: 8px 20px;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: var(--small-font-size);
    line-height: var(--small-line-height);
    letter-spacing: 0.7px;
    text-align: center;
    text-transform: uppercase;
    background-color: var(--red);
    border-color: transparent;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 2px;
    cursor: pointer;
}

.custombutton.inverse,
.buttonCustomer.inverse {
    color: var(--red) !important;
    /* font-weight: bold; */
    background-color: #FFFFFF !important;
    border: 1px solid var(--red) !important;
}

.custombutton-full {
    width: 100%;
    padding: 10px 23px;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: var(--small-font-size);
    line-height: var(--small-line-height);
    letter-spacing: 0.7px;
    text-align: center;
    text-transform: uppercase;
    background-color: var(--red);
    border-color: transparent;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 2px;
    cursor: pointer;
}

.custombutton-2 {
    float: right;
    width: max-content !important;
    font-size: 12px;
    padding: 10px !important;
}

.custombutton-3 {
    margin-top: 20px;
    padding: 10px !important;
    font-size: 12px;
}

.custombutton-half {
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: var(--small-font-size);
    line-height: var(--small-line-height);
    letter-spacing: 0.7px;
    text-align: center;
    text-transform: uppercase;
    background-color: var(--red);
    border-color: transparent;
    cursor: pointer;
}

.custombutton-4 {
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: var(--small-font-size);
    line-height: var(--small-line-height);
    letter-spacing: 0.7px;
    text-align: center;
    text-transform: uppercase;
    background-color: var(--red);
    border-color: transparent;
    cursor: pointer;
}

.custombutton-5 {
    padding: 8px 10px;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: var(--small-font-size);
    line-height: var(--small-line-height);
    letter-spacing: 0.7px;
    text-align: center;
    text-transform: uppercase;
    background-color: var(--red);
    border-color: transparent;
    cursor: pointer;
}

.custombutton-6 {
    padding: 2px 3px;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: var(--small-font-size);
    text-align: center;
    text-transform: uppercase;
    background-color: var(--red);
    border-color: transparent;
    cursor: pointer;
}

.button_carrello {
    width: 300px;
    position: relative;
    padding: 2px 5px;
    display: flex;
    align-items: flex-start;
    text-align: left;
    z-index: 1;
    max-height: 44px;
}

.button_carrello .dot {
    width: 23px;
    height: 23px;
    position: absolute;
    top: -11px;
    right: -11px;
    color: #5B6070;
    font-size: 10px;
    line-height: 23px;
    letter-spacing: 0.18px;
    background-color: #FFFFFF;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    box-shadow: 5px 6px 10px #9297AF45;
    text-align: center;
}

.button_carrello .label {
    color: #DBE1FF;
    font-size: 10px;
    line-height: 11px;
    letter-spacing: 0;
    position: absolute;
    top: -13px;
    font-weight: bold;
    color: var(--red);
    text-transform: uppercase;
}

.button_carrello .name {
    margin: 5px;
    color: #FFFFFF;
    font-weight: bold;
    font-size: var(--small-font-size);
    line-height: 16px;
    text-transform: none;
    overflow: hidden;
    letter-spacing: 0.4px;
    text-overflow: ellipsis;
}

.btn-cart-customer {
    max-height: 44px;
    overflow-y: hidden;
}

.button_backorder {
    width: auto;
    height: 44px;
    margin-left: 20px;
    padding: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: var(--small-font-size);
    font-weight: bold;
    text-transform: uppercase;
    background-color: var(--red);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    cursor: pointer;
}

.textbox-half {
    padding: 8px 10px;
    background-position-x: calc(100% - 12px);
    background-size: 20px;
    border: 2px solid var(--background-color);
    font-size: 12px;
    line-height: 17px;
    letter-spacing: 0.24px;
    width: 100%;
}

.button-nobg {
    padding: 8px 10px;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: var(--small-font-size);
    line-height: var(--small-line-height);
    letter-spacing: 0.7px;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
}

.custombutton.full {
    width: 100%;
    margin: 0 !important;
}

.custombutton.disabled,
.custombutton.altcolor {
    background-color: var(--lightgrey);
}

.view_products_related .custombutton.altcolor {
    line-height: 14px;
}

.custombutton.green {
    background-color: #99C244;
}

.custombutton.red,
.custombutton-full.red {
    background-color: #FA7F86;
}

.custombutton.cyan {
    background-color: #00a1a7;
}

.custombutton.darkred {
    background-color: var(--red);
}

.custombutton.orange {
    background-color: #ff7c00;
}

.custombutton.black {
    background-color: #000000;
}

.custombutton img {
    height: 14px;
    margin-right: 8px;
    vertical-align: middle;
}

.popup_new_customer .custombutton {
    max-width: 49%;
    padding: 10px 65px;
}

.custombutton.transparent {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #8990A4;
    background-color: transparent;
    border: 3px solid #8990A4;
}

.popup_new_customer .control .custombutton {
    margin-top: 60px;
}

.item-details {
    height: 32%;
    padding: 12px 0;
    display: flex;
    flex-flow: column;
    justify-content: center;
}

.textual_button {
    color: var(--grey);
    font-size: var(--standard-font-size);
    line-height: var(--standard-line-height);
    text-decoration: underline;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.textual_button.inline {
    margin-left: 20px;
    font-size: var(--small-font-size);
    letter-spacing: 0.7px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
}

.textual_button.blue {
    color: var(--blue);
}

.MenuBar {
    width: 123px;
    position: fixed;
    color: #FFFFFF;
    background-color: var(--darkgrey);
    z-index: 20;
}

.menu_button,
.MenuBar_icon {
    width: 50px;
    height: 100%;
    margin: 0;
    position: fixed;
    left: 0;
    right: unset;
    background-color: var(--darkestgrey);
    border-radius: 0;
    z-index: 10;
}

.menu_button::after,
.MenuBar_icon::after {
    content: '';
    width: 6px;
    height: 52px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 12px;
    bottom: 0;
    background-color: #7A818B;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

.MenuBar_items {
    margin: 50px 0 0 50px;
    display: flex;
    flex-direction: column;
    font-size: 10px;
    line-height: 14px;
    letter-spacing: 0.8px;
    text-align: center;
    height: calc(100% - 50px);
    overflow-y: scroll;
}

.MenuBar_item {
    min-height: 64px;
    display: flex;
    flex-flow: column;
    justify-content: space-evenly;
    align-items: center;
    position: relative;
    border-bottom: none;
    opacity: 50%;
}

.MenuBar_item.active {
    background-color: var(--darkestgrey);
    opacity: 100%;
}

.MenuBar_item.active::before {
    content: '';
    width: 3px;
    height: 100%;
    position: absolute;
    left: 0;
    background-color: #ffffff;
    -webkit-border-top-right-radius: 6px;
    -webkit-border-bottom-right-radius: 6px;
    -moz-border-radius-topright: 6px;
    -moz-border-radius-bottomright: 6px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.MenuBar_item img {
    width: 50%;
}

.subtitle {
    color: var(--grey);
    font-size: 12px;
    font-weight: bold;
    line-height: 17px;
    letter-spacing: 0.36px;
    text-transform: uppercase;
}

.login .subtitle {
    font-size: 18px;
    font-weight: normal;
    line-height: 28px;
    letter-spacing: 0;
    text-transform: none;
}

.login_app_version {
    position: absolute;
    right: 10px;
    bottom: 10px;
    font-size: 12px;
}

/* .title {
    color: var(--black);
    font-size: 16px;
    font-weight: bold;
    line-height: 22px;
} */

.breadcrumb {
    margin-top: 10px;
    color: var(--default-font-color);
    font-size: 16px;
    line-height: 22px;
}

.breadcrumb_label {
    margin-right: 10px;
}

.view_customers.detail .breadcrumb {
    display: flex;
    align-items: center;
    font-size: var(--small-font-size);
    line-height: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.view_customers.detail .breadcrumb .breadcrumbItem {
    white-space: nowrap;
    display: flex;
    align-items: center;
}

/* .details .breadcrumb {
    margin-top: 10px;
} */

.bigimage {
    width: 100%;
    height: 100%;
    flex-grow: 1;
    background-color: #FFFFFF;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.toolbar {
    width: auto;
    margin-left: 50px;
    padding: 0 28px;
    display: flex;
    justify-content: flex-end;
    background-color: #ffffff;
    align-items: flex-end;
}

.toolbar_insection {
    width: 100%;
    background-color: transparent;
}

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

.toolbar_filtri {
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: #ffffff;
}

.toolbar_filtri_btn {
    margin-left: 77px;
    width: auto;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 5px;
}

.toolbar_filtri_btn2 {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.view_customers.detail .toolbar {
    padding: 0;
    justify-content: flex-start;
    font-size: var(--small-font-size);
    line-height: var(--small-line-height);
    text-align: center;
    border-bottom: 1px solid rgba(56, 60, 83, 0.1);
}

.view_customers.product.detail .toolbar {
    padding: 0 50px;
    background-color: var(--alt-background-color);
}

.view_cart .toolbar {
    margin: 0;
    padding: 0;
    justify-content: flex-start;
    background: transparent;
    border-bottom: 1px solid rgba(56, 60, 83, 0.1);
}

.toolbar_button {
    width: 13%;
    min-width: 100px;
    height: 41px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-border-top-left-radius: 6px;
    -webkit-border-top-right-radius: 6px;
    -moz-border-radius-topleft: 6px;
    -moz-border-radius-topright: 6px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    cursor: pointer;
    font-size: var(--small-font-size);
    line-height: var(--small-line-height);
    text-align: center;
}

.view_customers.detail .toolbar_button {
    width: 13%;
    position: relative;
    background-color: transparent;
}

.view_customers.product.detail .toolbar_button {
    width: 18%;
}

.view_cart .toolbar_button {
    width: 20%;
}

.toolbar_button.selected {
    background-color: var(--alt-background-color);
}

.view_customers.detail .toolbar_button.selected {
    color: var(--red);
    background-color: transparent;
}

.view_cart .toolbar_button.selected {
    color: var(--red);
    background-color: #FFFFFF;
}

.view_customers.detail .toolbar_button.selected::before,
.view_cart .toolbar_button.selected::before {
    content: "";
    width: 100%;
    height: 6px;
    position: absolute;
    bottom: 0;
    background-color: var(--red);
    -webkit-border-top-left-radius: 6px;
    -webkit-border-top-right-radius: 6px;
    -moz-border-radius-topleft: 6px;
    -moz-border-radius-topright: 6px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.toolbar_button img {
    width: 25px;
    height: 25px;
}

.title {
    font-size: 30px;
    font-weight: bold;
    line-height: 25px;
}

.medium.title {
    font-size: 22px;
    font-weight: bold;
    line-height: 24px;
}

.profile_data {
    font-size: 16px;
}

.view_home .title {
    font-size: 30px;
    font-weight: bold;
    line-height: 25px;
}

.categorygrid .title {
    font-size: 16px;
    line-height: 22px;
}

.wrapper .title,
.view_documents .category-container.list .title,
.view_archive .category-container.list .title {
    font-size: 24px;
    line-height: 33px;
}

.login {
    height: 100%;
    padding: 5% 0;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: space-between;
    color: var(--default-font-color);
    background-color: var(--alt-background-color);
}

.controls {
    width: 45%;
    display: flex;
    flex-flow: column;
    align-items: center;
}

.controls>span,
.controls>input,
.controls>div {
    margin-bottom: 25px;
}

.container {
    width: 100%;
    /* height: 100%; */
    /*position: absolute;*/
    /* questo non va bene, si perde la dimensione corretta dei div */
    top: 0;
    right: 0;
}

.container2 {
    width: 100%;
    min-height: 100%;
    top: 0;
    right: 0;
    background-color: var(--background-color);
}

/*.container>div:not(.header):not(.header_container):not(.category-container):not(.wrapper):not(.custombutton):not(.page_content):not(.sidebar):not(.panel_background):not(.categorygrid) {
    display: grid;
    grid-template-columns: 32% 32% 32%;
    column-gap: 2%;
    row-gap: 3%;
    background-color: var(--background-color);
}*/

.containerFlex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.view_home .content {
    overflow: scroll;
}

.header_container {
    flex-flow: column;
}

.header {
    width: calc(100% - 50px);
    height: 114px;
    margin: auto;
    margin-right: 0;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    background-color: #ffffff;
}

.header.spaced {
    padding-left: 77px;
}

.view_orders .header .custombutton {
    right: 28px;
}

.header .custombutton img {
    height: 14px;
}

.header_buttons {
    display: flex;
}

.lowbar {
    width: 100%;
    height: 98px;
    margin: auto;
    margin-right: 0;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    background-color: var(--background-color);
}

.lowbar .title {
    font-size: 20px;
    line-height: 25px;
}

.lowbar .custombutton {
    padding: 10px 60px;
    font-size: var(--small-font-size);
    font-weight: bold;
    line-height: var(--small-line-height);
    letter-spacing: 0.7px;
    background-color: var(--lightgrey);
}

.lowbar .details {
    padding: 0;
    background: transparent;
    border: none;
}

.content {
    width: calc(100% - 50px);
    height: calc(100vh - 84px);
    margin: auto;
    margin-right: 0;
    padding: 24px 34px;
}

.content.single {
    height: calc(100vh - 155px - 28px);
    padding: 0;
    background-color: var(--background-color);
    overflow: scroll;
}

.view_orders .content {
    height: calc(100vh - 155px);
    flex-flow: column;
    -webkit-border-bottom-left-radius: 18px;
    -moz-border-radius-bottomleft: 18px;
    border-bottom-left-radius: 18px;
}

.categorygrid .content {
    height: unset;
    row-gap: 0 !important;
}

.slider-container {
    height: 100%;
    display: flex;
    overflow: scroll hidden;
}

.slider-container>div {
    min-width: calc(100vw - 50px);
    height: 100%;
    display: flex;
    flex-flow: column;
}

.box {
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
    background-color: #FFFFFF;
    background-position: center calc((100% - 46px) / 2);
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
}

.view_home {
    min-height: 100%;
    background-color: var(--background-color);
}

.view_home .box {
    min-height: 41vh;
}

.boxTop {
    background-position: top;
}

.box.big {
    grid-row: auto / span 2;
}

.image {
    height: 80%;
    flex-grow: 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.image_clickable {
    cursor: pointer;
}

.details {
    padding: 13px;
    display: flex;
    flex-flow: column;
    background-color: #FFFFFF;
    -webkit-border-top-right-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;
    -moz-border-radius-topright: 10px;
    -moz-border-radius-bottomright: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-left: 6px solid #484D67;
}

.view_orders .details {
    text-align: left;
}

.header .details {
    padding: 0;
    background-color: transparent;
    border: none;
}

.back_button {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 32px;
    left: 15px;
    cursor: pointer;
    background: url('../images/custom/arrow_left_black.svg') center center no-repeat;
    background-size: 40% 40%;
}

.category-container {
    width: calc(100% - 50px);
    min-height: calc(100vh - 114px);
    margin: auto;
    margin-right: 0;
    padding: 27px;
    background-color: var(--alt-background-color);
    -webkit-border-bottom-left-radius: 37px;
    -moz-border-radius-bottomleft: 37px;
    border-bottom-left-radius: 37px;
}

.view_seminars .category-container,
.view_documents .category-container,
.view_archive .category-container,
.view_product_details.category-container {
    min-height: unset;
}

.panel_background .category-container {
    height: calc(100vh - 114px);
    padding-bottom: 60px;

    overflow: scroll;
}

.category-container.slide {
    width: fit-content;
    margin-top: 15px;
    padding: 0;
    display: flex;
}

.category-container-2.slide {
    width: auto;
    margin: 0;
    margin-top: 15px;
}

.element.bubble {
    flex-shrink: 0;
}

.info-top_favoriteIcon {
    float: right;
    background-image: url(../images/custom/star.svg);
    background-size: 100% 100%;
    width: 20px;
    height: 20px;
}

.info-top_favoriteIcon-2 {
    background-image: url(../images/custom/star-empty.svg);
}

.category-container.grid {
    display: grid;
    grid-template-columns: 23% 23% 23% 23%;
    justify-content: space-between;
}

.view_products_related .category-container.grid {
    min-height: unset;
    grid-template-columns: 33% 33% 33%;
}

.category-container.grid> :last-child {
    margin-right: auto;
}

.button-container {
    display: flex;
}

.button-container input {
    padding: 10px 0;
    flex-grow: 1;
}

.button-container input:last-child:not(:first-child) {
    margin-left: 13px;
}

.category-container.map {
    height: calc(100vh - 155px);
    min-height: unset;
    padding: 0;
    align-items: flex-end;
    position: relative;
}

.category-container.map.nobar {
    height: calc(100vh - 155px);
}

.add_to_cart_popup .table-header {
    padding-right: 20px;
    grid-template-columns: 40px 12% 12% 12% 12% 12% 12% 119px;
    justify-content: space-between;
}

.add_to_cart_popup .table-header>div {
    margin: auto;
}

.add_to_cart_popup .table-header>div::after {
    display: none;
}

.table-cart {
    display: table;
    width: 100%;
}

.view_cart .table-header {
    padding: 10px 16px;
    display: table-row;
}

.view_cart .table-header>div {
    display: table-cell;
    padding: 10px;
}

.view_cart.order_detail .table-header {
    grid-template-columns: 20px 40% 12% 8% 8% 8% 12%;
}

.view_orders .table-header {
    display: table-row;
}

.view_orders .table-header>div {
    display: table-cell;
    padding: 10px;
}

.view_customers.detail .table-header {
    grid-template-columns: 20% 20% 20% 20% 12%;
    align-items: center;
}

.view_seminars .table-header {
    grid-template-columns: 36% 12% 48%;
}

.view_documents .table-header {
    padding: 10px 20px;
    grid-template-columns: 60% 10% 15% 10%;
}

.table-header div {
    width: fit-content;
    position: relative;
    cursor: pointer;
    font-size: var(--small-font-size);
    line-height: 16px;
}

.view_customer_detail_content_info .table-header div::after,
.view_cart .table-header div::after {
    display: none;
}

.table-header div.desc::after,
.table-default-header th.desc::after {
    transform: rotate(180deg);
}

.table-header div.nobg::after {
    background-image: none;
}

.element {
    margin: auto;
    padding: 20px;
    padding-right: 60px;
    position: relative;
    display: grid;
    grid-template-columns: 12% 46% 12% 12% 10%;
    color: var(--grey);
    font-size: var(--small-font-size);
    line-height: var(--small-line-height);
    letter-spacing: 0.28px;
    background-color: #FFFFFF;
    background-image: url(../images/custom/arrow_right_grey.svg);
    background-position: center right;
    background-position-x: calc(100% - 20px);
    background-repeat: no-repeat;
    background-size: 12px 14px;
    box-shadow: var(--standard-box-shadow);
    cursor: pointer;
}

.element-2 {
    margin-left: 0;
}

.element-noArrow {
    background-image: unset;
}

.element-variants {
    margin: auto;
    padding: 20px;
    padding-right: 60px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(9, 11%);
    color: var(--grey);
    font-size: var(--small-font-size);
    line-height: var(--small-line-height);
    letter-spacing: 0.28px;
    background-color: #FFFFFF;
    background-image: url(../images/custom/arrow_right_grey.svg);
    background-position: center right;
    background-position-x: calc(100% - 20px);
    background-repeat: no-repeat;
    background-size: 12px 14px;
    box-shadow: var(--standard-box-shadow);
    cursor: pointer;
}

.element>div,
.element-variants>div {
    text-overflow: ellipsis;
    overflow: hidden;
}

.view_customers.detail .element {
    grid-template-columns: 20% 20% 20% 20% 12%;
    justify-content: space-between;
    align-items: center;
}

.view_product_detail_content_documents .element {
    grid-template-columns: 50px calc(100% - 70px);
}

.view_notifications .element {
    margin-bottom: 2px;
    display: block;
}

.view_seminars .element {
    grid-template-columns: 36% 12% 48%;
    justify-content: space-between;
}

.view_customers.detail .view_product_variants .element {
    padding-right: 20px;
    grid-template-columns: 40px 25% 6% 7% 10% 10% 10% 7% 120px;
    justify-content: space-between;
    text-align: center;
    background-image: none;
    cursor: default;
}

.view_customers.detail .view_product_variants .element.lowered {
    grid-template-columns: 40px 31% 7% 10% 10% 10% 7% 120px;
}

.view_customers.detail .view_product_variants .element.campaign {
    grid-template-columns: 40px 50% 10% 8% 8% 10%;
}

.view_customers.detail .view_product_variants .element .custombutton {
    margin-left: 0;
    padding: 10px;
}

.view_documents .element,
.view_archive .element {
    padding-right: 20px;
    flex-flow: row;
    grid-template-columns: 60% 10% 15% 10%;
    background-image: none;
    border-left: none;
}

.element.alt {
    background-color: #F8F9FB;
}

.element .black,
.element-variants .black {
    color: var(--default-font-color);
}

.element.first {
    /* no style */
}

.element:last-child {
    /* no style */
}

.category-container.grid .element {
    width: 220px;
    margin-bottom: 28px;
    flex-flow: column;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}

.category-container.list .element {
    width: 100%;
    margin-bottom: 2px;
    justify-content: space-between;
    align-items: center;
}

.view_orders .category-container.list .element {
    display: table-row;
}

.view_orders .category-container.list .element>div {
    display: table-cell;
    padding: 10px;
}

.view_documents .category-container.list .element,
.view_archive .category-container.list .element {
    margin-bottom: 0;
    align-items: center;
}

.view_cart .category-container.list .element {
    padding: 16px;
    display: table-row;
    /* display: flex; */
    background-image: none;
    cursor: default;
}

.view_cart .category-container.list .element>div {
    display: table-cell;
    padding: 10px;
}

.view_cart.order_detail .category-container.list .element {
    grid-template-columns: 20px 40% 12% 8% 8% 8% 12%;
}

.view_cart .category-container.list .element.campaign_ko {
    background: transparent linear-gradient(180deg, #FFFFFF 0%, #FFDFE1 100%) 0% 0% no-repeat padding-box;
}

.view_cart .category-container.list .element.campaign_ko .total {
    color: #F8B4B8;
}

.view_cart .category-container.list .element>div:not(.reload_btn):not(.deleterow_btn):not(.info_btn):not(.image):not(.notes_btn) {
    width: fit-content;
    margin: auto 0;
}

.add_to_cart_popup .category-container.list .element {
    padding-right: 20px;
    grid-template-columns: 40px 12% 12% 12% 12% 12% 12% 119px;
    background-image: none;
}

.reload_btn,
.info_btn,
.deleterow_btn,
.notes_btn {
    width: 23px;
    height: 23px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.reload_btn {
    background-color: var(--lightgrey);
    background-image: url(../images/custom/reload.svg);
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}

.reload_btn.active {
    background-color: var(--darkgrey);
    cursor: pointer;
}

.info_btn {
    background-image: url(../images/custom/info_grey.svg);
}

.notes_btn {
    background-image: url(../images/custom/notes.svg);
}

.campaign_ko .info_btn {
    background-image: url(../images/custom/info_red.svg);
}

.deleterow_btn {
    width: 20px;
    height: 20px;
    margin: 0 5px;
    background-image: url(../images/custom/close_red.svg);
    background-size: contain;
}

.deleterow_btn2 {
    margin: 7px;
}

.black.double {
    display: flex;
    flex-flow: column;
}

.view_customers.detail .view_product_variants .element .black.double {
    align-items: flex-start;
    text-align: left;
}

.variants_buttons_line {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    align-items: flex-start;
}

.variants_filter {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.variants_filter_text {
    width: 100px;
}

.variants_filter_fields {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.variants_filter_btns {
    display: flex;
}

.variants_utility {
    display: flex;
    width: 430px;
    justify-content: flex-end;
    align-items: center;
}

.variants_discount_text {
    width: 80px;
    display: flex;
    align-items: center;
    font-size: var(--small-font-size);
}

.variants_discount_input {
    padding: 8px 10px;
    background-position-x: calc(100% - 12px);
    background-size: 20px;
    border: 2px solid var(--background-color);
}

.variants_btn_addall {
    margin-left: 0px;
}

.variants_btn_setdiscount {
    width: 145px;
    padding: 10px 10px;
}

.variant_in_cart {
    background-color: #4cd84c;
    padding: 2px;
    height: 20px;
    border-radius: 2px;
    position: absolute;
    left: -10px;
}

.variant_table_filter {
    width: 100px;
    height: 37px;
    border: 2px solid var(--background-color);
    background-color: #ffffff;
}

.variant_table_filter>option:disabled {
    color: #ccc;
}

.small {
    font-size: 12px;
    line-height: 17px;
    letter-spacing: 0.24px;
}

.campaign_popup .small {
    font-size: var(--small-font-size);
    line-height: var(--small-line-height);
    letter-spacing: 0.28px;
}

.kitlabel {
    height: 22px;
    padding: 0 12px;
    position: absolute;
    top: 18px;
    left: 20px;
    color: #FFFFFF;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0.45px;
    text-transform: uppercase;
    background-color: #A6E1CF;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
}

.more {
    width: 30px;
    height: 100%;
    margin: 0 auto;
    margin-right: 0;
    background-image: url(../images/custom/more.svg);
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.businesscard .more {
    height: 30px;
    position: absolute;
    top: 20px;
    right: 20px;
}

.file-overview {
    display: flex;
    align-items: center;
}

.ext {
    height: fit-content;
    padding: 12px;
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    background-color: var(--background-color);
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    border-radius: 9px;
}

.view_customers.detail .ext {
    width: fit-content;
}

.view_product_detail_content_documents .ext {
    padding: 10px 12px;
    line-height: 8px;
}

.ext.pdf {
    color: #FA7F86;
}

.ext.xls,
.ext.xlsx {
    color: #A5D899;
}

.ext.doc,
.ext.docx,
.ext.vid {
    color: #6E86FE;
}

.ext.jpg,
.ext.png {
    color: #FEC46E;
}

.separator {
    width: 1px;
    height: 16px;
    margin: 0 15px;
    background-color: var(--lightgrey);
}

.separator.arrow {
    width: 8px;
    margin: 0 5px;
    background-color: transparent;
    background-image: url(../images/custom/arrow_right_grey.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 8px 8px;
}

.half {
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    row-gap: 40px;
}

.half>div:not(.fullwidth) {
    width: 49%;
}

.businesscard {
    min-height: calc(100% - 53px);
    margin-top: 5px;
    padding: 20px;
    position: relative;
    color: var(--default-font-color);
    font-size: var(--small-font-size);
    line-height: var(--small-line-height);
    letter-spacing: 0.28px;
    background-color: #FFFFFF;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    box-shadow: 14px 19px 32px #30478A1F;
}

.businesscard .columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.businesscard .columns>div {
    width: 49%;
}

.flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.businesscard .name {
    font-size: 16px;
    line-height: 22px;
}

.businesscard .business-title {
    color: #7A86AC;
}

.businesscard .tel,
.businesscard .mail,
.businesscard .address {
    margin: 15px 0;
    padding-left: 25px;
    position: relative;
}

.businesscard .tel::before,
.businesscard .mail::before,
.businesscard .address::before {
    content: '';
    width: 15px;
    height: 15px;
    position: absolute;
    top: 3px;
    left: 0;
    background-image: url(../images/custom/telephone.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.businesscard .mail::before {
    background-image: url(../images/custom/mail.svg);
}

.businesscard .address::before {
    background-image: url(../images/custom/pin.svg);
}

.infodata {
    margin-top: 15px;
    min-height: 34px;
}

.infodata>div {
    background-color: #fafafa;
    padding: 2px 0px;
    user-select: text;
}

.infodata>div:first-child {
    font-size: var(--small-font-size);
    background-color: #ffffff;
}

.filename {
    margin: 0 15px;
}

.favorite {
    width: 20px;
    height: 20px;
    background-image: url(../images/custom/star-empty.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.favorite.full {
    background-image: url(../images/custom/star.svg);
}

.bubble .favorite {
    position: absolute;
    right: 17px;
}

.category-container.list .element .buy {
    min-width: 260px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-end;
}

.price {
    margin-bottom: 10px;
    color: var(--default-font-color);
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.32px;
}

.small.title {
    margin-top: 25px;
    font-size: 16px;
    line-height: 22px;
}

.item-details .small.title,
.item-details .small.subtitle {
    margin: 0;
}

.view_customer_detail_content_orders .small.title,
.customer-stats-container.list .small.title {
    margin-top: 0;
}

.details .small.title {
    margin-top: 0;
    font-size: 20px;
    line-height: 27px;
}

.small.subtitle {
    margin-bottom: 20px;
    letter-spacing: 0;
    text-transform: none;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    line-height: 25px;
}

.details .small.subtitle {
    margin-bottom: 0;
    font-size: var(--small-font-size);
    line-height: 20px;
}

.image {
    background-color: #FFFFFF;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.category-container.grid .element .image {
    width: 100%;
    height: 170px;
}

.category-container.list .element .image {
    width: 80px;
    height: 80px;
}

.category-container.list .element .image.noshrink {
    min-width: 80px;
}

.view_cart .element .image {
    max-width: 40px;
    max-height: 40px;
    flex-grow: 0;
}

.add_to_cart_popup .category-container.list .element .image {
    width: 100%;
    height: 100%;
}

.qty {
    padding: 5px 5px;
    color: #5B6070;
    background-color: var(--background-color);
}

.qty {
    width: 100% !important;
    text-align: center;
}

.quantity_control {
    position: relative;
    text-align: center;
    overflow: visible !important;
}

.quantity_control img.quantity_edit_img {
    height: 12px;
    width: 12px;
}

.quantity_control .quantity_edit_ctrl_sx {
    display: none;
    position: absolute;
    right: calc(50% + 15px);
    top: calc(50% - 20px);
    background-color: #ebebeb;
    z-index: 999;
}

.quantity_control .quantity_edit_ctrl_dx {
    display: none;
    position: absolute;
    left: calc(50% + 15px);
    top: calc(50% - 20px);
    background-color: #ebebeb;
    z-index: 999;
}

.quantity_control:hover .quantity_edit_ctrl_sx,
.quantity_control:hover .quantity_edit_ctrl_dx {
    display: flex;
}

.quantity_control .quantity_edit_ctrl {
    padding: 10px;
    margin: 2px;
    background-color: var(--red);
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    height: 35px;
}

.display_label {
    width: 50px;
    margin: 0 5px;
    padding: 0px;
    color: #5B6070;
    text-align: center;
    background-color: #FFF;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.view_cart .display_label {
    width: 35px;
}

.button-fullscreen {
    width: 26px;
    height: 26px;
    position: absolute;
    top: 15px;
    right: 20px;
    background-image: url(../images/custom/fullscreen.svg);
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
}

/* .custombutton:not(.altcolor):not(.transparent):not(.radio) {
    margin-left: 13px;
} */

.table-orders {
    display: table;
    width: 100%;
}

.view_orders .element .custombutton:not(.altcolor):not(.transparent):not(.radio) {
    margin: 0;
    padding: 5px;
    z-index: 1;
    font-size: 10px;
}

.popup .custombutton:not(.altcolor):not(.transparent):not(.radio):not(.spaced) {
    margin-left: 0;
}

.alert_popup_container.add_to_cart_popup .custombutton {
    width: 100%;
    margin: 0 !important;
    padding: 10px;
    display: flex;
    align-items: center;
}

.alert_popup_container.add_to_cart_popup .custombutton img {
    margin: 0;
}

.custombutton.double {
    padding: 0;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* .custombutton.double::before {
    content: "";
    width: 2px;
    height: 100%;
    position: absolute;
    right: 130px;
    background-color: var(--background-color);
    opacity: 0.22;
} */

.custombutton.double> :first-child {
    padding: 11px;
    display: flex;
    flex-flow: column;
    text-align: left;
    border-right: 2px solid rgb(237, 239, 245, 0.22);
}

.custombutton.double> :first-child .label {
    color: #DBE1FF;
    font-size: 9px;
    line-height: 11px;
    letter-spacing: 0;
}

.custombutton.double> :first-child .name {
    max-width: 180px;
    margin: 0;
    color: #FFFFFF;
    font-weight: bold;
    font-size: var(--small-font-size);
    line-height: 20px;
    text-transform: none;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.custombutton.double> :last-child {
    padding: 11px;
    font-size: var(--small-font-size);
    font-weight: bold;
    line-height: var(--small-line-height);
}

.custombutton.double img {
    height: 16px;
    vertical-align: sub;
}

.filters_screen {
    width: 100%;
    height: 100%;
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    background-color: transparent !important;
    z-index: 10;

    -webkit-transition: width 0.5s ease-in-out;
    -moz-transition: width 0.5s ease-in-out;
    -o-transition: width 0.5s ease-in-out;
    transition: width 0.5s ease-in-out;
}

.filters_screen.notshown {
    width: 0;
}

.filters_container {
    width: 280px;
    height: 100%;
    margin-left: 50px;
    padding-top: 70px;
    position: relative;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 22px;
    background-color: var(--darkgrey) !important;

    -webkit-transition: margin 0.5s ease-in-out;
    -moz-transition: margin 0.5s ease-in-out;
    -o-transition: margin 0.5s ease-in-out;
    transition: margin 0.5s ease-in-out;
}

.filters_container span :not(.filter_button) {
    padding: 0 27px;
    font-weight: bold;
    font-size: 22px;
    line-height: 30px;
    opacity: 0.5;
}

.filters_container .slider>div:first-child {
    display: flex;
    justify-content: space-between;
}

.filters_container .slider span {
    padding: 0;
    font-size: 12px;
    line-height: 20px;
    opacity: 1;
}

.filters_container>span:first-child {
    padding: 0 27px;
    font-weight: bold;
    font-size: 20px;
    line-height: 33px;
}

.filters_container.notshown {
    margin-left: -280px;
}

.filters_blank {
    flex-grow: 1;
}

.filter_button {
    width: 48%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(185, 194, 207, 0.85);
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    background-color: transparent;
    border: 3px solid rgba(185, 194, 207, 0.45);
    border-radius: 10px;
    -webkit-appearance: none;
}

.filter_button.confirm {
    /*color: #ffffff;
    border: 3px solid var(--lightblue);*/
}

.filters_container .category {
    height: 52px;
    padding: 0 27px;
    line-height: 50px;
    background-image: url(../images/custom/arrow_down.svg);
    background-position: center right;
    background-position-x: calc(100% - 27px);
    background-repeat: no-repeat;
    background-size: 12px;
    cursor: pointer;
}

.filters_container .category.uncollapsed {
    background-image: url(../images/custom/arrow_up.svg);
}

.filters_container .category-2 {
    background-image: none !important;
}

.filters_container .category.sub {
    height: 28px;
    padding-left: 40px;
    line-height: 28px;
    background-image: url(../images/custom/arrow_right.svg);
    background-size: 10px 10px !important;
}

.filters_container .category.selected {
    background-image: url(../images/custom/arrow_right_darkgrey.svg);
    background-size: 14px 14px;
    font-weight: bold;
}

.filters_container .category.bottom {
    width: 100%;
    height: 81px;
    position: absolute;
    bottom: 0;
    line-height: 80px;
    background-color: var(--darkestgrey);
    background-image: url(../images/custom/arrow_up.svg);
}

.filters_container .category.bottom.open {
    height: auto;
    background-image: url(../images/custom/arrow_down.svg);
    background-position: top right;
    background-position-x: calc(100% - 27px);
    background-position-y: 36px;
}

/* .filters_container .category.bottom.open p {
    height: 81px;
    line-height: 44px;
} */

.filters_container input[type=text],
.filters_container select {
    width: calc(100% - 54px);
    height: 40px;
    margin: 15px 27px;
    color: #FFFFFF;
    background-color: var(--darkgrey);
    background-image: url(../images/custom/search.svg);
    background-position: center right;
    background-position-x: calc(100% - 8px);
    background-repeat: no-repeat;
    background-size: 16px;
    border: 2px solid rgba(185, 194, 207, 0.45);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-appearance: none;
}

.filters_container input[type=text],
.filters_container select option {
    color: #ffffff;
}

.filters_container input[type=range] {
    width: 100%;
    height: 6px;
    background-color: #E8E8E8;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    /* overflow: hidden; */
    -webkit-appearance: none;
}

.filters_container input[type='range']::-webkit-slider-runnable-track {
    height: 10px;
    -webkit-appearance: none;
    color: var(--blue);
    margin-top: -1px;
}

.filters_container input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 16px;
    width: 16px;
    margin-top: -3px;
    background-color: var(--blue);
    border-radius: 50%;
    cursor: ew-resize;
    /* box-shadow: -200px 0 0 200px #43e5f7; */
}

.filters_container input[type=range]::-moz-range-thumb {
    height: 16px;
    width: 16px;
    margin-top: -3px;
    background-color: var(--blue);
    border-radius: 50%;
    cursor: pointer;
}

.filters_container select {
    padding: 0 10px;
    font-size: 16px;
    line-height: 21px;
    background-image: url(../images/custom/arrow_down.svg);
    background-size: 12px;
}

.filters_container input[type=text] {
    padding: 0 10px;
    font-size: 16px;
    line-height: 21px;
}

.filters_container input[type=text]::placeholder,
.filters_container select::placeholder {
    color: rgba(185, 194, 207, 0.45);
    font-family: 'RobotoItalic';
}

.filters_container .scroll {
    height: calc(100% - 81px);
    padding-bottom: 100px;
    overflow: scroll;
}

.filters_more {
    width: 100%;
    position: absolute;
    bottom: 0;
    line-height: 80px;
    background-color: #484D67;
}

.filters-recap {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    color: #484D67;
    font-size: var(--small-font-size);
    line-height: var(--small-line-height);
}

.filters-recap .filter {
    margin-left: 10px;
    padding: 4px 10px;
    display: flex;
    align-items: center;
    color: #CCCEDC;
    background-color: #838AAF;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}

.filters-recap .filter img {
    width: 8px;
    height: 10px;
    margin: 0 5px;
    vertical-align: middle;
}

.filters-recap .filter span {
    color: #FFFFFF;
}

.filters-recap .remove {
    width: 12px;
    height: 12px;
    margin-left: 10px;
    background-image: url(../images/custom/close.svg);
    background-size: contain;
    cursor: pointer;
}

.control-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.control {
    margin-bottom: 20px;
    line-height: initial;
}

.control-pad {
    padding: 0px 25px;
}

.control label {
    font-size: 12px;
    line-height: 20px;
}

.main_popup {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

.popup_new_customer .control {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    flex-flow: column;
    text-align: left;
}

.main_popup .control.quarter {
    width: 25%;
    margin-left: 1%;
}

.main_popup .control.half {
    width: 49.5%;
}

.main_popup .control.thirdx2 {
    width: 66%;
}

.main_popup .control.third {
    width: 32.5%;
}

.main_popup .control .container {
    display: flex;
    justify-content: space-between;
}

.popup_new_customer .control label {
    margin-bottom: 5px;
    color: #000000;
    font-size: 12px;
    line-height: 17px;
}

.control input[type=text],
.control select {
    width: 100%;
    margin: 0;
}

.control input[type=text] {
    background-image: none;
}

.control button {
    width: 48%;
    height: 40px;
    color: rgba(185, 194, 207, 0.85);
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    background-color: transparent;
    border: 3px solid rgba(185, 194, 207, 0.45);
    border-radius: 10px;
    -webkit-appearance: none;
}

.control button.confirm {
    color: var(--blue);
    border: 3px solid rgba(110, 134, 254, 0.7);
}

.flex {
    display: flex;
    justify-content: space-between;
}

.profile_data .flex {
    margin-top: 20px;
    justify-content: unset;
}

option:first {
    color: #8B90AE;
}

.checkboxContainer {
    margin-bottom: 10px;
}

.fakecheckbox {
    width: 25px;
    height: 25px;
    background-color: transparent;
    border: 2px solid rgba(185, 194, 207, 0.45);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    box-shadow: none;
}

.fakecheckbox .selection {
    background-size: 70%;
}

.checkbox span {
    padding: 0;
    font-size: 16px;
    line-height: 20px;
    opacity: 1;
}

.wrapper {
    overflow: scroll;
}

.customers-container {
    width: fit-content;
    display: flex;
}

.view_customers .customers-container {
    width: 100%;
    height: 160px;
    position: relative;
}

.bubble {
    width: 405px;
    margin-right: 20px;
    margin-bottom: 25px;
    padding: 20px 17px;
    display: flex;
    flex-flow: column;
    color: var(--grey);
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.32px;
    background-color: #FFFFFF;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border-left: 9px solid #484D67;
    box-shadow: 8px 13px 13px #6C758152;
}

.bubble:first-child {
    margin-left: 29px;
}

.view_customers .bubble {
    width: 400px;
    margin: auto;
    padding: 0;
    flex-flow: row;
    position: absolute;
    left: 0;
    top: 0px;
    right: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 1s;
}

.view_customers .bubble.visible {
    opacity: 1;
}

.view_customers .bubble>div:first-child {
    width: calc(100% - 60px);
    padding: 20px 17px;
    display: flex;
    flex-flow: column;
}

.view_customers .bubble>div:last-child {
    display: flex;
    flex-flow: column;
}

.view_customers .bubble>div:last-child .custombutton {
    width: 60px;
    height: 50%;
    margin: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px;
    border-radius: 0;
}

.view_customers .bubble>div:last-child .custombutton:first-child {
    background-color: var(--darkgrey);
    background-image: url(../images/custom/pin-white.svg);
}

.view_customers .bubble>div:last-child .custombutton:last-child {
    height: 100%;
    background-image: url(../images/custom/detail.svg);
}

.view_customers .bubble>div:last-child .custombutton.navigation:last-child {
    height: 100%;
    padding: unset;
    background-image: url(../images/custom/navigation.svg);
}

.view_documents .bubble:first-child,
.view_archive .bubble:first-child {
    margin-left: 0;
}

.view_documents .bubble:last-child,
.view_archive .bubble:last-child {
    margin-right: 27px;
}

.bubble .name {
    display: flex;
    align-items: center;
    color: var(--default-font-color);
    font-size: 20px;
    line-height: 27px;
    letter-spacing: 0.4px;
}

.bubble .name>span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bubble .code {
    color: #858C9F;
}

.bubble .full {
    display: flex;
    justify-content: space-between;
}

.bubble .info {
    margin-left: 10px;
    flex-grow: 1;
    font-size: 12px;
    line-height: 18px;
}

.bubble .info .info-top {
    margin-bottom: 10px;
}

.light {
    width: 14px;
    height: 14px;
    margin-left: 9px;
    background-color: #A5D899;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.light.small {
    width: 10px;
    min-width: 10px;
    height: 10px;
    margin-left: 7px;
}

.light.red {
    background-color: #FC727A;
}

.pin,
.gmaps-label,
.gm-style-iw.gm-style-iw-c {
    padding: 8px 13px !important;
    display: flex;
    align-items: center;
    position: absolute;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.32px;
    background-color: #484D67;
    -webkit-border-radius: 37px;
    -moz-border-radius: 37px;
    border-radius: 37px;
    box-shadow: 5px 7px 16px #57557447;
    overflow: visible;
}

.pin::after,
.gmaps-label::after,
.gm-style-iw.gm-style-iw-c::after,
.gm-style .gm-style-iw-t::after {
    /* content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: calc(100% - 1px);
    left: calc(50% - 16px);
    border-top: 12px solid #484D67;
    border-right: 16px solid transparent;
    border-left: 16px solid transparent; */
    background: linear-gradient(45deg, #484D64 50%, rgba(255, 255, 255, 0) 51%, rgba(255, 255, 255, 0) 100%);
}

.gm-ui-hover-effect {
    top: -15px !important;
    right: -15px !important;
    background: white !important;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    opacity: .9;
}

.status {
    width: fit-content;
    padding: 3px 12px;
    color: #FFFFFF;
    font-size: 9px;
    line-height: 20px;
    letter-spacing: 0.45px;
    text-transform: uppercase;
    background-color: #8CC120;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
}

.view_notifications .status {
    margin-bottom: 10px;
}

.status.red {
    background-color: #FC727A;
}

.status.orange {
    background-color: #F9AF67;
}

.status.lighblue {
    background-color: #67c3f9;
}

.status.cyan {
    background-color: #085ec1;
}

.status.grey {
    background-color: var(--lightgrey);
}

.filters_more_full .status {}

.year {
    height: 50px;
    font-size: 22px;
    background-image: url(../images/custom/arrow_up_black.svg);
    background-position: center right;
    background-position-x: calc(100% - 20px);
    background-repeat: no-repeat;
}

.year.collapsed {
    background-image: url(../images/custom/arrow_down_black.svg);
}

.seminar {
    margin-bottom: 50px;
}

.collapsed.seminars-list {
    display: none;
}

.name {
    margin: 5px 0;
    color: var(--darkgrey);
    font-weight: bold;
    font-size: 18px;
    line-height: 25px;
}

.date {
    color: #AAB0C1;
    font-size: 11px;
    line-height: 16px;
}

.description {
    color: #858C9F;
    font-size: 12px;
    line-height: 16px;
}

.view_seminars .description {
    margin: 12px 0;
}

.wrapper_title {
    padding: 5px 27px 0px 77px;
    background-color: var(--alt-background-color) !important;
    display: block !important;
    height: 20px;
    font-size: 24px;
    height: 40px;
    line-height: 33px;
    font-weight: bold;
}

.wrapper {
    margin-left: 50px;
    padding: 0px 27px 27px 27px;
    display: flex;
    flex-flow: column;
    background-color: var(--alt-background-color) !important;
    overflow: scroll;
}

.view_customers_wrapper {
    width: 422px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent !important;
    z-index: 10;
    position: absolute;
    bottom: 0px;
    right: 0px;
}

.background {
    height: 100vh;
    display: flex;
    flex-flow: column;
    justify-content: center;
    padding-top: 0px;
    align-items: center;
    background-color: rgba(56, 60, 83, 0.75);
    overflow: auto;
}

.popup_fullscreen_image {
    z-index: 999;
}

.popup_fullscreen_image .background {
    justify-content: center;
}

.popup {
    width: 50%;
    padding: 50px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.32px;
    text-align: center;
    background-color: var(--alt-background-color);
    border-radius: 2px;
    box-shadow: 14px 19px 32px #30478A1F;
}

.popup_new_customer .popup {
    height: calc(100vh - 40px);
    overflow: scroll;
    margin-top: 20px;
    justify-content: flex-start;
}

.popup_new_order .popup {
    max-height: calc(100vh - 20px);
    overflow-y: scroll;
    overflow-x: hidden;
    margin-top: 10px;
}

.popup_new_order .popup>* {
    min-height: fit-content;
}

.popup_kit {
    width: 100%;
    margin-top: 20px;
}

.label_contract_desc {
    font-size: 12px;
    ;
}

.popup_fullscreen_image .popup {
    width: fit-content;
    height: auto;
    padding: 20px;
}

.popup_fullscreen_video .popup {
    width: fit-content;
    padding: 20px;
}

.popup_fullscreen_video .popup iframe {
    width: 90vw;
    height: 51vw;
}

.campaign_popup .popup {
    width: 70%;
    align-items: flex-start;
    flex-flow: row;
}

.campaign_popup .popup.red {
    border: 2px solid #FC525C;
}

.popup img {
    width: 52px;
}

.popup_fullscreen_image .popup img,
.popup_fullscreen_video .popup img {
    width: auto;
    max-width: 90vw;
    max-height: 82vh;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    border-radius: 14px;
}

.campaign_popup .popup .image {
    width: 185px;
    min-width: 185px;
    height: 200px;
    margin-right: 40px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    box-shadow: 14px 19px 32px #30478A1F;
}

.campaign_popup .popup div:last-child {
    text-align: left;
}

.result {
    font-size: 25px;
    line-height: 36px;
    letter-spacing: 0.5px;
}

.success {
    color: var(--red);
}

.background .button {
    width: 60%;
}

.main_popup .custombutton {
    width: 100%;
    padding: 10px 65px;
}

.main_popup .view_customers.detail .custombutton:not(.radio):not(.full) {
    width: fit-content;
    padding: 10px 23px;
}

.main_popup .confirm .custombutton:not(.radio):not(.full) {
    width: 32% !important;
}

.closebutton {
    width: 50%;
    margin-bottom: 16px;
    display: flex;
    justify-content: flex-end;
}

.campaign_popup .closebutton {
    width: 70%;
}

.campaign_desc {
    margin-top: 40px;
}

.campaign_desc .big {
    font-size: 20px;
    letter-spacing: 0.4px;
}

.close_popup_button {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
    cursor: pointer;
    position: absolute;
    right: 40px;
    top: 20px;
}

.popup_new_order .close_popup_button {
    margin-left: calc(50% - 25px);
}

.popup_fullscreen_image .close_popup_button,
.popup_fullscreen_video .close_popup_button {
    margin-left: calc(100% - 25px);
}

.main_popup .title {
    align-self: flex-start;
    font-size: 24px;
    line-height: 33px;
}

.main_popup .title.spaced {
    margin-bottom: 20px;
}

.main_popup .popup_new_order .title,
.main_popup .alert_popup .title:not(.left) {
    align-self: center;
}

.main_popup .control {
    width: 100%;
    margin-bottom: 10px;
    display: flex;
    flex-flow: column;
    text-align: left;
}

.main_popup .control .container {
    display: flex;
    justify-content: space-between;
    position: relative;
    background-color: unset;
}

.main_popup .control label {
    margin-bottom: 5px;
    color: #000000;
    font-size: 12px;
    line-height: 17px;
    text-wrap-mode: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.main_popup .control input,
.main_popup .control select,
.main_popup .control textarea {
    height: 40px;
    padding: 0 10px;
    font-size: var(--small-font-size);
    background-color: #FFFFFF;
    border: 3px solid var(--background-color);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-appearance: none;
}

.textfield {
    height: 200px;
    width: 100%;
    padding: 5px 10px;
    font-size: var(--small-font-size);
    background-color: #FFFFFF;
    border: 3px solid var(--background-color);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-appearance: none;
}

.main_popup .control input:disabled,
.main_popup .control select:disabled,
.main_popup .control textarea:disabled {
    background-color: #ebebeb;
}

.main_popup .control select {
    background-image: url(../images/custom/arrow_down_grey.svg);
    background-position: center right;
    background-position-x: calc(100% - 8px);
    background-repeat: no-repeat;
    background-size: 12px;
}

.main_popup .control select.plain {
    height: 20px;
    padding: 0;
    padding-left: 2px;
    background-color: transparent;
    background-image: url(../images/custom/arrow_down_black.svg);
    background-position-x: 100%;
    border: none;
}

.main_popup .control textarea {
    height: 87px;
    padding: 10px;
    resize: none;
}

.main_popup .control input::placeholder,
.main_popup .control select::placeholder,
.main_popup .control textarea::placeholder {
    color: var(--lightgrey);
    font-size: var(--small-font-size);
}

.main_popup .radio {
    width: 30%;
    height: 40px;
    margin: 0;
    padding: 10px 0;
    color: #484D67;
    text-transform: none;
    background-color: #E0E2EE;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.main_popup .container.less .radio {
    width: 48%;
}

.main_popup .radio.selected {
    color: #FFFFFF;
    background-color: #484D67;
}

.steps-container {
    width: 100%;
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(5, 20%);
    align-items: center;
    justify-content: space-between;
}

.step {
    width: auto;
    min-height: 35px;
    margin: 0 2px;
    color: #FFFFFF;
    font-size: 10px;
    line-height: 12px;
    background-color: #8990A4;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 4px;
    padding: 0px 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
}

.step.selected {
    /* font-size: 8px; */
    background-color: var(--red);
}

.section-title {
    width: 100%;
    margin-bottom: 10px;
    color: var(--default-font-color);
    font-size: 16px;
    line-height: 26px;
    text-align: left;
}

.section-title.spaced {
    margin-top: 20px;
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.nav-container input {
    width: 48%;
}

.fields-container {
    width: 100%;
    display: none;
}

.fields-container.visible {
    display: inline-block;
}

.contact-data-container {
    display: none;
}

.contact-data-container.shown {
    display: block;
}

.overview {
    width: calc(100% - 50px);
    /* max-height: 350px; */
    margin: auto;
    margin-right: 0;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    background-color: var(--alt-background-color);
}

.overview .image {
    width: 200px;
    position: relative;
    box-shadow: 14px 19px 32px #30478A1F;
}

.overview .image:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.overview .image .fullscreen {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.overview .info {
    margin-left: 35px;
    display: flex;
    flex-flow: column;
    flex-grow: 1;
}

.overview .info .title {
    font-size: 20px;
    line-height: 27px;
}

.overview .info .subtitle {
    margin-top: 7px;
    margin-bottom: 25px;
    font-size: var(--small-font-size);
    line-height: var(--small-line-height);
    text-transform: none;
}

.overview .info .description {
    font-size: var(--small-font-size);
    line-height: var(--small-line-height);
}

.lightblue {
    color: var(--blue);
}

.darkgrey {
    color: #484D67;
}

.gmaps {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
}

/* .view_product_detail_content_tech_sheet {
    width: calc(100% - 50px);
    height: 100%;
    margin-left: 50px;
    padding: 40px 50px;
    color: #858C9F;
    font-size: var(--small-font-size);
    line-height: var(--small-line-height);
    background-color: #FFFFFF;
} */

.view_customers.product.detail {
    height: 100%;
}

.view_customers.product.detail .container {
    height: 100%;
    display: flex;
    flex-flow: column;
}

.view_customers.product.detail .container .blank {
    flex-grow: 1;
    /* overflow: scroll; */
}

.page_content {
    display: flex;
}

.page_content .category-container {
    margin-top: 0;
    padding: 0;
}

.page_content .sidebar {
    margin-top: 38px;
    margin-left: 27px;
}

.page_content .sidebar .custombutton {
    margin-left: 0 !important;
    font-weight: bold;
    letter-spacing: 0.8px;
}

.page_content .sidebar>div:last-child {
    margin-top: 12px;
}


.page_content .bubble {
    width: 240px;
    margin-right: 0;
    margin-left: 0;
    padding: 0;
    position: relative;
    color: var(--default-font-color);
    border: none;
    box-shadow: 14px 19px 32px #30478A1F;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
}

.page_content .bubble.bordered {
    border-top: 7px solid var(--red);
    -webkit-border-top-left-radius: 8px;
    -webkit-border-top-right-radius: 8px;
    -moz-border-radius-topleft: 8px;
    -moz-border-radius-topright: 8px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.page_content .section {
    padding: 14px 20px;
}

.page_content .section .title {
    font-size: 28px;
    line-height: 41px;
}

.page_content .bubble.section {
    background-image: url(../images/custom/edit.svg);
    background-position-x: calc(100% - 20px);
    background-position-y: calc(30px);
    background-repeat: no-repeat;
    cursor: pointer;
}

.page_content .bubble.section::after {
    content: '';
}

.page_content .bubble.section .title {
    margin-bottom: 5px;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 0;
}

.page_content .section.centered {
    text-align: center;
}

.page_content .section .subname {
    margin: 20px 0 10px;
    font-weight: bold;
}

.page_content .section.grey {
    background-color: rgb(237, 239, 245, 0.37);
}

.page_content .section .row {
    margin: 7px 0;
    display: flex;
    justify-content: space-between;
}

.page_content .section .row.big div,
.page_content .section .row.big span {
    font-weight: bold;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 0.44px;
}

.page_content .section .row.column {
    flex-direction: column;
}

.page_content .section .row.small {
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 0.44px;
}

.page_content .section .row.small span {
    font-weight: bold;
    font-size: 13px;
}

.page_content .section .row:first-child {
    margin-top: 0;
}

.page_content .section .row:last-child {
    margin-bottom: 0;
}

.page_content .section .row .red {
    color: #FC525C;
}

.page_content .section .row .blue {
    color: var(--blue);
}

.order_summary_value {
    text-align: right;
}

.add_to_cart_popup .category-container {
    width: 100%;
    min-height: unset;
    margin-top: 20px;
    padding: 0;
}

.transparent_overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    cursor: pointer;
}

.transparent_overlay.reduced {
    width: 90%;
    top: 0;
    left: 0;
}

.flexcentered {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.fullwidth {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.fullwidthNoFlex {
    width: 100%;
}

.popup_new_customer .fullwidth {
    flex-flow: column;
}

.paginator {
    display: flex;
    justify-content: center;
    /* color: var(--grey); */
    color: #CCCEDC;
    font-size: 20px;
}

.paginator>div {
    margin: 0 4px;
    cursor: pointer;
}

.paginator>div.selected {
    color: var(--darkgrey);
}

.paginator .arrow {
    width: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 14px 14px;
}

.paginator .arrow.left {
    background-image: url('../images/custom/arrow_left_darkgrey.svg');
}

.paginator .arrow.left.disabled {
    background-image: url('../images/custom/arrow_left_grey_alt.svg');
}

.paginator .arrow.right {
    background-image: url('../images/custom/arrow_right_darkgrey.svg');
}

.paginator .arrow.right.disabled {
    background-image: url('../images/custom/arrow_right_grey_alt.svg');
}

.panel_background {
    /* width: calc(100% - 50px); */
    min-height: calc(100vh - 114px);
    margin: auto;
    margin-right: 0;
    background-color: var(--alt-background-color);
}

.bold {
    font-weight: bold;
}

.customer-action-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    height: 70px;
    justify-content: space-between;
    margin-top: 0px;
    width: 250px;
}

.customer-action-buttons div.buttonCustomer {
    width: 100%;
    height: 30px;
    padding: 10px 23px;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 12px;
    line-height: var(--small-line-height);
    letter-spacing: 0.7px;
    text-align: center;
    text-transform: uppercase;
    background-color: var(--red);
    border-color: transparent;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    cursor: pointer;
    white-space: nowrap;
}

.customer-action-buttons div.buttonCustomer img {
    height: 14px;
    margin-right: 8px;
    vertical-align: middle;
}

.payments-action-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    height: 85px;
    justify-content: space-between;
    margin-top: 0px;
}

.customer-stats-container {
    width: 100%;
    min-height: calc(100vh - 114px);
    margin: auto;
    margin-right: 0;
    padding: 27px 30px 27px 75px;
    background-color: var(--alt-background-color);
    -webkit-border-bottom-left-radius: 37px;
    -moz-border-radius-bottomleft: 37px;
    border-bottom-left-radius: 37px;
    height: calc(100vh - 114px);
    overflow: scroll;
}

.table-default-container {
    width: 100%;
    overflow: auto;
    height: calc(100% - 66px);
}

.capoarea-stats-container {
    width: 100%;
    overflow: auto;
    height: calc(100% - 66px);
}

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

.table-default-venduto {
    margin: 20px 20px 20px 80px;
}

.table-default-header {
    display: table-row;
    color: var(--default-font-color);
    font-weight: bold;
    font-size: 13px;
    line-height: 17px;
}

.table-default-category {
    font-weight: bold;
}

.table-default-header div {
    display: table-cell;
    padding: 10px;
}

.table-default-header th {
    display: table-cell;
    padding: 10px;
    position: sticky;
    position: -webkit-sticky;
    top: 0px;
    background-color: var(--alt-background-color);
    text-align: left;
    z-index: 2;
}

.table-default-header th:first-child {
    /*position: sticky;*/
    /*left: 0;*/
    z-index: 2;
}

div.table-default-row {
    margin: auto;
    position: relative;
    display: table-row;
    color: var(--default-font-color);
    font-size: 12px;
    line-height: var(--small-line-height);
    letter-spacing: 0.28px;
    background-color: #FFFFFF;
    /*background-image: url(../images/custom/arrow_right_grey.svg);
    background-position: center right;
    background-position-x: calc(100% - 20px);
    background-repeat: no-repeat;
    background-size: 12px 14px;*/
    box-shadow: var(--standard-box-shadow);
    cursor: pointer;
}

tr.table-default-row {
    margin: auto;
    position: relative;
    display: table-row;
    color: var(--default-font-color);
    font-size: 13px;
    line-height: var(--small-line-height);
    letter-spacing: 0.28px;
    background-color: #FFFFFF;
    box-shadow: var(--standard-box-shadow);
    cursor: pointer;
}

tr.table-row-noborder td {
    border-left: 0px;
    border-right: 0px;
}

.tr.table-default-row td:first-child {
    /*position: sticky;*/
    left: 0;
    z-index: 1;
    background-color: #fdfdfd;
}

.table-default-rowlink {
    background-image: url(../images/custom/arrow_right_grey.svg);
    background-position: center right;
    background-position-x: calc(100% - 20px);
    background-repeat: no-repeat;
    background-size: 12px 14px;
}

.table-default-rowlink2 {
    background-image: url(../images/custom/arrow_right_grey.svg);
    background-position: center right;
    background-position-x: calc(100% - 5px);
    background-repeat: no-repeat;
    background-size: 12px 14px;
}

tr.table-row-1 {
    margin: auto;
    position: relative;
    display: table-row;
    color: black;
    font-size: 12px;
    line-height: var(--small-line-height);
    letter-spacing: 0.28px;
}

tr.table-row-1 td {
    background-color: #ffffff;
    border-color: #e6e6e6;
    border-style: solid;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    padding: 10px;
}

tr.table-row-2 td:first-child {
    background-color: transparent;
    border-width: 0px;
}

.unpaid .table-default-row {
    cursor: default;
}

.table-default-subrow {}

.table-default-row div {
    display: table-cell;
    border-color: var(--alt-background-color);
    border-style: solid;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    padding: 10px 3px;
    min-width: 60px;
}

.table-default-subrow div {
    display: table-cell;
    border-color: var(--alt-background-color);
    border-style: solid;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    padding: 10px 3px;
}

.table-default-month-header {
    width: 120px;
}

.table-default-row td.bleft,
.table-default-subrow td.bleft {
    border-right-width: 0px;
    padding: 10px 5px;
}

.table-default-row td.bright,
.table-default-subrow td.bright {
    border-left-width: 0px;
    padding: 10px 5px;
}

.table-default-subrow div:first-of-type,
.table-default-subrow td:first-of-type {
    /*border-left: 10px solid #e3e8f1;*/
    padding-left: 15px;
}

.table-default-prodrow div:first-of-type,
.table-default-prodrow td:first-of-type {
    /*border-left: 20px solid #e3e8f1;*/
    background: rgb(227, 232, 241);
    background: linear-gradient(90deg, rgba(227, 232, 241, 1) 0%, rgba(255, 255, 255, 0) 10%);
    padding-left: 25px;
}

.table-default-row td,
.table-default-row th {
    display: table-cell;
    border-color: #e6e6e6;
    border-style: solid;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    padding: 10px;
}

.table-default-row.first {
    -webkit-border-top-right-radius: 15px;
    -moz-border-radius-topleft: 15px;
    -moz-border-radius-topright: 15px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.table-default-row.alt {
    background-color: #F8F9FB;
}

.table-default-separator {
    display: table-row;
}

.table-default-separator div,
.table-default-separator td {
    display: table-cell;
    height: 10px;
    background-color: #e3e8f1;
}

.table-default-separator2 div,
.table-default-separator2 td {
    display: table-cell;
    height: 2px;
    background-color: #e3e8f1;
}

.table-row-level1 {
    border-top: 5px solid var(--alt-background-color);
}

.PenInput {
    width: 100%;
    height: 120px;
    /* border:1px solid rgb(179, 179, 179); */
    background-color: white;
    position: relative;
    margin-bottom: 20px;

    border: 3px solid var(--background-color);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-appearance: none;
}

.PenInput_placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.PenInput_clear {
    position: absolute;
    bottom: 0px;
    right: 0;
    font-size: 11px;
    background-color: #00000011;
    padding: 5px;
    z-index: 2;
}

.PenInput_canvas {
    width: 100%;
    height: 100%;
    position: relative;
}

.button {
    width: 110px;
    margin-right: 10px;
    padding: 10px;
    font-size: 12px;
    line-height: 22px;
    text-align: center;
    cursor: pointer;
    border: 1px solid rgba(61, 75, 93, 0.3);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.button img {
    height: 40px;
}

.CustomCheckBox1 {
    font-size: 12px;
}

.justified {
    display: flex;
    justify-content: flex-start;
}

.dashboard {
    width: 100%;
    padding: 24px;
    padding-left: 74px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: var(--background-color);
}

.dashboard.centered {
    justify-content: center;
}

.dashboard.centered img {
    height: 120px;
    margin-top: 80px;
}

.dashboard_column {
    width: 32%;
}

.dashboard_banner {
    width: 100%;
}

.dashboard_box {
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
    background-color: var(--darkgrey);
    background-position: center calc((100% - 46px) / 2);
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-border-radius: 10px;
    -webkit-border-bottom-left-radius: 0;
    -moz-border-radius: 10px;
    -moz-border-radius-bottomleft: 0;
    border-radius: 10px;
    border-bottom-left-radius: 0;
    cursor: pointer;
    overflow: hidden;
    margin-bottom: 20px;
}

.dashboard_box img {
    width: 100%;
}

.user_agents_stats_subview {
    position: absolute;
    left: 50px;
    top: 50px;
    width: calc(100% - 100px);
    height: calc(100% - 100px);
    z-index: 999;
    overflow-y: auto;
    -webkit-box-shadow: 0px 0px 10px 5px #000000;
    box-shadow: 0px 0px 10px 5px #000000;
}

.user_agents_stats_header {
    width: 100%;
}

.user_agents_stats_container {
    width: 100%;
}

.customer_info_ico_list {
    width: 20px;
    height: 20px;
    position: absolute;
    left: -10px;
    top: 20px;
}

.customer_info_ico_detail {
    width: 20px !important;
    height: 20px !important;
    position: absolute;
    right: 6px;
    top: 10px;
}

.customer_detail_block {
    position: relative;
}

.customer_info_edit {
    position: absolute;
    right: 10px;
    top: 3px;
    font-size: 10px;
    background-color: #FFFFFF;
    border-radius: 2px;
    color: var(--red);
    padding: 0px 5px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    border: 1px solid var(--red);
}

.customer_info_edit img {
    margin-left: 5px;
    height: 12px;
}

/* CATALOGO */

.containerCatalogueSection {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - 10px);
    margin-right: 0;
    padding-top: 24px;
    padding-right: 10px;
}

.containerCatalogueSectionInset {
    margin-left: 150px;
    width: calc(100% - 200px);
}

.view_catalogue {
    height: 100%;
    overflow-y: auto;
    background-color: var(--background-color);
}

.view_catalogue .category-container.list .details {
    display: flex;
    flex-flow: column;
    flex-grow: 1;
    text-align: left;
    border: none;
}

.view_catalogue .category-container.grid {
    grid-template-columns: 33% 33% 33%;
}

.view_catalogue .category-container.grid.flexcentered {
    display: flex;
    justify-content: center;
}

.view_catalogue .element {
    padding: 15px 20px;
    display: flex;
    text-align: center;
    background-image: none;
}

.view_catalogue .category-container.grid .element {
    width: 90%;
    max-height: 325px;
    margin-top: 0;
    margin-bottom: 28px;
    flex-flow: column;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    cursor: default;
}

.view_catalogue .category-container.list .element:first-child {
    -webkit-border-top-left-radius: 15px;
    -webkit-border-top-right-radius: 15px;
    -moz-border-radius-topleft: 15px;
    -moz-border-radius-topright: 15px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.view_catalogue .element .small.title {
    color: var(--black);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.view_catalogue .category-container.list .element .image {
    flex-grow: 0;
}

.view_catalogue .breadcrumb {
    display: flex;
    align-items: center;
    font-size: var(--small-font-size);
    line-height: 20px;
}

.containerCatalog {
    margin-left: 80px;
    width: calc(100% - 80px);
}

.category_box {
    position: relative;
    margin: 0px 7px 20px 7px;
}

.category_box2 {
    width: 170px;
}

.category_box .box {
    /* background-position: top; */
    padding-top: 100%;
}

.category_name {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    background-color: #ffffff;
    line-height: 14px;
    padding: 0px 3px;
}

.category_level2 {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 22px;
    font-size: 16px;
    font-weight: bold;
    border-left: 5px solid #3A4047;
    margin-top: 10px;
}

.categories-table {
    padding: 50px;
    padding-left: 0;
    display: grid;
    grid-template-columns: 48% 48%;
    row-gap: 30px;
    justify-content: space-between;
}

.category_banner {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--small-font-size);
    font-weight: bold;
    background-color: #FFFFFF;
    border-bottom: 3px solid var(--red);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    cursor: pointer;
}

.category_banner_name {
    padding: 14px;
    line-height: 16px;
}

.category_banner_image {
    width: 250px;
    height: 100%;
    background-position: center;
    background-size: cover;
}

.category_banner_subcategory {
    padding: 20px 40px;
    display: flex;
    align-items: center;
    font-size: var(--small-font-size);
    font-weight: bold;
    cursor: pointer;
}

.category_banner_subcategory::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 30px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 13px solid var(--red);
}


.layout_category_banner {
    width: 700px;
    height: 150px;
    background-color: var(--darkgrey);
    background-size: cover;
    background-position: top left;
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.layout_category_banner div {
    height: 100%;
    width: 170px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    font-size: 20px;
    font-weight: bold;
    padding-left: 15px;
}

.layout_category_banner div span {
    font-size: 12px;
    padding: 0px 0px 20px 0px;
}

.catalogLinkbar {
    width: calc(100% - 50px);
    margin: auto;
    margin-right: 0;
    padding: 0 28px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    background-color: #ffffff;
    margin-bottom: 15px;
    margin-left: 50px;
}

.catalogLinkbar a {
    padding: 0px 5px;
    color: var(--red);
    text-transform: uppercase;
    background-color: #FFFFFF;
    margin-right: 8px;
    text-decoration: none;
    font-size: 12px;
    display: block;
    white-space: nowrap;
    margin-bottom: 5px;
    border: 1px solid var(--red);
}

.App {
    width: 100%;
    height: 100%;
    overflow: auto;
}

.PdfPopup {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    z-index: 999;
}

.PdfPopup_bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #00000066;
    cursor: pointer;
}

.PdfPopup_content {
    position: relative;
    background-color: white;
    padding: 10px;
    margin: auto;
    width: 90%;
    height: 90%;
}

.PdfPopup_close {
    position: absolute;
    top: -30px;
    right: 0px;
    background-color: white;
    padding: 1px 5px;
    color: black;
    font-size: 12px;
    cursor: pointer;
}

.PdfPopup_content_iframe {
    border: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.filter_item {
    display: flex;
    flex-direction: column;
}

.fatture_scadute {
    background-color: #ff0000;
    color: #ffffff;
    padding: 2px 5px;
}

.cart_cat_summary {
    margin-left: 15px;
    font-size: var(--small-font-size);
}

.cart_cat_summary li {
    margin-left: 0px;
}

.cart_cat_summary li.l2 {
    margin-left: 15px;
}

.standard-button {
    background-color: #ebebeb;
    color: black;
    padding: 3px !important;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.small-standard-button {
    padding: 3px 8px !important;
    color: white;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    background-color: var(--red);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.tabellaRiepilogoOrdinato {
    text-align: left;
}

.tabellaRiepilogoOrdinato td {
    padding-right: 10px;
}

.inputPrompt {
    padding: 0px 10px 20px 10px;
    width: 100%;
}

.inputPrompt input {
    text-align: center;
}

.MultiItemListBox {
    border: 2px solid var(--background-color);
    background-color: #ffffff;
    width: 100px;
    height: 40px;
    position: relative;
    font-size: 12px;
    text-wrap: nowrap;
}

.MultiItemListBox_label {
    width: 100%;
    height: 100%;
    line-height: 40px;
    padding: 0px 3px 0px 3px;
    background: url('../images/custom/arrow-down.png') center right no-repeat;
    background-position-x: calc(100% - 5px);
}

.MultiItemListBox_label_text {
    height: 100%;
    width: calc(100% - 18px);
    overflow: hidden;
}

.MultiItemListBox_options {
    position: absolute;
    top: 100%;
    left: 0px;
    z-index: 999;
}

.MultiItemListBox_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    border-bottom: 1px solid #eee;
    background-color: #ffffff;
}

.MultiItemListBox_item_label {
    text-wrap: nowrap;
    font-size: 12px;
}

.MultiItemListBox_item_check {
    border-radius: 100%;
    width: 20px;
    height: 20px;
    margin-left: 10px;
    background-color: white;
    border: 2px solid #aaa;
}

.MultiItemListBox_item_check-2 {
    background-color: var(--red);
}

.price_by_qty_table {
    border-collapse: collapse;
    font-size: 11px;
    width: 100%;
}

.price_by_qty_table td {
    border: 1px solid #ccc;
    padding: 1px 3px;
}

.price_by_qty_table_head {
    background-color: #ccc;
    font-weight: bold;
}

.pricelist_info {
    width: 20px !important;
    height: 20px !important;
}

.pricelist_modal {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000aa;
    z-index: 10;
}

.pricelist_modal_content {
    margin: auto;
    margin-top: 200px;
    background-color: white;
    width: 300px;
    padding: 20px;
}

.row_goto {
    width: 16px;
    height: 16px;
}

@media screen and (max-width: 1080px) {
    .category-container {
        grid-template-columns: 33% 33% 33%;
    }
}

@media screen and (max-width: 780px) {
    .category-container {
        grid-template-columns: 49% 49%;
    }
}

.filters_order_cont {
    display: flex;
    justify-content: space-between;
}