/*  Al 01/03/2022 non e' stato possibile determinare le logiche di caricamento delle librerie
    CSS custom (aggiunte ai temi del portale attraverso make.powerapps.com) nell'header del
    portale.
    E' stato testato l'ordinamento alfabetico, di data caricamento, di data modifica del file
    caricato ma sembra che nessuno di questi ordinamenti venga sempre rispettato (c'e' sempre
    il modo di riorganizzare il caricamento dei file CSS semplicemente eliminando file gia'
    presenti e ricaricandoli).

    Nel caso sia necessario riorganizzare l'ordinamento di caricamento dei file CSS e'
    necessario provare tutte le permutazioni di caricamento fino ad ottenere l'ordinamento
    corretto.
*/

/* Personalizzazione comune a tutte le pagine - INIZIO */
@font-face {
    /*font-family: 'Source Sans Pro';
    src: url(https://fonts.googleapis.com/css?family=Source+Sans+Pro);*/
    font-family: 'Nunito Sans';
    src: url(https://fonts.googleapis.com/css?family=Nunito+Sans);
}
 
:root {
    --dentist-green: #00D7BE;
    --dentist-green-darkened: #016459;
}

html,
body {
    height: 100%;
    /* -ms-overflow-style: none;*/
    /* Hide scrollbar for IE and Edge */
    /*scrollbar-width: none; */
    /* Hide scrollbar for Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    /* display: none; */
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
span,
a,
p,
div {
    font-family: 'Nunito Sans', sans-serif;
    color: black;
}

.inline {
    display: inline;
}

p.bolder {
    font-weight: bolder;
}

.text-align-end {
    text-align: end;
}

.text-align-center {
    text-align: center;
}

.vertical-align-top {
    vertical-align: top;
}

.inline {
    display: inline;
}

.no-padding {
    padding: 0px !important;
}

.no-padding-top {
    padding-top: 0px !important;
}

.no-padding-left {
    padding-left: 0px !important;
}

.no-margin-bottom {
    margin-bottom: 0px !important;
}

.no-border {
    border: none !important;
}

.force-text-transfrom-initial {
    text-transform: initial !important;
}

.font-size-12 {
    font-size: 12px;
}

.font-weight-700 {
    font-weight: 700;
}

.dentist-green-background {
    background-color: var(--dentist-green);
}

.white-color {
    color: white !important;
}

div.footer-container-1-inner p.footer-section-title {
    margin: 0;
    /* padding-top: 45px;*/
    margin-left: 3px;
    margin-right: 20px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
    /*margin-top: 50px;*/
}

h4.current-page-name {
    font-weight: 800;
    background-color: #e7e9f4;
    margin: 0;
    text-align: center;
    color: #0b218e;
    font-size: 30px;
    padding-top: 30px;
}

.normal-font-weight {
    font-weight: 400;
}

.light-font-weight {
    font-weight: 300;
    font-size: 28px;
    text-transform: uppercase;
}

.b-rd-10 {
    border-radius: 5px;
}

ul.breadcrumb {
    background-color: #e7e9f4;
    margin: 0;
    padding: 8px 0px 25px 0px;
    text-align: center;
    font-size: 14px;
    color: black
}

.breadcrumb>.active::before {
    font-weight: bold;
    content: "/";
    padding-right: 10px;
    color: black;
}

.breadcrumb>.active {
    font-weight: bold;
    color: black;
}

.breadcrumb>li+li:before {
    content: "/";
}

.breadcrumb>li a,
.breadcrumb>li a:hover {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.mailto {
    color: inherit;
}

.mandatory-empty-field {
    border: 1px solid red !important;
}

/* Rimuovo i bordi presenti in alcuni componenti di default di PowerPortal */
.xrm-attribute-value-empty {
    outline: none !important;
}

/* BTNS */
button {
    background-color: white;
    color: black;
}

button:focus,
.btn-primary:hover,
.btn-default:hover {
    border: none !important;
    outline: none !important;
}

.btn {
    padding: 10px 25px;
}

a.btn-default.active:hover {
    color: #fff;
    background-color: #191c49;
    border-color: #191c49;
}

.btn-primary:active,
.btn-primary.active,
.btn-primary:hover,
.open>.btn-primary.dropdown-toggle,
.btn-primary:active:focus,
.btn-primary:active:hover {
    color: #fff;
    background-color: var(--dentist-green-darkened);
    border: none;
}

#submit-signin-local:active {
    color: #fff;
    background-color: #0b0d33;
    border: none;
}

.btn-primary,
.btn-primary:focus {
    color: #fff;
    background-color: var(--dentist-green);
    /*border-color: #0b218e;*/
    border: none !important;
    text-transform: uppercase;
}

.btn-small {
    padding: 10px 40px;
    font-size: 14px;
    line-height: normal;
    border-radius: 4px;
    font-weight: 700;
}

.btn-default {
    color: #525252;
    background-color: #dfdfdf;
    border-color: #dfdfdf;
    text-transform: uppercase;
    border-radius: 5px;
    border: none;
}

.btn-default:focus,
.focus.btn-default,
a:hover,
a:focus {

    text-decoration: none;
    color: #0b0d33;
}

.btn-default:active:hover,
.btn-default.active:hover,
.btn-default:hover,
.open>.btn-default.dropdown-toggle:hover {
    color: #2E3261;
    background-color: #d4d4d4;
    border-color: #0b0d33;
}

.btn-default:active,
.btn-default.active {
    color: #0b0d33;
    background-color: #727070;
    border-color: #2E3261;
}

.btn-dark {
    border-color: transparent;
    border-radius: 5px;
    color: #fff !important;
    background-color: #0b218e;
}

.btn-dark:hover {
    background-color: #191c49 !important;
}

.btn-light {
    border-color: transparent;
    border-radius: 5px;
    color: black;
    background-color: #e5e5e9;
}

.btn-light:hover {
    background-color: #bfbfbf !important;
}

.btn-green {
    border-color: transparent;
    border-radius: 7px;
    color: #fff !important;
    background-color: var(--dentist-green);
}

.btn-green:hover {
    background-color: #009685 !important;
}

.btn-grey-light {
    border-color: transparent;
    border-radius: 5px;
    color: #727272;
    background-color: #f2f2f2;
}

.btn-grey-light:hover {
    background-color: #d9d9d9 !important;
}

.btn-grey-dark {
    border-color: transparent;
    border-radius: 5px;
    color: #fff;
    background-color: #808080;
}

.btn-grey-dark:hover {
    background-color: #404040 !important;
}

.btn-red-light {
    border-color: transparent;
    border-radius: 5px;
    color: #c0280b !important;
    background-color: #f8e9e6;
}

.btn-red-light:hover {
    background-color: #dfd1cf !important;
}

/* BTNS */

div#empty-result-info-message {
    text-align: center;
}

div#empty-result-info-message h2 {
    color: #c63e23;
    font-weight: 700;
    padding: 20px;
}

div#empty-result-info-message h4 {
    font-weight: 700;
}

.hide {
    display: none !important;
}

.grey-container {
    margin-top: 10px;
    width: 25%;
    /*background-color: #f2f2f2;*/
    border: 4px solid #f2f2f2;
    border-radius: 5px;
    padding: 20px;
}

#continueButton,
#emptyCartButton,
#confirmButton,
#cancelConfirmationButton,
#purchaseOrderNumber,
#purchaseOrderDate,
#shippingDate,
.filter-label,
.grey-container-content {
    width: 100%;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

@media (max-width: 720px) {
    .breadcrumb-container {
        display: none;
    }
}

@media (min-width: 720px) {
    .breadcrumb-container {
        display: block;
    }
}

/* Personalizzazione Tooltip JQuery - INIZIO */
.mytooltip:hover:after {
    background: #333;
    background: rgba(0, 0, 0, .9);
    border-radius: 5px;
    bottom: 26px;
    color: rgb(255, 77, 85);
    content: attr(title);
    right: 20%;
    padding: 5px 15px;
    position: absolute;
    z-index: 98;
    width: 220px;
}

.mytooltip:hover:before {
    border: solid;
    border-color: #333 transparent;
    border-width: 6px 6px 0 6px;
    bottom: 20px;
    content: "";
    right: 50%;
    position: absolute;
    z-index: 99;
}

.mytooltip {
    background-color: black;
    padding: 5px 20px;
    border-radius: 20px;
    margin: 50px;
    text-align: center;
    font: bold 14px;
    font-stretch: condensed;
    text-decoration: none;
    box-shadow: 0 0 10px black;
    opacity: 0.9;
    white-space: pre-line;
}

.mytooltip .ui-tooltip-content {
    color: rgb(255, 255, 255) !important;
}

/* Personalizzazione Tooltip JQuery - FINE */

/*  Personalizzazione custom checkbox - INIZIO */
/* Customize the label (the custom-checkbox-container) */
.custom-checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.custom-checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #bfbfbf;
    height: 20px;
    width: 20px;
    border-radius: 4px;
}

/* On mouse-over, add a light grey background color */
.custom-checkbox-container:hover input~.checkmark {
    background-color: #808080;
}

/* When the checkbox is checked, add a blue background */
.custom-checkbox-container input:checked~.checkmark {
    background-color: #0b218e;
}

/* When the checkbox is checked, on mouse-over, add a dark blue background */
.custom-checkbox-container:hover input:checked~.checkmark {
    background-color: #030b30;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.custom-checkbox-container input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.custom-checkbox-container .checkmark:after {
    left: 8px;
    top: 3px;
    width: 5px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Personalizzazione custom checkbox - FINE */

/* Personalizzazione comune a tutte le pagine - FINE */

/* Personalizzazione spinner - INIZIO */
#loader {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: none;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#loader::after {
    content: '';
    display: block;
    position: absolute;
    left: 48%;
    top: 40%;
    width: 100px;
    height: 100px;
    border-style: solid;
    border-color: #3498db;
    border-top-color: transparent;
    border-width: 7px;
    border-radius: 50%;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

/* Personalizzazione spinner - FINE */

/* Personalizzazione header - INIZIO */
div.navbar,
.navbar-static-top.navbar-inverse {
    height: 60px;
    border-bottom: 1px solid #2E3261;
    opacity: 1;
}

.xrm-editable-hover {
    outline-style: none !important;
}

div.navbar-brand {
    padding: 0;
}

div.navbar-header,
.navbar-static-top.navbar-inverse {
    background-color: white;
    color: black;
}

div.navbar-header button {
    background-color: #0c1b3f;
}

img.header-logo {
    height: 37px;
    padding-top: 20px;
    padding-left: 50px;
}

.navbar-static-top.navbar .menu-bar>.navbar-nav>li>a {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: normal;
    color: #2E3261;
    margin-top: 15px;
    padding: 5px 7px;
    border-radius: 5px;
    outline: none;
}

.drop_parent_item {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: normal;
    color: var(--secondary-color-7);
    /* background-color: #e5e5e5; */
    margin-top: 15px;
    /* padding: -32px; */
    border-radius: 5px;
}

.drop_parent_item svg {
    vertical-align: middle;
    height: 35px;
}

.navbar-inverse .navbar-nav>li>a:hover,
.navbar-inverse .navbar-nav>li.active>a:focus,
.navbar-inverse .navbar-nav>.open>a,
.navbar-inverse .navbar-nav>.open>a:hover,
.navbar-inverse .navbar-nav>.open>a:focus {
    background-color: #fff;
    color: #2E3261;
    padding-bottom: 10px;
    border-bottom: none;
    box-shadow: none;
    outline: none;
}

.navbar-static-top.navbar .menu-bar>.navbar-nav>.divider-vertical {
    border: none;
}

.navbar-static-top.navbar .navbar-collapse {
    background-color: #ffffffd4;
    width: calc(100% + 30px);
    padding-left: 10px;
}

li.weblink,
.drop-language {
    text-transform: uppercase;
}

.username {
    text-transform: capitalize;
}

.navbar-nav .dropdown-menu {
    margin-top: 15px !important;
}

.nav .dropdown-menu {
    border-radius: 5px;
    background-color: #ffffff;
}

.nav .dropdown-menu>li {
    padding: 10px 0;
}

.nav .dropdown-menu>li>a {
    text-align: left;
    font-size: 13px;
    font-weight: bolder;
    text-transform: uppercase;
    letter-spacing: 0px;
    color: #2E3261;
}

.language-flag {
    padding-right: 10px;
}

.user-section {
    text-align: -webkit-right;
}

.user-container {
    /* margin-top: 20px; */
    /* white-space: nowrap; */
    /* overflow: hidden; */
    /* text-overflow: ellipsis; */
    /* padding-right: 50px; */
    /* width: 140px; */
    /* padding-right: 60px; */
    /* margin-left: 20px; */
}

.header-profile-link {
    /* position: absolute; */
    top: 20px;
    right: -4px;
}

.company {
    font-size: 9px;
    color: #2E3261;
    padding: 0px;
    text-transform: uppercase;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    /* width: 84px; */
}

.navbar-menu-icon {
    border: none;
}

.navbar-menu-icon:hover {
    background-color: transparent;
}

@media (max-width: 1200px) {
    #navbar {
        background-color: #f3f3f9;
        border-radius: 5px;
        text-align: right;
        padding-right: 40px;
    }

    #navbar .dropdown-toggle {
        margin-top: 20px !important;
    }

    .user-container {
        width: 100%;
        padding-right: 90px;
    }

    .user-container .dropdown-toggle {
        margin-right: 17px;
    }

    .user-container .dropdown-menu {
        margin-right: -70px;
    }

    .company {
        width: 100%;
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu>li>a {
        color: #2E3261;
        text-align: right;
    }

    .navbar-inverse .navbar-nav>li>a:hover,
    .navbar-inverse .navbar-nav>li.active>a:focus,
    .navbar-inverse .navbar-nav>.open>a,
    .navbar-inverse .navbar-nav>.open>a:hover,
    .navbar-inverse .navbar-nav>.open>a:focus {
        background-color: #2f5fef !important;
        color: #2E3261 !important;
        padding-bottom: 10px;
        border-bottom: none;
        box-shadow: none;
        outline: none;
    }

    .header-profile-link {
        top: 0px !important;
        margin-top: 10px !important;
    }
}

@media (min-width: 1200px) {

    .navbar-inverse .navbar-nav>li>a:not(.dropdown-toggle):hover,
    .navbar-inverse .navbar-nav>li.active>a:not(.dropdown-toggle):focus,
    .navbar-inverse .navbar-nav>.open>a:not(.dropdown-toggle),
    .navbar-inverse .navbar-nav>.open>a:not(.dropdown-toggle):hover,
    .navbar-inverse .navbar-nav>.open>a:not(.dropdown-toggle):focus {
        background-color: #f3f3f9;
    }

    .navbar-static-top.navbar .navbar-collapse {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .menu-container {
        width: 100%;
    }
}

.navbar-nav>li>.dropdown-menu {
    background-color: #ffffff;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

/* Personalizzazione header - FINE */

/* Personalizzazione footer - INIZIO */



div.footer-container-1-inner {
    font-size: 16px;
    text-align: left;
}

div.footer-container-1-inner:before {
    background-color: #2E3261;
}

div.footer-container-1-inner p a {
    text-align: left;
    color: #ffffff6e;
}

.footer-info-paragraphs {
    width: 350px;
    color: #ffffff6e;
}

.footer-info-paragraphs-description {
    padding-top: 20px;
    width: auto;
    color: #ffffff6e;
}

.first-icon-info {
    margin-top: 40px;
}

.first-icon-info::before {
    content: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%23ffffff6e%22%20class%3D%22bi%20bi-geo-alt-fill%22%20viewBox%3D%220%200%2016%2016%22%3E%0A%20%20%3Cpath%20d%3D%22M8%2016s6-5.686%206-10A6%206%200%200%200%202%206c0%204.314%206%2010%206%2010zm0-7a3%203%200%201%201%200-6%203%203%200%200%201%200%206z%22%2F%3E%0A%3C%2Fsvg%3E);
    padding-right: 4px;
    vertical-align: middle;
}

.second-icon-info::before {
    content: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%23ffffff6e%22%20class%3D%22bi%20bi-envelope-fill%22%20viewBox%3D%220%200%2016%2016%22%3E%0A%20%20%3Cpath%20d%3D%22M.05%203.555A2%202%200%200%201%202%202h12a2%202%200%200%201%201.95%201.555L8%208.414.05%203.555ZM0%204.697v7.104l5.803-3.558L0%204.697ZM6.761%208.83l-6.57%204.027A2%202%200%200%200%202%2014h12a2%202%200%200%200%201.808-1.144l-6.57-4.027L8%209.586l-1.239-.757Zm3.436-.586L16%2011.801V4.697l-5.803%203.546Z%22%2F%3E%0A%3C%2Fsvg%3E);
    padding-right: 10px;
    vertical-align: middle;
}

.third-icon-info::before {
    content: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%23ffffff6e%22%20class%3D%22bi%20bi-telephone-fill%22%20viewBox%3D%220%200%2016%2016%22%3E%0A%20%20%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M1.885.511a1.745%201.745%200%200%201%202.61.163L6.29%202.98c.329.423.445.974.315%201.494l-.547%202.19a.678.678%200%200%200%20.178.643l2.457%202.457a.678.678%200%200%200%20.644.178l2.189-.547a1.745%201.745%200%200%201%201.494.315l2.306%201.794c.829.645.905%201.87.163%202.611l-1.034%201.034c-.74.74-1.846%201.065-2.877.702a18.634%2018.634%200%200%201-7.01-4.42%2018.634%2018.634%200%200%201-4.42-7.009c-.362-1.03-.037-2.137.703-2.877L1.885.511z%22%2F%3E%0A%3C%2Fsvg%3E);
    padding-right: 10px;
    vertical-align: middle;
}

.footer-section-title {
    color: white;
    text-align: left;
}

div.footer-container-1-inner p a:hover {
    cursor: pointer;
    background-color: #030B30;
}

@media (max-width:371px) {
    div.footer-container-1-inner p a {
        padding: 7px;
    }

    div.footer-container-1-inner {
        padding: 12px;
        font-size: 12px;
    }
}

.footer-block {
    height: unset;
}

/*media che gestisce solo la dimensione sm*/

@media (max-width:540px) {
    .footer-block {
        height: 300px;
    }
}

/* media che gestisce da md in poi */
@media (max-width:720px) {
    .footer-block {
        height: unset;
        margin-top: 20px;
    }

    .first-icon-info {
        margin-top: 0px;
    }
}

.footer-container-1-inner>.row {
    margin-left: -15px;
    margin-right: -15px;
    margin-top: 40px;
}

@media (min-width:600px) {
    .footer-container-1-inner>.row {
        margin-left: -15px;
        margin-right: -15px;
        margin-top: 40px;
    }
}

@media (min-width:300px) {
    .footer-container-1-inner>.row {
        margin-left: -15px;
        margin-right: -15px;
        margin-top: 40px;
    }
}

@media (min-width:390px) {
    div.footer-container-1-inner {
        padding: 12px;
    }
}

div.footer-container-1-inner hr {
    border: none;
    border-top: 1px dotted #e2e2e2;
    margin-left: 10%;
    margin-right: 10%;
}

div.footer-container-2 {
    padding-bottom: 6px;
    padding-top: 19px;
    position: relative;
    color: #ffffff45;
    font-size: 14px;
    background-color: #404040;
    text-align: center;
    height: 116px;
}

div.footer-container-2 p {
    margin: 0;
    color: #ffffff45;
}

div.footer-paragraph-container {
    white-space: nowrap;
    font-size: 15px;
    padding-top: 30px;
}

/* Personalizzazione footer - FINE */

/* Personalizzazione pagina login - INIZIO */
div#content-container {
    margin-right: 0;
}

div#content {
    padding: 3%;
    min-height: 793px;
}

div.page-content {
    margin-top: 63px;
}

div#mainContent>div.row>div.col-md-6 {
    width: 100%;
}

ul.nav-tabs {
    border: unset;
    padding-left: 0;
    margin-top: 0;
}

h1.login-heading-section {
    border: unset;
    padding-left: 0;
    margin-bottom: 30px;
}

.form-control {
    background-color: #FAFAFA;
}

input.form-control {
    border: 1px solid #E2E2E2;
    height: 40px;
}

label.control-label.required {
    word-break: break-all;
    color: #3A3A3C;
}

.xrm-editable-text .xrm-attribute {
    color: #3A3A3C;
    font-size: 18px;
}

label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    color: #3A3A3C;
    font-weight: bold;
}

.radio label,
.checkbox label {
    min-height: 21px;
    padding-left: 20px;
    font-weight: normal;
    cursor: pointer;
    font-size: 18px;
}

.nav-tabs>li>a {
    border: unset;
    cursor: grab;
    background-color: #fff;
    padding-bottom: 10px;
    color: #2E3261;
    text-transform: uppercase;
    font-weight: bolder;
    margin-right: 40px;
}

.nav-tabs>li.active>a {
    border: unset;
    box-shadow: inset -49px -10px 0px 0px white, inset 10px 19px 0px -5px white, inset 0px -20px 3px 0px #c8c8c8;
    background-color: #fff;
    color: #2E3261;
}

.nav-tabs>li>a:hover,
.nav-tabs>li>a:focus,
.nav-tabs>li.active>a:hover,
.nav-tabs>li.active>a:focus {
    border: unset;
    color: #2E3261;
}

.col-sm-8 {
    margin-bottom: 30px;
}

h1>span>span {
    font-weight: bolder;
    color: #2E3261;
}

div.form-group>div.col-sm-offset-4>button {
    margin-bottom: 30px;
    margin-right: 10px;
}

div.form-group>div.col-sm-offset-4>a {
    margin-bottom: 30px;
}

.login-nav-btn a {
    border-radius: 5px !important;
    font-size: 14px;
}

.login-nav-btn.active a {
    background-color: #808080 !important;
    box-shadow: none !important;
    border-radius: 5px !important;
    color: white !important;
    font-size: 14px !important;
}

.login-nav-btn.active span {
    color: white;
}

/* .login-container {
    //background-image: url("~/login-background.png");
  /background-repeat: no-repeat;
} */



.login-container .form-control {
    background-color: #ebebeb;
    color: black;
    border-radius: 5px;
}

.login-container .control-label {
    text-align: left;
    margin-bottom: 0;
}

.login-container .login-content-background {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: #feffff;
    opacity: 0.8;
    display: none;
    z-index: -1;
}

.login-checkbox-label {
    font-size: 12px;
}

.login-action-btn-container {
    display: flex;
    flex-direction: column;
}

.login-action-btn {
    font-size: 21px;
    border-radius: 5px;
}

.login-action-btn.with-remember {
    width: 30%;
}

.login-remember-pwd {
    font-size: 12px;
    font-weight: bold;
    text-decoration: underline;
    text-underline-offset: 4px;
    color: #3c4ea5;
    margin-bottom: 10px!important;
}

.login-remember-pwd::after {
    content: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22currentColor%22%20class%3D%22bi%20bi-arrow-right%22%20viewBox%3D%220%200%2016%2016%22%3E%0A%20%20%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M1%208a.5.5%200%200%201%20.5-.5h11.793l-3.147-3.146a.5.5%200%200%201%20.708-.708l4%204a.5.5%200%200%201%200%20.708l-4%204a.5.5%200%200%201-.708-.708L13.293%208.5H1.5A.5.5%200%200%201%201%208z%22%2F%3E%0A%3C%2Fsvg%3E);
    vertical-align: text-top;
    padding-left: 10px;
}

.validation-summary-errors,
#loginValidationSummary {
    margin-left: 34%;
}

.validation-summary-errors-register-page {
    /* classe usata anche nel "forgot password" */
    margin-left: 0% !important;
    /* deve vincere sulle altre regole */
}

@media (max-width:768px) {
    .validation-summary-errors-verifycode-page {
        margin-left: 0% !important;
        /* deve vincere sulle altre regole */
    }
}

@media (max-width:1200px) {
    .login-container .login-content-background {
        display: block;
    }

    .login-action-btn.with-remember {
        width: 50%;
    }
}

@media (min-width:768px) {
    .validation-summary-errors-register-page {
        /* classe usata anche nel "forgot password" */
        margin-left: 17% !important;
        /* deve vincere sulle altre regole */
    }

    div#mainContent>div.row>div.col-md-6 {
        width: 80%;
    }

    div#mainContent>div.row>div.col-md-offset-3 {
        /* margin-left: 41.66667%;*/
    }

    ul.nav-tabs {
        padding-left: 27%;
    }

    form.register-form {
        padding-left: 12%;
    }

    /* Redeem invitation H1 */
    h1.login-heading-section {
        padding-left: 17%;
    }

    /* SignIn invitation H1 */
    h1#local-login-heading {
        padding-left: 35%;
    }

    h1.forgot-password-heading {
        margin-left: 17%;
        width: 65%;
    }

    legend.verify-code-heading {
        margin-left: 34%;
        width: 65%;
    }
}

@media (min-width:992px) {
    form.register-form {
        padding-left: 24%;
    }

    div.redeem-div-container {
        padding-left: 38%;
    }

    div#mainContent>div.row>div.col-md-6 {
        width: 80%;
    }

    ul.nav-tabs {
        padding-left: 53%;
    }
}

@media (min-width:1200px) {
    div#mainContent>div.row>div.col-md-offset-3 {
        margin-left: 35%;
    }

    div#mainContent.col-md-offset-3 {
        margin-left: 41.66667%;
    }

    div#mainContent>div.row>div.col-md-6 {
        width: 60%;
    }

    ul.nav-tabs {
        padding-left: 63%;
    }
}

/* Personalizzazione pagina login - FINE */

/* Personalizzazione home - INIZIO */
/*#home-container {
    min-height: 600px;
}*/

img.copertina {
    margin-bottom: 20px;
}

.home-container-init {
    margin-bottom: 2%;
    margin-top: 100px;
    /* padding-bottom: 8%; */
    background-image: none;
}

@media (min-width:1200px) {
    .home-container-init {
        background-image: url('~/Immagine-Home-Hand');
        background-repeat: no-repeat;
        background-size: 1300px;
        background-position: bottom left;
    }
}

.home-container-machines {
    padding-top: 0%;
    padding-bottom: 5%;
    /* background-image: linear-gradient(to bottom, #f3f3f9 40%, #ffffff 40% 100%);*/
    /* background-image: url('~/Immagine-Home-Machines'); */
    /* background-repeat: repeat-x; */
    /* background-color: #f2f2f8; */
    /* border-top: 1px solid #c1c2c7; */
}

.home-container-machines .home_machine_btn {
    margin-right: 250px;
}

.home-container-machines .button-home-box {
    color: #0b218e;
    margin-top: 32px;
}

.home-container-machines .button-home::after {
    content: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22rgb%2811%2033%20142%29%22%20class%3D%22bi%20bi-arrow-right%22%20viewBox%3D%220%200%2016%2016%22%3E%0A%20%20%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M1%208a.5.5%200%200%201%20.5-.5h11.793l-3.147-3.146a.5.5%200%200%201%20.708-.708l4%204a.5.5%200%200%201%200%20.708l-4%204a.5.5%200%200%201-.708-.708L13.293%208.5H1.5A.5.5%200%200%201%201%208z%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E);
    vertical-align: middle;
    padding-left: 10px;
}

.home-container-help {
    /* margin-bottom: 6%; */
    margin: 1.5% 2% 1.5% 2%;
    padding: 0;
}

.home-container-help .button-home-box {
    margin-left: -122px;
}

.home-container-promotions {
    margin-bottom: 6%;
}

.paragrafo-sinistro {
    font-size: 18px;
    letter-spacing: 0px;
    color: #2E3261;
    /*  padding-bottom: 40px;
  text-align: right;*/
}

.paragrafo-sinistro a {
    /*  text-align: center;
    border: #2E3261 solid 1px;*/
}

.paragrafo-sinistro p {
    font-size: 21px;
    text-align: justify;
}

.paragrafo-sinistro .paragrafo-body {
    margin-top: 35px;
}

h3 {
    color: #2E3261;
    font-weight: bold;
    font-size: 50px;
    display: inline;
}

.h3-title:hover {
    border-bottom: 5px solid #D20202;
    cursor: default;
}

.h3-highlight {
    color: #0b218e;
}

.machine-single-container {
    padding-top: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid #bfbfbf;
}

.machine-single-container .machine-header-container {
    display: flex;
    justify-content: space-between;
}

.machine-single-container .machine-header-container .machine-btn {
    border-color: transparent;
    border-radius: 5px;
    height: 35px;
    width: 35px;
}

.machine-single-container .machine-header-container .machine-btn.open::after {
    content: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22rgb%28255%20255%20255%29%22%20class%3D%22bi%20bi-chevron-up%22%20viewBox%3D%220%200%2016%2016%22%3E%0A%20%20%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M7.646%204.646a.5.5%200%200%201%20.708%200l6%206a.5.5%200%200%201-.708.708L8%205.707l-5.646%205.647a.5.5%200%200%201-.708-.708l6-6z%22%2F%3E%0A%3C%2Fsvg%3E);
    vertical-align: sub;
}

.machine-single-container .machine-header-container .machine-btn.closed::after {
    content: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22rgb%28255%20255%20255%29%22%20class%3D%22bi%20bi-chevron-down%22%20viewBox%3D%220%200%2016%2016%22%3E%0A%20%20%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M1.646%204.646a.5.5%200%200%201%20.708%200L8%2010.293l5.646-5.647a.5.5%200%200%201%20.708.708l-6%206a.5.5%200%200%201-.708%200l-6-6a.5.5%200%200%201%200-.708z%22%2F%3E%0A%3C%2Fsvg%3E);
    vertical-align: sub;
}

.machine-single-container .machine-header-container .machine-title {
    display: flex;
    flex-direction: column;
}

.machine-single-container .machine-header-container .machine-title .title {
    font-size: 28px;
    font-weight: 600;
}

.machine-single-container .machine-header-container .machine-title .subtitle {
    font-size: 12px;
    color: #bfbfbf;
}

.machine-single-container .machine-body {
    padding-top: 10px;
}

.machine-single-container .machine-body .machine-url,
.machine-detail-row .machine-detail-data .machine-url {
    font-size: 16px;
    font-weight: bold;
    border-bottom: 1px solid;
    color: #0b218e;
    margin-right: 10px;
    background-color: transparent;
}

.machine-single-container .machine-body svg,
.file-item svg {
    cursor: pointer;
}

.machine-list {
    padding-top: 100px;
}

.file-item {
    margin-bottom: 15px;
}

.help-first,
.help-second {
    height: 600px;
    border-radius: 20px;
}

@media (min-width:992px) {
    .help-first {
        margin-right: 40px;
    }

    .help-second {
        margin-left: 40px;
    }
}

.home-container-help .help-first,
.home-container-help .help-second {
    display: flex;
    justify-content: center;
    background-color: #f6f6f8;
    color: #030b30;
}

.home-container-help .xrm-attribute {
    color: inherit;
}

.home-container-help .help-section .xrm-attribute-value {
    display: flex;
    flex-direction: column;
    padding: 100px 0px;
    align-items: center;
    color: inherit;
}

.home-container-help .help-section .xrm-attribute-value a {
    color: inherit;
    position: absolute;
    bottom: 72px;
}

.home-container-help .help-icon {
    padding-bottom: 10px;
    color: inherit;
    height: 150px;
}

.home-container-help .help-icon img {
    height: 150px;
}

.home-container-help .help-title {
    font-size: 32px;
    font-weight: 600;
    color: #162b93;
    padding: 20px 50px 20px 50px;
    text-align: center;
}

.home-container-help .help-body {
    padding: 0px 20px 10px 20px;
    color: inherit;
    font-size: 20px;
}

.promotions-container .promotion-panel {
    border: 1px solid rgba(0, 0, 0, .2);
    -webkit-background-clip: padding-box;
    /* for Safari */
    position: relative;
    background-clip: padding-box;
    height: 700px;
}

.promotions-container .promotion-panel .promotion-box {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    /*align-items: center;*/
    /*padding: 0px 50px;*/
    margin-top: 40px;
}

.promotions-container .promotion-panel .promotion-box .promotion-img {
    padding: 0px 50px;
    height: 200px;
    position: sticky;
}

.promotions-container .promotion-panel .promotion-box .promotion-text {
    padding: 0px 50px;
}

.promotions-container .promotion-panel .promotion-box .promotion-title {
    font-size: 37.9px;
    font-weight: bold;
}

.promotions-container .promotion-panel .promotion-box .promotion-body {
    font-size: 21.3px;
    padding-top: 16px;
    padding-bottom: 21px;
}

.promotions-container .promotion-panel .promotion-bottom {
    position: absolute;
    bottom: 60px;
    left: 0;
}

@media (min-width:1200px) {
    .promotions-container .promotion-panel .promotion-bottom {
        bottom: 140px;
    }
}

.promotions-container .promotion-panel .promotion-bottom .promotion-btn-find {
    padding: 0px 50px;
    margin-bottom: -64px;
}

.promotions-container .promotion-button {
    position: absolute;
    top: 50%;
    z-index: 1;
    border-color: transparent;
    border-radius: 5px;
    height: 35px;
    width: 35px;
}

.promotions-container .promotion-button.prev {
    left: 25px;
}

.promotions-container .promotion-button.prev::after {
    content: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22currentColor%22%20class%3D%22bi%20bi-chevron-left%22%20viewBox%3D%220%200%2016%2016%22%3E%0A%20%20%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M11.354%201.646a.5.5%200%200%201%200%20.708L5.707%208l5.647%205.646a.5.5%200%200%201-.708.708l-6-6a.5.5%200%200%201%200-.708l6-6a.5.5%200%200%201%20.708%200z%22%2F%3E%0A%3C%2Fsvg%3E);
    vertical-align: sub;
}

.promotions-container .promotion-button.next {
    right: 25px;
}

.promotions-container .promotion-button.next::after {
    content: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22currentColor%22%20class%3D%22bi%20bi-chevron-right%22%20viewBox%3D%220%200%2016%2016%22%3E%0A%20%20%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M4.646%201.646a.5.5%200%200%201%20.708%200l6%206a.5.5%200%200%201%200%20.708l-6%206a.5.5%200%200%201-.708-.708L10.293%208%204.646%202.354a.5.5%200%200%201%200-.708z%22%2F%3E%0A%3C%2Fsvg%3E);
    vertical-align: sub;
}

.slick-list {
    padding: 0 20% 0 20% !important;
}

@media (max-width: 480px) {
    .slick-list {
        padding: 0 15% 0 15% !important;
    }
}

@media (max-width: 700px) {
    .promotions-container .promotion-panel {
        height: 600px;
    }

    .promotions-container .promotion-panel .promotion-box .promotion-title {
        font-size: 4vw;
        line-height: 4vw;
    }

    .promotions-container .promotion-panel .promotion-box .promotion-body {
        font-size: 3vw;
    }

    .promotions-container .promotion-panel .promotion-bottom .promotion-btn-find {
        margin-bottom: 0px;
    }

    div.footer-paragraph-container {
        white-space: normal;
    }
}

@media (min-width: 700px) and (max-width: 1400px) {
    .promotions-container .promotion-panel .promotion-box .promotion-title {
        font-size: 3vw;
        line-height: 3vw;
    }

    .promotions-container .promotion-panel .promotion-bottom .promotion-btn-find {
        margin-bottom: -30px;
    }
}

.button-home-box {
    width: 55px;
    background-color: var(--dentist-green);
    display: inline-block;
    border-radius: 5px;
    color: inherit;
}

.button-home {
    position: sticky;
    display: inline-block;
    padding: 0.8em 2em;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: .3s;
    border-radius: 5px;
    white-space: nowrap;
    color: #162b93;
    text-transform: uppercase;
    cursor: pointer;
}

.button-home::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 10px;
    z-index: -1;
    content: '';
    background: var(--dentist-green);
    border-radius: 5px;
    transform: scale(0, 1);
    /*animation: hover-button-home-out 1s forwards alternate;*/
}

.button-home:hover::before {
    animation: hover-button-home-in .3s forwards alternate;
}

/* CUSTOM BUTTON HOME BOX */
.help-contact .button-home-box,
.help-operation .button-home-box {
    background-color: var(--dentist-green);
}

.help-contact .button-home::before,
.help-operation .button-home::before {
    background: var(--dentist-green);
}

@keyframes hover-button-home-in {
    0% {
        transform-origin: left top;
        transform: scale(0, 1);
    }

    100% {
        transform-origin: left top;
        transform: scale(1, 1);
    }
}

@keyframes hover-button-home-out {
    0% {
        transform-origin: left top;
        transform: scale(1, 1);
    }

    100% {
        transform-origin: left top;
        transform: scale(0, 1);
    }
}

.button-home-left-icon {
    margin-left: -20px;
    margin-right: 10px;
}

.button-catalog a {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 40px;
    padding-left: 40px;
    text-transform: uppercase;
    text-decoration: none;
    background-color: var(--dentist-green);
    color: white;
    border-radius: 5 px;
}

.button-catalog {
    border-radius: 5px;
    text-align: center;
    margin-top: 30px;
    font-weight: bold;
}

.button-catalog svg {
    vertical-align: -3px;
}

.catalog-go-container {
    text-align: center;
    margin-top: 35px;
    background-color: transparent;
    color: #000000;
    border-radius: 15px;
    padding: 30px;
}

.button-description {
    margin-bottom: 10px;
    font-size: 21px;
}

.search-container {
    padding-top: 38px;
}

.fast-search-container {
    /* background-color: #030b30; */
    /* #0b218e;*/
    color: white;
    padding: 30px;
    text-align: center;
    border-radius: 5px;
}

.fast-search-container.home {
    background-color: #0b218e;
}

#fast-search-button {
    color: black;
    background-color: var(--dentist-green);
    border-radius: 6px;
    border: none;
    padding: 3px 12px 0px 7px;
    margin-left: -18px;
    height: 43px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

#fast-search-button::after {
    content: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22currentColor%22%20class%3D%22bi%20bi-search%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cpath%20d%3D%22M11.742%2010.344a6.5%206.5%200%201%200-1.397%201.398h-.001c.03.04.062.078.098.115l3.85%203.85a1%201%200%200%200%201.415-1.414l-3.85-3.85a1.007%201.007%200%200%200-.115-.1zM12%206.5a5.5%205.5%200%201%201-11%200%205.5%205.5%200%200%201%2011%200z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E);
    padding: 0px 5px 0px 6px;
    vertical-align: middle;
}

input#fast-search-input {
    font-size: 13px;
    height: 43px;
    width: 82%;
    border-radius: 5px;
    border-color: transparent;
}

input#fast-search-input:focus {
    outline: none !important;
}

.fast-search-p {
    color: white;
    font-size: 36px;
}

#reset-fast-search-button {
    margin-left: -70px;
    margin-right: 25px;
    border-color: transparent;
}

#reset-fast-search-button::after {
    content: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%23888888%22%20class%3D%22bi%20bi-x-lg%22%20viewBox%3D%220%200%2016%2016%22%3E%0A%20%20%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M13.854%202.146a.5.5%200%200%201%200%20.708l-11%2011a.5.5%200%200%201-.708-.708l11-11a.5.5%200%200%201%20.708%200Z%22%2F%3E%0A%20%20%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M2.146%202.146a.5.5%200%200%200%200%20.708l11%2011a.5.5%200%200%200%20.708-.708l-11-11a.5.5%200%200%200-.708%200Z%22%2F%3E%0A%3C%2Fsvg%3E);
}

.promotion-image-link-container {
    height: 200px;
    position: fixed;
}

img.slide-images {
    display: block;
    max-height: 200px;
    max-width: 165px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {

    .prev,
    .next,
    .text {
        font-size: 11px
    }

    .promotion-title {
        font-size: 20px;
        line-height: 20px;
    }

    .promotion-body {
        font-size: 15px;
    }
}

/* Personalizzazione home - FINE */

/* Personalizzazione pagina Catalog - INIZIO */
div.product-body-container {
    padding-top: 30px;
    padding-bottom: 60px;
    min-height: 384px;
}

p.filters-title {
    text-transform: uppercase;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #585858;
    padding: 4px 0px 12px 0px;
}

table#product-table {
    width: 100%;
}

table#product-table tr.product-tr {
    border-bottom: 1px solid #E2E2E2;
}

table#product-table tr.product-tr td img,
.current-product-detail-image,
.order-product-detail img {
    margin-top: 15px;
    margin-bottom: 15px;
    height: 200px;
    width: 200px;
    border-radius: 20px;
    border: solid 1px #eeefef;
}

table#product-table tr.product-tr td p {
    margin: 0;
}



.product-td-actions table.product-table-actions {
    /*position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    bottom: 0;*/
    margin-top: 30px;
    margin-bottom: 30px;
}

table.product-table-actions,
table.product-table-actions tr {
    width: 100%;
}

.product-td-images {
    width: 25%;
    vertical-align: top;
}

.product-td-infos {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 15px;
    display: flex;
}

.report-missing-product {
    text-transform: uppercase;
    margin-top: 20px;
    margin-right: 30px;
    border-radius: 5px;
    padding-top: 5px;
    background-color: #ced2e8;
    display: flex;
}

.report-missing-product>a {
    background-color: #ced2e8;
    color: #0B218E;
    font-weight: 600;
}

#load-more-button {
    margin-top: 60px;
    background-color: #e6e8f3;
    color: #4656aa;
    font-size: 19px;
    font-weight: 700;
    vertical-align: middle;
    border: none;
    border-radius: 6px;
}

#load-more-button:focus {
    outline: none;
}

.current-product-detail-image {
    margin-top: 28px;
    height: 247px;
    width: 247px;
}

.current-product-status {
    width: fit-content;
    color: white;
    border-radius: 5px;
    text-align: center;
    padding: 0px 6px 0px 6px;
    border: none;
    text-transform: uppercase;
}

.current-product-status.available {
    background-color: #13bf2e;
}

.current-product-status.available::before {
    content: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20fill%3D%22white%22%20class%3D%22bi%20bi-check-circle-fill%22%20viewBox%3D%220%200%2016%2016%22%3E%0A%20%20%3Cpath%20d%3D%22M16%208A8%208%200%201%201%200%208a8%208%200%200%201%2016%200zm-3.97-3.03a.75.75%200%200%200-1.08.022L7.477%209.417%205.384%207.323a.75.75%200%200%200-1.06%201.06L6.97%2011.03a.75.75%200%200%200%201.079-.02l3.992-4.99a.75.75%200%200%200-.01-1.05z%22%2F%3E%0A%3C%2Fsvg%3E);
    padding: 0px 5px 0px 0px;
    vertical-align: middle;
}

.current-product-status.not-available {
    background-color: #bf2709;
    display: none;
}

.current-product-status.not-available::before {
    content: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20fill%3D%22white%22%20class%3D%22bi%20bi-x-circle-fill%22%20viewBox%3D%220%200%2016%2016%22%3E%0A%09%09%3Cpath%20d%3D%22M16%208A8%208%200%201%201%200%208a8%208%200%200%201%2016%200zM5.354%204.646a.5.5%200%201%200-.708.708L7.293%208l-2.647%202.646a.5.5%200%200%200%20.708.708L8%208.707l2.646%202.647a.5.5%200%200%200%20.708-.708L8.707%208l2.647-2.646a.5.5%200%200%200-.708-.708L8%207.293%205.354%204.646z%22%2F%3E%0A%09%3C%2Fsvg%3E);
    padding: 0px 5px 0px 0px;
    vertical-align: middle;
}

.current-product-info,
.current-product-info a,
.current-product-info a:hover,
.current-product-info a:active,
.current-product-info a:focus {
    color: #212121;
    text-transform: capitalize;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    margin: 10px 0px;
    /*padding-top: 16px;*/
    padding-bottom: 16px;
    background-color: transparent;
}

.current-product-info-price,
.current-product-info-price a,
.current-product-info-price a:hover,
.current-product-info-price a:active,
.current-product-info-price a:focus {
    color: #0a218e;
    text-transform: capitalize;
    font-size: 35px;
    text-decoration: none;
    margin: 10px 0px;
}

.product-td-actions {
    width: 20%;
    min-width: 150px;
    position: relative;
}

.product-table-actions-td {
    width: 30px;
}

tr.product-table-actions-tr-top td {
    /*padding-bottom: 10px;*/
}

tr.product-table-actions-tr-bottom td {
    padding-top: 10px;
    text-align: center;
}

.quantity-description-container {
    width: calc(100% - 60px);
}

.product-table-actions-td button {
    font-size: 30px;
    font-weight: 100;
    width: 30px;
    padding: 0;
    border: solid 1px #0b218e;
    border-radius: 6px;
    line-height: 1;
    color: white;
    background-color: #0b218e;
}

div.filter-row {
    min-height: 84px;
}

div.filter-row-small {
    min-height: 40px;
}

/* Questa classe vale sia per la pagine Catalg che per Shopping Cart */
.freight-tooltip {
    border: 1px solid #727272;
    border-radius: 50px;
    padding: 0px 7px;
    font-size: 12px;
    margin-left: 3px;
}

div.filters-container {
    padding: 10px 10px 0px 10px;
    /*margin-right: 10px;*/
    margin-top: 15px;
    border-radius: 22px;
    background-color: #fff;
    border: 4px solid #f2f2f2;
}

div.filters-container .filter-btn {
    margin-top: 20px;
    min-height: 50px;
}

div.filters-container .filter-btn div {
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

div.filters-container .filter-bnt .btn {
    padding: 0px 14px;
}

.filters-container>h4 {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
    text-align: center;
}

.filters-container>h6 {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    text-align: center;
    color: #4f4f4f;
}

input.filter {
    border-color: #E2E2E2;
    background-color: #FAFAFA;
    padding-top: 10px;
    margin-bottom: 20px;
}

ul.chosen-choices,
li.search-field,
input.chosen-search-input {
    background-color: #FAFAFA !important;
    width: 100% !important;
    min-height: 31px;
}

ul.chosen-choices {
    padding: 0 !important;
    color: #fafafa !important;
    margin-bottom: 20px !important;
    border-radius: 7px;
}

.chosen-container .chosen-drop {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.chosen-container-multi .chosen-choices {
    background-image: none !important;
    background-color: #FAFAFA !important;
}

.chosen-container-multi .chosen-choices li.search-field input[type=text] {
    color: #fafafa !important;
    border: unset !important;
}

div.chosen-container.chosen-container-multi {
    width: 100% !important;
}

.chosen-container .chosen-drop {
    top: calc(100% - 20px) !important;
}

.blue-container {
    padding: 5px 0px 5px 0px;
    background-color: #ced2e8;
    color: #0B218E;
    border-radius: 5px;
    text-align: center;
    text-transform: uppercase;
    margin-top: 25px;
    font-size: 12px;
}

.blue-container::before {
    content: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%230B218E%22%20class%3D%22bi%20bi-envelope-fill%22%20viewBox%3D%220%200%2016%2016%22%3E%0A%20%20%3Cpath%20d%3D%22M.05%203.555A2%202%200%200%201%202%202h12a2%202%200%200%201%201.95%201.555L8%208.414.05%203.555ZM0%204.697v7.104l5.803-3.558L0%204.697ZM6.761%208.83l-6.57%204.027A2%202%200%200%200%202%2014h12a2%202%200%200%200%201.808-1.144l-6.57-4.027L8%209.586l-1.239-.757Zm3.436-.586L16%2011.801V4.697l-5.803%203.546Z%22%2F%3E%0A%3C%2Fsvg%3E);
    padding-right: 10px;
    vertical-align: middle;
}

.blue-container a {
    color: #0B218E;
    text-align: left;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 0px;
    background-color: transparent;
    font-size: 14px;
    text-align: center;
}

.blue-container a:hover,
.blue-container a:active {
    color: #000007;
    text-align: left;
    background-color: transparent;
}

button.request-quote-button {
    font-size: 15px;
    width: 100%;
    border: none;
    padding: 16px;
    background-color: #e6e8f3;
    color: #0B218E;
    margin-top: 10px;
    padding: 4px 4px 4px 4px;
}

p.current-product-delivery-time-p {
    color: #868686;
}

p.current-product-dual-use-warning-label-p {
    color: #868686;
    font-size: 13px;
    padding-bottom: 14px;
}

.del-time {
    margin-bottom: 15px !important;
}

p.unit-of-measure {
    text-align: center;
    color: #cecece;
    font-weight: 400;
    text-transform: lowercase;
}

p.request-quote-button-description {
    display: inline;
    text-transform: uppercase;
    color: #4656aa;
    font-size: 14px;
    font-weight: 700;
    vertical-align: middle;
}

p.request-quote-button-description::before,
div.report-missing-product a::before {
    /* content: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2214%22%20height%3D%2214%22%20fill%3D%22%23000000%22%20class%3D%22bi%20bi-envelope-fill%22%20viewBox%3D%220%200%2016%2016%22%3E%0A%20%20%3Cpath%20d%3D%22M.05%203.555A2%202%200%200%201%202%202h12a2%202%200%200%201%201.95%201.555L8%208.414.05%203.555ZM0%204.697v7.104l5.803-3.558L0%204.697ZM6.761%208.83l-6.57%204.027A2%202%200%200%200%202%2014h12a2%202%200%200%200%201.808-1.144l-6.57-4.027L8%209.586l-1.239-.757Zm3.436-.586L16%2011.801V4.697l-5.803%203.546Z%22%2F%3E%0A%3C%2Fsvg%3E);*/
    content: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%230B218E%22%20class%3D%22bi%20bi-envelope-fill%22%20viewBox%3D%220%200%2016%2016%22%3E%0A%20%20%3Cpath%20d%3D%22M.05%203.555A2%202%200%200%201%202%202h12a2%202%200%200%201%201.95%201.555L8%208.414.05%203.555ZM0%204.697v7.104l5.803-3.558L0%204.697ZM6.761%208.83l-6.57%204.027A2%202%200%200%200%202%2014h12a2%202%200%200%200%201.808-1.144l-6.57-4.027L8%209.586l-1.239-.757Zm3.436-.586L16%2011.801V4.697l-5.803%203.546Z%22%2F%3E%0A%3C%2Fsvg%3E);
    padding: 0px 5px 0px 6px;
    vertical-align: middle;
}

div.report-block-desription>div>div {
    padding-top: 20px;
}

div.report-missing-product {
    margin-top: 6px;
    background-color: var(--secondary-color-7);
    width: 100%;
}

div.report-missing-product>div {
    width: 100%;
    text-align: center;
}

div.report-missing-product>a,
div.report-missing-product>a:hover,
div.report-missing-product>a:focus,
#reportProductsButton  {
    border-radius: 10px;
    background-color: var(--secondary-color-7);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    vertical-align: middle;
    text-align: center;
    width: 100%; 

}

div.report-missing-product>div>div>a::before {
    content: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2214%22%20height%3D%2214%22%20fill%3D%22%230B218E%22%20class%3D%22bi%20bi-envelope-fill%22%20viewBox%3D%220%200%2016%2016%22%3E%0A%20%20%3Cpath%20d%3D%22M.05%203.555A2%202%200%200%201%202%202h12a2%202%200%200%201%201.95%201.555L8%208.414.05%203.555ZM0%204.697v7.104l5.803-3.558L0%204.697ZM6.761%208.83l-6.57%204.027A2%202%200%200%200%202%2014h12a2%202%200%200%200%201.808-1.144l-6.57-4.027L8%209.586l-1.239-.757Zm3.436-.586L16%2011.801V4.697l-5.803%203.546Z%22%2F%3E%0A%3C%2Fsvg%3E);
    padding: 0px 5px 0px 6px;
    vertical-align: middle;
}

label.filter-label {
    font-size: 14px;
    padding: 0;
    font-weight: 600;
}

.shopping-cart-images {
    width: 75px !important;
    vertical-align: top;
}

.shopping-cart-images img {
    width: 75px !important;
    height: 75px !important;
}

.shopping-cart-td-infos {
    display: block;
}

.productname {
    font-weight: 800;
    font-size: 13px;
}

.shopping-cart-label {
    color: #868686;
    font-size: 12px;
}

.shopping-cart-steps-info {
    color: #4656aa;
    font-size: 20px;
    text-align: right;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 20px;
}

.shopping-cart-steps-info span {
    color: #4656aa;
}

/* Input range pagina Catalog - INIZIO */
/* https://codeconvey.com/pure-css-range-slider-with-2-handles/ */
[slider] {
    position: relative;
    height: 14px;
    border-radius: 10px;
    text-align: center;
}

[slider]>div {
    position: absolute;
    left: 13px;
    right: 15px;
    height: 14px;
    top: 25px;
}

[slider]>div>[inverse-left] {
    position: absolute;
    left: 0;
    height: 5px;
    border-radius: 10px;
    background-color: #CCC;
    margin: 0 7px;
}

[slider]>div>[inverse-right] {
    position: absolute;
    right: 0;
    height: 5px;
    border-radius: 10px;
    background-color: #CCC;
    margin: 0 7px;
}

[slider]>div>[range] {
    position: absolute;
    left: 0;
    height: 5px;
    border-radius: 14px;
    background-color: var(--dentist-green);
}

[slider]>div>[thumb] {
    position: absolute;
    top: -8px;
    z-index: 2;
    height: 20px;
    width: 20px;
    text-align: left;
    margin-left: -11px;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
    background-color: #FFF;
    border-radius: 50%;
    outline: none;
}

[slider]>section>input[type=range] {
    position: absolute;
    pointer-events: none;
    -webkit-appearance: none;
    z-index: 3;
    height: 14px;
    top: -2px;
    width: 100%;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
}

div[slider]>section>input[type=range]::-ms-track {
    -webkit-appearance: none;
    background: transparent;
    color: transparent;
}

div[slider]>section>input[type=range]::-moz-range-track {
    -moz-appearance: none;
    background: transparent;
    color: transparent;
}

div[slider]>section>input[type=range]:focus::-webkit-slider-runnable-track {
    background: transparent;
    border: transparent;
}

div[slider]>section>input[type=range]:focus {
    outline: none;
}

div[slider]>section>input[type=range]::-ms-thumb {
    pointer-events: all;
    width: 28px;
    height: 28px;
    border-radius: 0px;
    border: 0 none;
    background: red;
}

div[slider]>section>input[type=range]::-moz-range-thumb {
    pointer-events: all;
    width: 28px;
    height: 28px;
    border-radius: 0px;
    border: 0 none;
    background: red;
}

div[slider]>section>input[type=range]::-webkit-slider-thumb {
    pointer-events: all;
    width: 28px;
    height: 28px;
    border-radius: 0px;
    border: 0 none;
    background: red;
    -webkit-appearance: none;
}

div[slider]>section>input[type=range]::-ms-fill-lower {
    background: transparent;
    border: 0 none;
}

div[slider]>section>input[type=range]::-ms-fill-upper {
    background: transparent;
    border: 0 none;
}

div[slider]>section>input[type=range]::-ms-tooltip {
    display: none;
}

.fast-search-container-catalog {
    border-radius: 0px;
}

input#fast-search-input {
    padding-right: 51px;
    padding-left: 15px;
    color: black;
    width: 50%;
    font-size: 15px;
    border: 1px solid var(--secondary-color-1);
}

input#fast-search-input::placeholder {
    color: #BFBFBF;
}

button.catalog-button-search-input {
    text-align: center;
    position: absolute;
    color: black;
    background-color: #ffc000;
    border-radius: 5px;
    border: none;
    padding: 8px 13px 4px 13px;
    margin-left: -49px;
}

.range-slider span {
    display: inline-block;
    padding-top: 0px;
    top: 8px;
    position: relative;
}

span.rangeValuesUnitOfMeasure {
    left: 6px;
}

section.range-slider {
    position: relative;
    width: 100%;
    height: 40px;
    text-align: center;
}

section.range-slider {
    display: inline-block;
    width: 100%;
}

/* Input range pagina Catalog - FINE */

/* Personalizzazione dialog prodotto aggiunto - INIZIO */
.ui-widget-overlay {
    position: fixed !important;
}

.product-added-dialog {
    position: fixed !important;
    top: 100px !important;
    right: 100px !important;
    left: unset !important;
    bottom: unset !important;
}

.ui-dialog .ui-dialog-titlebar-close {
    right: -10px;
}

ui-widget .product-added-dialog {
    font-family: Verdana, Arial, sans-serif;
    font-size: .8em;
}

.ui-widget-content.product-added-dialog {
    border: unset;
    color: #222222;
}

.ui-dialog.product-added-dialog {
    outline: 0 none;
    padding: 0 16px !important;
    background-color: #ffffff;
    border-radius: 20px;
}

.ui-dialog.product-added-dialog .ui-dialog-content {
    background: none repeat scroll 0 0 transparent;
    border: 0 none;
    overflow: auto;
    position: relative;
    margin: 0;
    padding: 15px 5px;
    /* min-height: 70px !important; */
}

.ui-dialog.product-added-dialog .ui-widget-header {
    border: 0;
    color: #fff;
    font-weight: normal;
}

.ui-dialog.product-added-dialog .ui-dialog-titlebar {
    padding: 0;
    position: relative;
    font-size: 1em;
    background-color: #ffffff;
}

.ui-dialog.product-added-dialog .ui-dialog-titlebar span.ui-dialog-title {
    padding-top: 10px;
    background-color: transparent;
    color: #2d468e;
    font-size: 16px;
    text-align: left;
    font-weight: 700;
    white-space: normal !important;
}

button.ui-dialog-titlebar-close {
    background-color: transparent;
    border: none;
}

button.ui-dialog-titlebar-close::after {
    content: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%23888888%22%20class%3D%22bi%20bi-x-lg%22%20viewBox%3D%220%200%2016%2016%22%3E%0A%20%20%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M13.854%202.146a.5.5%200%200%201%200%20.708l-11%2011a.5.5%200%200%201-.708-.708l11-11a.5.5%200%200%201%20.708%200Z%22%2F%3E%0A%20%20%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M2.146%202.146a.5.5%200%200%200%200%20.708l11%2011a.5.5%200%200%200%20.708-.708l-11-11a.5.5%200%200%200-.708%200Z%22%2F%3E%0A%3C%2Fsvg%3E);
}

.ui-dialog-content {
    padding: 10px 0px 0px 0px !important;
}

.ui-dialog-content button {
    text-transform: lowercase !important;
}

.ui-dialog-content button:first-letter {
    text-transform: capitalize;
}

/* Personalizzazione dialog prodotto aggiunto - FINE */

/* Personalizzazione pagina Catalog - FINE */

/* Personalizzazione pagina Product - INIZIO */

.img-container {
    text-align: center;
}

.cart-operations {
    padding: 20px;
    margin-top: 26px;
    background-color: #f2f2f2;
    border-radius: 5px;
}

.product-table-actions-td button.cart-button {
    border-radius: 5px;
    font-size: 15px;
    width: 100%;
    border: 1px solid var(--dentist-green);
    border-radius: 12px;
    padding: 10px;
    background-color: var(--dentist-green);
    color: black;
}

button.cart-button::before {
    content: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22currentColor%22%20class%3D%22bi%20bi-cart3%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cpath%20d%3D%22M0%201.5A.5.5%200%200%201%20.5%201H2a.5.5%200%200%201%20.485.379L2.89%203H14.5a.5.5%200%200%201%20.49.598l-1%205a.5.5%200%200%201-.465.401l-9.397.472L4.415%2011H13a.5.5%200%200%201%200%201H4a.5.5%200%200%201-.491-.408L2.01%203.607%201.61%202H.5a.5.5%200%200%201-.5-.5zM3.102%204l.84%204.479%209.144-.459L13.89%204H3.102zM5%2012a2%202%200%201%200%200%204%202%202%200%200%200%200-4zm7%200a2%202%200%201%200%200%204%202%202%200%200%200%200-4zm-7%201a1%201%200%201%201%200%202%201%201%200%200%201%200-2zm7%200a1%201%200%201%201%200%202%201%201%200%200%201%200-2z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E);
    padding: 0px 5px 0px 0px;
    vertical-align: middle;
}

.quantity-description {
    border-style: solid;
    text-align: center;
    font-size: 40px;
    color: #212121;
    padding: 0 0 0 5%;
    font-weight: 400;
    line-height: 0.8;
    width: 90%;
    margin: 0 0 0 5%;
    border-radius: 5px;
}

p.cart-button-description {
    display: inline;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    color: white;
}

.current-product-delivery-time-number,
.current-product-code-number {
    font-size: 15px;
}

.current-product-price {
    color: var(--primary-color);
    font-size: 24px;
}

.current-poduct-description {
    font-size: 18px;
    margin-top: 30px;
}

.current-product-code {
    display: inline;
    color: #868686;
}

span.current-product-code::after {
    /*content: "|";*/
    padding: 0px 10px;
    padding-top: 0px;
    padding-right: 10px;
    padding-bottom: 0px;
    padding-left: 10px;
}

.manufacturer {
    padding-left: 10px;
}

.current-product-mmrcode-label,
.current-product-delivery-time-span {
    color: #868686;
    font-size: 15px;
    padding: 10px 0px;
    line-height: 0;
}

.pieces-quantity-info-container {
    margin-bottom: 30px;
}

.pieces-quantity-info {
    color: #0b218e;
    font-weight: 700;
    padding: 0px 7px 0px 7px;
    width: fit-content;
    display: inline;
    border-radius: 5px;
    margin-left: 10px;
}

#checkStock,
.info-tell-me-more {
    color: #0b218e;
    margin-bottom: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
}

.info-discount-p {
    color: rgb(20 169 69);
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    line-height: 0.6;
}

.info-tell-me-more {
    text-align: center;
    padding: 0px 5px;
    cursor: pointer;
}

.info-tell-me-more::after {
    content: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2214%22%20height%3D%2214%22%20fill%3D%22%230b218e%22%20class%3D%22bi%20bi-info-circle-fill%22%20viewBox%3D%220%200%2016%2016%22%3E%0A%20%20%3Cpath%20d%3D%22M8%2016A8%208%200%201%200%208%200a8%208%200%200%200%200%2016zm.93-9.412-1%204.705c-.07.34.029.533.304.533.194%200%20.487-.07.686-.246l-.088.416c-.287.346-.92.598-1.465.598-.703%200-1.002-.422-.808-1.319l.738-3.468c.064-.293.006-.399-.287-.47l-.451-.081.082-.381%202.29-.287zM8%205.5a1%201%200%201%201%200-2%201%201%200%200%201%200%202z%22%2F%3E%0A%3C%2Fsvg%3E);
    padding: 0px 5px;
    vertical-align: middle;
}

#checkStock {
    margin-bottom: 30px;
    border: none;
    cursor: auto;
    padding-left: 10px;
}

.request-quote-link {
    text-align: center;
    color: black;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    background-color: #d9d9d9;
    padding: 5px 20px;
    border-radius: 5px;
}

.request-quote-link::before {
    content: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22black%22%20class%3D%22bi%20bi-envelope-fill%22%20viewBox%3D%220%200%2016%2016%22%3E%0A%20%20%3Cpath%20d%3D%22M.05%203.555A2%202%200%200%201%202%202h12a2%202%200%200%201%201.95%201.555L8%208.414.05%203.555ZM0%204.697v7.104l5.803-3.558L0%204.697ZM6.761%208.83l-6.57%204.027A2%202%200%200%200%202%2014h12a2%202%200%200%200%201.808-1.144l-6.57-4.027L8%209.586l-1.239-.757Zm3.436-.586L16%2011.801V4.697l-5.803%203.546Z%22%2F%3E%0A%3C%2Fsvg%3E);
    padding-right: 10px;
    vertical-align: middle;
}

.amount-notdiscount {
    color: #818181;
    text-decoration: line-through;
    font-size: 18px;
}

.discount-amount-percentage {
    text-align: center;
    background-color: var(--secondary-color-1);
    color: white;
    border-radius: 100px;
    padding: 2px 2px;
    font-size: 16px
}

.d-inline {
    display: inline;
}

.amount-discount {
    color: var(--secondary-color-1);
    font-size: 20px;
}

.amount-notdiscount,
.discount-amount-percentage,
.amount-discount {
    display: inline;
    padding: 0px 5px;
}

.reduce-quantity-button-container p,
.add-quantity-button-container p {
    margin: 0
}

/* Personalizzazione pagina Product - FINE */

/* Personalizzazione pagina Shopping Cart - INIZIO */
.alert-disclaimer {
    clear: both;
    padding-top: 30px;
}

.alert-disclaimer p {
    font-style: italic;
    font-size: 16px;
}

.alert-disclaimer a {
    text-decoration: underline;
}

.deliveryFilter {
    padding: 20px 0px;
}

.filter-label {
    width: 80%;
    padding: 0;
}

.shopping-cart-row-padding {
    padding-top: 30px;
}

.shopping-cart-filter {
    width: 100%;
    min-height: 50px;
    max-width: 100%;
    padding: 10px;
    background-color: #e7e9f4;
    font-weight: 700;
    font-size: 13px;
}

.shopping-cart-filter::placeholder {
    background-color: #e7e9f4;
    opacity: 0.5;
}

input[type=date].shopping-cart-filter:invalid::-webkit-datetime-edit {
    background-color: #e7e9f4;
    opacity: 0.5;
}

table#shopping-cart-item-table {
    width: 100%;
}

table#shopping-cart-item-table tr.product-tr {
    border-bottom: 1px solid #E2E2E2;
    height: 150px;
}

table#shopping-cart-item-table tr.product-tr td img {
    width: 150px;
    height: 150px;
}

#continueButton {
    border-radius: 5px;
    font-size: 16px;
    width: 40%;
    border-radius: 7px;
    padding: 10px;
    color: black;
    text-align: center;
}

#continueButton::after {
    content: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22black%22%20class%3D%22bi%20bi-arrow-right%22%20viewBox%3D%220%200%2016%2016%22%3E%0A%20%20%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M1%208a.5.5%200%200%201%20.5-.5h11.793l-3.147-3.146a.5.5%200%200%201%20.708-.708l4%204a.5.5%200%200%201%200%20.708l-4%204a.5.5%200%200%201-.708-.708L13.293%208.5H1.5A.5.5%200%200%201%201%208z%22%2F%3E%0A%3C%2Fsvg%3E);
    padding-left: 5px;
    vertical-align: middle;
}

button#emptyCartButton,
button#cancelConfirmationButton {
    margin: 0;
    color: #727272;
    background-color: #f2f2f2;
    text-transform: uppercase;
    width: 40%;
    font-size: 19px;
    border: none;
    margin: 0px 5px;
    border-radius: 7px;
    display: inline;
}

button.remove-product-button,
button.confirm-product-button {
    margin: 0;
    color: #727272;
    background-color: #f2f2f2;
    text-transform: uppercase;
    width: 32px;
    font-size: 20px;
    border: none;
    margin: 0px 5px;
    border-radius: 5px;
    position: relative;
    bottom: 5px;
    padding: 2px;
}

button.remove-product-button i {
    font-size: 16px;
}

/*
  button.remove-product-button:before {
    content: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%23D20202%22%20class%3D%22bi%20bi-trash3-fill%22%20viewBox%3D%220%200%2016%2016%22%3E%0A%20%20%3Cpath%20d%3D%22M11%201.5v1h3.5a.5.5%200%200%201%200%201h-.538l-.853%2010.66A2%202%200%200%201%2011.115%2016h-6.23a2%202%200%200%201-1.994-1.84L2.038%203.5H1.5a.5.5%200%200%201%200-1H5v-1A1.5%201.5%200%200%201%206.5%200h3A1.5%201.5%200%200%201%2011%201.5Zm-5%200v1h4v-1a.5.5%200%200%200-.5-.5h-3a.5.5%200%200%200-.5.5ZM4.5%205.029l.5%208.5a.5.5%200%201%200%20.998-.06l-.5-8.5a.5.5%200%201%200-.998.06Zm6.53-.528a.5.5%200%200%200-.528.47l-.5%208.5a.5.5%200%200%200%20.998.058l.5-8.5a.5.5%200%200%200-.47-.528ZM8%204.5a.5.5%200%200%200-.5.5v8.5a.5.5%200%200%200%201%200V5a.5.5%200%200%200-.5-.5Z%22%2F%3E%0A%3C%2Fsvg%3E);
    vertical-align: middle;
  }
*/
button[disabled] {
    opacity: 0.3;
}

button[disabled]#emptyCartButton {
    color: #d202027d;
    background-color: #d202021a;
    display: inline;
}

button[disabled].remove-product-button,
button[disabled].confirm-product-button {
    color: #d202027d;
    background-color: #d202021a;
}

.amount-product {
    padding: 0px 0px 0px 5px;
    margin-left: 5px;
    white-space: nowrap;
    font-size: 20px;
    font-weight: 600;
}

.quantity-label {
    text-align: center;
    padding-right: 108px;
}

.product-title-label {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: unset;
}

.add-quantity-button,
.reduce-quantity-button {
    font-size: 30px;
    font-weight: 100;
    width: 30px;
    padding: 0;
    border: solid 1px var(--primary-color);
    border-radius: 5px;
    line-height: 1;
    color: white;
    background-color: var(--primary-color);
    margin-bottom: 30px;
}

.add-quantity-button-shopping-cart,
.reduce-quantity-button-shopping-cart {
    font-size: 30px;
    font-weight: 100;
    width: 30px;
    padding: 0;
    border: solid 1px var(--primary-color);
    border-radius: 5px;
    line-height: 1;
    color: white;
    background-color: var(--primary-color);
}

#subtotal-product-content,
#delivery-total-product-content {
    color: #3A3A3A;
    font-size: 18px;
    font-weight: bold;
}

.subtotal-label,
.delivery-label,
.vat-label {
    color: #3A3A3A;
    font-size: 18px;
}

#total-product-content,
.total-label {
    color: #049120;
    font-size: 28px;
}

div.amounts-row {
    display: table;
    width: 100%;
}

.amounts-row-label {
    width: 200px;
    float: right;
    text-align: right;
}

.amounts-row-value {
    width: 200px;
    float: right;
    text-align: right;
}

.shopping-cart-label-grey {
    color: #898989;
}

#shopping-cart-total-product-content {
    font-size: 28px;
    font-weight: 700;
}

.deliveryFilter {
    padding: unset;
    padding-bottom: 18px;
}

.deliveryFilter select,
.deliveryFilter input {
    border: none;
    border-radius: 7px;
}

.quantity-description-shopping-cart {
    text-align: center;
    font-size: 32px;
    color: #212121;
    padding: 0px 20px;
    padding: 12px 25px 0px 25px;
    line-height: 0.5;
}

#continueButton,
#confirmButton,
#emptyCartButton,
#cancelConfirmationButton {
    width: unset !important;
    padding: 10px 30px;
    float: right;
    font-size: 18px;
    font-weight: 700;
}

button#emptyCartButton,
button#cancelConfirmationButton {
    background-color: #f2f2f2;
    color: #727272;
}

/* Personalizzazione pagina Shopping Cart - FINE */

/* Personalizzazione pagina Account - INIZIO */

div.alert.alert-info {
    word-break: break-all;
    background-color: white;
    border: 2px solid #ebebeb;
    border-radius: 17px;
}

div.account-body-container {
    padding-bottom: 60px;
}

.hr-top {
    border-color: #D8D8D8;
    margin: auto;
    margin-top: 10px;
}

button.active {
    background-color: #3c60c7;
    color: white;
    border-color: inherit;
}

table#address-item-table {
    width: 100%;
}

.address-item-table-body-tr {
    border-bottom: 1px solid #E2E2E2;
    color: black;
}

.address-item-table-body-tr td,
.product-title-label {
    padding-top: 12px;
    padding-bottom: 12px;
}

div.request-address-container {
    text-align: center;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 50px;
}

a.send-email-link-black {
    border: solid 1px black;
    padding: 5px 20px 5px 20px;
    border-radius: 5px;
    margin-top: 30px;
    color: #282828;
    font-weight: bold;
    display: block;
    margin-bottom: 20px;
}

/* Personalizzazione slider (toggle) pagina Account - INIZIO */
label.switch {
    position: relative;
    display: inline-block;
    width: 30px;
    margin-bottom: 0px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 4px;
    left: 0;
    right: 0;
    bottom: 0;
    height: 14px;
    background-color: #e60026;
    -webkit-transition: .4s;
    transition: .4s;
    width: 25px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #14a945;
}

input:focus+.slider {
    box-shadow: 0 0 1px #14a945;
}

input:checked+.slider:before {
    -webkit-transform: translateX(12px);
    -ms-transform: translateX(12px);
    transform: translateX(12px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

label.switch.disabled,
.switch.disabled input,
.slider.disabled,
.slider.disabled:before,
input:checked+.slider.disabled,
input:focus+.slider.disabled,
input:checked+.slider.disabled:before,
.slider.disabled.round,
.slider.disabled.round:before {
    position: unset;
    width: unset;
    height: unset;
    opacity: unset;
    top: unset;
    left: unset;
    right: unset;
    bottom: unset;
    background-color: unset;
    box-shadow: unset;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
    border-radius: unset;
}

/* Personalizzazione slider (toggle) pagina Account - FINE */

.toggle-label {
    color: black;
    padding-left: 8px;
    padding-right: 20px;
}

.toggle-label.disabled {
    padding-left: 0px;
    padding-right: 5px;
}

input[type=checkbox].account-detail-field:disabled {
    visibility: hidden;
    /* nasconde il checkbox di default */
    width: 20px;
    margin-left: 15px;
}

input[type=checkbox].account-detail-field:disabled::after {
    /* icona "X circle fill" (per indicare le checkbox non flaggate) */
    content: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22rgb%28230%200%2038%29%22%20class%3D%22bi%20bi-x-circle-fill%22%20viewBox%3D%220%200%2016%2016%22%3E%0A%09%09%3Cpath%20d%3D%22M16%208A8%208%200%201%201%200%208a8%208%200%200%201%2016%200zM5.354%204.646a.5.5%200%201%200-.708.708L7.293%208l-2.647%202.646a.5.5%200%200%200%20.708.708L8%208.707l2.646%202.647a.5.5%200%200%200%20.708-.708L8.707%208l2.647-2.646a.5.5%200%200%200-.708-.708L8%207.293%205.354%204.646z%22%2F%3E%0A%09%3C%2Fsvg%3E);
    visibility: visible;
}

input[type=checkbox].account-detail-field:disabled:checked::after {
    /* icona "Check circle fill" (per indicare le checkbox flaggate) */
    content: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22rgb%2820%20169%2069%29%22%20class%3D%22bi%20bi-check-circle-fill%22%20viewBox%3D%220%200%2016%2016%22%3E%0A%20%20%3Cpath%20d%3D%22M16%208A8%208%200%201%201%200%208a8%208%200%200%201%2016%200zm-3.97-3.03a.75.75%200%200%200-1.08.022L7.477%209.417%205.384%207.323a.75.75%200%200%200-1.06%201.06L6.97%2011.03a.75.75%200%200%200%201.079-.02l3.992-4.99a.75.75%200%200%200-.01-1.05z%22%2F%3E%0A%3C%2Fsvg%3E);
    visibility: visible;
}

.account-detail-field.slider {
    background-color: #e60026;
}

.account-detail-field.slider.disabled {
    background-color: white;
}

input.account-detail-field:checked+.slider {
    background-color: #14a945;
}

input.account-detail-field:focus+.slider {
    box-shadow: 0 0 1px #14a945;
}

.data-info-container {
    padding-left: 200px;
}

.inline-functions {
    display: block;
}

@media(min-width: 1200px) {
    .inline-functions {
        display: inline-flex;
    }
}

.light-font-weight.font-weight-title {
    font-weight: bold;
    text-transform: uppercase;
}

.info-form-label {
    font-size: 16px;
    color: #404040;
    line-height: 0px;
}

.info-form-row {
    padding-bottom: 32px
}

.info-form-row.first-row {
    padding-top: 32px;
}

.info-form-value {
    background-color: #f2f2f2;
    border: none;
    border-radius: 4px;
    padding: 10px 60px 10px 0px;
    color: black;
    font-size: 19px;
    font-weight: bold;
    width: 100%;
    text-overflow: ellipsis;
}

input[type=text].info-form-value:disabled {
    background-color: white;
}

/* .inline-functions */
/* .inline-functions[disabled]  {
  padding-left: 12px;
  color: #212121;
  font-size: 20px;
  padding-top: 35px;
  line-height: 0px;
  padding-bottom: 5px;
}*/

.account-info-container {
    /*  background-color: #f2f2f2;
*/
    border-radius: 20px;
    padding: 10px 16px 1px 16px;
    margin-top: 64px;
    background-color: #fff;
    border: 4px solid #f2f2f2;
}

.account-info-container .info-item {
    padding: 16px 0;
}

.account-info-container .info-item .info-label,
#info-value-date,
#info-label-date {
    font-size: 16px;
}

.account-info-container .info-item .info-value,
#info-value-date {
    font-weight: bold;
}

.account-form-container {
    margin-top: 64px;
}

.account-info-content-title {
    color: #0b218e;
    font-size: 35px;
    font-weight: 700;
    display: block;
    text-transform: uppercase;
}

.col-md-3.grey-container {
    margin-top: 5px;
    width: 25%;
    background-color: #f2f2f2;
    border-radius: 20px;
    padding: 0px 0px 0px 5px;
}

a.send-email-link-blue {
    /*border: solid 1px #0b218e;*/
    padding: 10px 20px 10px 20px;
    border-radius: 12px;
    margin-top: 20px;
    color: white;
    font-weight: bold;
    /*background-color: #0b218e;*/
    cursor: pointer;
}

a.send-email-link-blue::before {
    content: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22white%22%20class%3D%22bi%20bi-envelope-fill%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cpath%20d%3D%22M.05%203.555A2%202%200%200%201%202%202h12a2%202%200%200%201%201.95%201.555L8%208.414.05%203.555ZM0%204.697v7.104l5.803-3.558L0%204.697ZM6.761%208.83l-6.57%204.027A2%202%200%200%200%202%2014h12a2%202%200%200%200%201.808-1.144l-6.57-4.027L8%209.586l-1.239-.757Zm3.436-.586L16%2011.801V4.697l-5.803%203.546Z%22%2F%3E%3C%2Fsvg%3E);
    padding-right: 10px;
    vertical-align: middle;
}

a.send-email-link-black::before {
    content: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22currentColor%22%20class%3D%22bi%20bi-envelope-fill%22%20viewBox%3D%220%200%2016%2016%22%3E%0A%20%20%3Cpath%20d%3D%22M.05%203.555A2%202%200%200%201%202%202h12a2%202%200%200%201%201.95%201.555L8%208.414.05%203.555ZM0%204.697v7.104l5.803-3.558L0%204.697ZM6.761%208.83l-6.57%204.027A2%202%200%200%200%202%2014h12a2%202%200%200%200%201.808-1.144l-6.57-4.027L8%209.586l-1.239-.757Zm3.436-.586L16%2011.801V4.697l-5.803%203.546Z%22%2F%3E%0A%3C%2Fsvg%3E);
    padding-right: 10px;
    vertical-align: middle;
}

a.send-email-link-blue-secondary::before {
    content: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2214%22%20height%3D%2214%22%20fill%3D%22%230B218E%22%20class%3D%22bi%20bi-envelope-fill%22%20viewBox%3D%220%200%2016%2016%22%3E%0A%20%20%3Cpath%20d%3D%22M.05%203.555A2%202%200%200%201%202%202h12a2%202%200%200%201%201.95%201.555L8%208.414.05%203.555ZM0%204.697v7.104l5.803-3.558L0%204.697ZM6.761%208.83l-6.57%204.027A2%202%200%200%200%202%2014h12a2%202%200%200%200%201.808-1.144l-6.57-4.027L8%209.586l-1.239-.757Zm3.436-.586L16%2011.801V4.697l-5.803%203.546Z%22%2F%3E%0A%3C%2Fsvg%3E);
    padding: 0px 5px 0px 6px;
    vertical-align: middle;
}

a.send-email-link-blue-secondary {
    background-color: #ced2e8;
    color: #0B218E;
    font-weight: 600;
    font-size: 18px;
    display: block;
    text-align: center;
    border-radius: 5px;
    padding: 5px 0;
}

.initial-button-label {
    text-align: center;
    padding-top: 30px;
}

.initial-button-label button.active {
    border-color: transparent;
    border-radius: 5px;
    color: #fff;
    background-color: #808080;
}

.initial-button-label button.active:hover {
    background-color: #404040 !important;
}

#my-company,
#my-data {
    padding: 6px 12px 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

#my-company {
    margin-right: 8px;
}

.addresses-title {
    /*color: black;*/
    font-weight: normal;
    font-size: 30px;
}

#edit-contact-details,
#save-contact-details,
#cancel-contact-details {
    text-transform: uppercase;
}

#cancel-contact-details {
    margin-left: 32px;
}

button#edit-contact-details::before {
    content: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22white%22%20class%3D%22bi%20bi-pencil-fill%22%20viewBox%3D%220%200%2016%2016%22%3E%0A%20%20%3Cpath%20d%3D%22M12.854.146a.5.5%200%200%200-.707%200L10.5%201.793%2014.207%205.5l1.647-1.646a.5.5%200%200%200%200-.708l-3-3zm.646%206.061L9.793%202.5%203.293%209H3.5a.5.5%200%200%201%20.5.5v.5h.5a.5.5%200%200%201%20.5.5v.5h.5a.5.5%200%200%201%20.5.5v.5h.5a.5.5%200%200%201%20.5.5v.207l6.5-6.5zm-7.468%207.468A.5.5%200%200%201%206%2013.5V13h-.5a.5.5%200%200%201-.5-.5V12h-.5a.5.5%200%200%201-.5-.5V11h-.5a.5.5%200%200%201-.5-.5V10h-.5a.499.499%200%200%201-.175-.032l-.179.178a.5.5%200%200%200-.11.168l-2%205a.5.5%200%200%200%20.65.65l5-2a.5.5%200%200%200%20.168-.11l.178-.178z%22%2F%3E%0A%3C%2Fsvg%3E);
    padding-right: 10px;
    vertical-align: middle;
}

#save-contact-details::before {
    content: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22white%22%20viewBox%3D%220%200%20448%20512%22%3E%3Cpath%20d%3D%22M433.1%20129.1l-83.9-83.9C342.3%2038.32%20327.1%2032%20316.1%2032H64C28.65%2032%200%2060.65%200%2096v320c0%2035.35%2028.65%2064%2064%2064h320c35.35%200%2064-28.65%2064-64V163.9C448%20152.9%20441.7%20137.7%20433.1%20129.1zM224%20416c-35.34%200-64-28.66-64-64s28.66-64%2064-64s64%2028.66%2064%2064S259.3%20416%20224%20416zM320%20208C320%20216.8%20312.8%20224%20304%20224h-224C71.16%20224%2064%20216.8%2064%20208v-96C64%20103.2%2071.16%2096%2080%2096h224C312.8%2096%20320%20103.2%20320%20112V208z%22%2F%3E%3C%2Fsvg%3E);
    padding-right: 10px;
    vertical-align: middle;
}

#cancel-contact-details::before {
    content: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22currentColor%22%20class%3D%22bi%20bi-x%22%20viewBox%3D%220%200%2016%2016%22%3E%0A%20%20%3Cpath%20d%3D%22M4.646%204.646a.5.5%200%200%201%20.708%200L8%207.293l2.646-2.647a.5.5%200%200%201%20.708.708L8.707%208l2.647%202.646a.5.5%200%200%201-.708.708L8%208.707l-2.646%202.647a.5.5%200%200%201-.708-.708L7.293%208%204.646%205.354a.5.5%200%200%201%200-.708z%22%2F%3E%0A%3C%2Fsvg%3E);
    padding-right: 10px;
    vertical-align: middle;
}

/* Personalizzazione pagina Account - FINE */

/* Personalizzazione pagina Ordini - INIZIO */
.page-header>h1 {
    text-align: center;
    color: #2E3261;
    font-size: 30px;
    font-weight: bold;
}

.grid-actions {
    border-bottom: none;
    margin-bottom: 9px;
    padding-bottom: 9px;
}

#filterDropdownId,
#filterDropdownId::before {
    color: #3A3A3C;
    font-size: 18px;
    background-color: var(--secondary-color-7);
    border-radius: 5px;
    text-align: center;
    margin-right: 10px;
    /*margin-top: 40px;*/
    /* text-transform: uppercase; */
}

.nav>li>a [class="title"] {
    position: relative;
    padding: 0px 15px;
    color: black;
    font-size: 15px;
}

.nav>li>a [class="caret"] {
    position: relative;
    color: #3A3A3C;
    background-color: #FAFAFA;
}

.nav>li>a [class="fa fa-list"] {
    display: none;
}

.entity-grid .dropdown-menu {
    float: right;
    left: auto;
    right: 0;
}

.entity-grid .dropdown-menu>.active>a[class="dropdown-toggle"] {
    background-color: #FAFAFA;
    color: #3A3A3C;
    border: #E2E2E2 1px solid;
}

.entity-grid .dropdown-menu>.active>a[aria-label="Fulfilled Spare parts Orders"],
.entity-grid .dropdown-menu>.active>a:hover[aria-label="Fulfilled Spare parts Orders"],
.entity-grid .dropdown-menu>.active>a[aria-label="All Spare parts Orders"],
.entity-grid .dropdown-menu>.active>a:hover[aria-label="All Spare parts Orders"] {
    color: #3A3A3C;
    text-decoration: none;
    outline: 0;
    background-color: #FAFAFA;
    text-align: left;
}

.entity-grid th {
    font-weight: normal;
}

table.table.table-striped.table-fluid thead tr th a,
table.table.table-striped.table-fluid thead tr th {
    color: rgb(58, 58, 58);
    text-align: center;
    white-space: nowrap;
    font-weight: bold;
}


.entity-grid {
    margin-top: 15px;
    margin-bottom: 50px;
}

.entity-grid .grid-actions {
    display: flex;
    justify-content: center;
}

.entity-grid .view-grid {
    overflow-x: auto;
    position: relative;
    font-size: 16px;
    color: #3A3A3A;
    white-space: nowrap;
}

.entity-grid .table-striped>tbody>tr:nth-of-type(odd) {
    background-color: white;
}

.entity-grid tr {
    height: 53px;
}

.entity-grid .table>tbody>tr>td {
    vertical-align: middle;
}

.entity-grid .jquery-bootstrap-pagination {
    text-align: center;
}

.entity-grid .view-grid .details-link {
    color: #0b218e;
    text-decoration: underline;
    font-weight: 600;
}

.entity-grid .pagination>.active>a {
    border-radius: 6px;
    background-color: #e7e7f2;
    color: #0b218e;
    border-color: transparent;
}

.entity-grid .pagination>li>a {
    padding: 8px 12px;
    color: #b6b6b6;
    text-wrap: nowrap;
}

.entity-grid .pagination>.disabled>a {
    color: #e9e9e9;
}

td[data-th="SAP Order ID"] {
    color: #4541a0;
    text-decoration: underline;
    font-weight: bold;
}

td[data-th="SAP Order ID"]>a {
    color: #394ba4;
}

td[data-th="SAP Order ID"]>a:hover {
    background-color: inherit;
}

td[data-th="Order ID"] {
    text-decoration: underline;
}

td[data-th="Customer"],
td[data-th="Amount"],
td[data-th="Single delivery"] {
    color: black;
    font-weight: bold;
}

td[data-th="Single delivery"] {
    text-transform: uppercase;
}

a.details-link>time {
    font-weight: bold;
    text-decoration: none;
    color: black;
    cursor: auto;
}

td[aria-label="Active"] {
    color: #F89801;
    background-color: #F5AB3945;
    text-transform: uppercase;
    font-weight: bold;
}

td[aria-label="Delivered"] {
    color: #2E3261;
    background-color: #C6C7D4;
    text-transform: uppercase;
    font-weight: bold;
}

td[aria-label="Canceled"] {
    color: #D20202;
    background-color: #D2020224;
    text-transform: uppercase;
    font-weight: bold;
}

/* Rimuovo componente grafico "imbuto" a lato dei filtri di default di Power Portal */
li.entitylist-filter-option div span.input-group-addon {
    display: none !important;
}

/* Personalizzazione dropdown di filtro generato dalle view CRM */
.dropdown-menu>.active>a,
.dropdown-menu>.active>a:hover,
.dropdown-menu>.active>a:focus {
    color: black;
    text-decoration: none;
    outline: 0;
    background-color: #e1e1e1;
}

.entitylist-filter-option-group-box-overflow {
    max-height: 34px;
}

.entitylist-filter-option-group-box-overflow li div input.form-control {
    height: 34px;
}

/* Personalizzazione pagina Ordini - FINE */
/* Personalizzazione pagina Ordine Dettaglio - INIZIO */
.order-detail-page .subtotal-label,
.order-detail-page .delivery-label {
    font-size: 21px;
}

.order-detail-table {
    font-size: 12px;
}

.order-detail-table th {
    text-transform: uppercase;
}

.order-product-main-row .order-product-name {
    width: max-content;
    max-width: 60%;
    font-weight: bold;
}

.order-product-name>.product-name {
    width: max-content;
}

/* .order-product-main-row.open .order-product-name .product-name:before {
    content: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22currentColor%22%20class%3D%22bi%20bi-chevron-up%22%20viewBox%3D%220%200%2016%2016%22%3E%0A%20%20%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M7.646%204.646a.5.5%200%200%201%20.708%200l6%206a.5.5%200%200%201-.708.708L8%205.707l-5.646%205.647a.5.5%200%200%201-.708-.708l6-6z%22%2F%3E%0A%3C%2Fsvg%3E);
    vertical-align: sub;
    padding-right: 10px;
}

.order-product-main-row.closed .order-product-name .product-name:before {
    content: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%2222currentColor%22%20class%3D%22bi%20bi-chevron-down%22%20viewBox%3D%220%200%2016%2016%22%3E%0A%20%20%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M1.646%204.646a.5.5%200%200%201%20.708%200L8%2010.293l5.646-5.647a.5.5%200%200%201%20.708.708l-6%206a.5.5%200%200%201-.708%200l-6-6a.5.5%200%200%201%200-.708z%22%2F%3E%0A%3C%2Fsvg%3E);
    vertical-align: sub;
    padding-right: 10px;
} */

.order-product-main-row .order-product-code,
.order-product-main-row .order-product-quantity {
    /* width: 0%; */
}

.order-product-main-row .order-product-amount {
    white-space: nowrap;
    font-weight: bold;
}

.order-product-detail td {
    border-top: 1px dashed #979797 !important;
}

.order-product-detail img {
    margin-left: 40px;
    margin-top: 0px;
}

.order-product-detail .product-prices {
    text-align: right;
}

.visible-table-row {
    display: table-row;
}

.text-center {
    text-align: center;
}

.order-detail-info-container,
.order-detail-document-container {
    padding: 10px 16px 0px 16px;
    margin-right: 10px;
    margin-top: 15px;
    border-radius: 22px;
    background-color: #fff;
    border: 4px solid #f2f2f2;
}

.order-detail-info-container .info-header {
    display: flex;
}

.order-detail-info-container .previous-btn {
    height: 35px;
    width: 35px;
    margin-right: 10px;
}

.order-detail-info-container .previous-btn svg {
    vertical-align: sub;
}

.order-detail-info-container .info-item {
    padding: 16px 0;
}

.order-detail-info-container .info-item .order-number {
    color: #21008a;
    text-transform: uppercase;
    font-size: 28px;
    font-weight: bold;
}

.order-detail-info-container .info-item .info-label {
    font-size: 16px;
}

.order-detail-info-container .info-item .info-value,
#info-value-date {
    font-size: 21px;
    font-weight: bold;
}

.order-detail-info-container .info-item .info-status {
    color: #0b218e;
    padding: 3px 7px;
    border-radius: 5px;
}

.order-detail-document-container .title {
    font-size: 21px;
    font-weight: bold;
}

.order-detail-document-container .document-btn-container {
    text-align: center;
    padding: 20px 0;
}

.order-detail-document-container .document-btn-container button {
    width: 100%;
    text-transform: uppercase;
}

@media(max-width: 700px) {
    .order-detail-page {
        margin-top: 30px;
    }
}

/* Personalizzazione pagina Ordine Dettaglio - FINE */

/* Personalizzazione pagina commercial assistance - INIZIO */

.form-control-gray {
    width: 100%;
    min-height: 50px;
    max-width: 100%;
    padding: 10px;
    background-color: #e7e9f4;
    border: none;
    border-radius: 7px;
}

.form-control-gray::placeholder {
    height: 112px;
    width: 568px;
    color: #000000;
    font-family: "Nunito Sans";
    font-size: 16px;
    letter-spacing: 0;
    line-height: 28px;
}

textarea.form-control-gray {
    resize: none;
}

.commercial-assistance .row {
    margin-bottom: 20px;
}

.commercial-assistance .btn-container {
    display: flex;
}

.commercial-assistance .attach-file-button {
    margin-top: 15px;
}

.commercial-assistance .remove-file-button {
    margin-top: 15px;
    margin-left: 10px;
}

/* Personalizzazione pagina commercial assistance - FINE */

/* Personalizzazione pagina generica assistance INIZIO */
/*.search-choice {
    background: #ffffff;
    padding: 10px 25px 10px 15px;
    border-radius: 10px;
    border: none;
}
.chosen-container-multi .chosen-choices li.search-choice span {
    font-weight: bold;
    color: blue;
    width: auto;
}
.chosen-container-multi .chosen-choices {
  padding: 10px;
}*/
.chosen-container-multi .chosen-choices,
.chosen-container-multi .chosen-search-input,
ul.chosen-choices,
li.search-field,
input.chosen-search-input {
    background-image: none !important;
    background-color: #e7e9f4 !important;
}

.chosen-container-multi .chosen-choices li.search-field input[type=text] {
    color: #727272 !important;
    border: unset !important;
    font-size: 15px !important;
    padding-left: 10px !important;
    font-family: "Nunito Sans", sans-serif !important;
}

/* Personalizzazione pagina generica assistance FINE */

/* Personalizzazione pagina thank you - INIZIO */
.thank-you-page-container {
    /*background-image: url("~/thank-you-page-background.png");*/
    background-repeat: no-repeat;
    height: calc(100% - 200px);
}

.thanks-content {
    padding-top: 10%;
}

.thanks-content h1 {
    color: #0b218e;
    font-weight: 700;
    font-size: 56px;
}

.thanks-content p {
    padding-top: 28px;
    padding-bottom: 40px;
    font-size: 20px;
    font-weight: 600;
    color: #424242;
}

.thanks-content button {
    border-radius: 5px;
    font-weight: 600;
    margin-right: 20px;
    margin-top: 20px;
}

.thanks-content button.btn-default {
    color: black;
    border: none;
}

/* Personalizzazione pagina thank you - FINE */

/* Personalizzazione pagina Macchine - INIZIO */

#machines-table {
    font-size: 16px;
}

#machines-table th {
    text-transform: uppercase;
}

.machine-main-row .machine-name-item .machine-name {
    font-weight: bold;
}

.machine-main-row.open .machine-name-item .machine-name:before {
    content: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22currentColor%22%20class%3D%22bi%20bi-chevron-up%22%20viewBox%3D%220%200%2016%2016%22%3E%0A%20%20%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M7.646%204.646a.5.5%200%200%201%20.708%200l6%206a.5.5%200%200%201-.708.708L8%205.707l-5.646%205.647a.5.5%200%200%201-.708-.708l6-6z%22%2F%3E%0A%3C%2Fsvg%3E);
    vertical-align: sub;
    padding-right: 10px;
}

.machine-main-row.closed .machine-name-item .machine-name:before {
    content: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%2222currentColor%22%20class%3D%22bi%20bi-chevron-down%22%20viewBox%3D%220%200%2016%2016%22%3E%0A%20%20%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M1.646%204.646a.5.5%200%200%201%20.708%200L8%2010.293l5.646-5.647a.5.5%200%200%201%20.708.708l-6%206a.5.5%200%200%201-.708%200l-6-6a.5.5%200%200%201%200-.708z%22%2F%3E%0A%3C%2Fsvg%3E);
    vertical-align: sub;
    padding-right: 10px;
}

.machine-detail-data .machine-detail-title {
    padding-left: 25px;
    padding-bottom: 5px;
    font-size: 9px;
}

.machine-detail-data .file-item {
    padding-left: 25px;
}

/* Personalizzazione pagina Macchine - FINE */

.home_welcome_message {
    margin-bottom: 0;
}

@media(max-width: 700px) {
    .order-detail-page {
        margin-top: 30px;
    }
}

/* Personalizzazione pagina Errore - INIZIO */

div#empty-result-error-message {
    text-align: center;
    margin-bottom: 30px;
    height: 360px;
}

div#empty-result-error-message h2 {
    color: #c63e23;
    font-weight: 700;
    padding-top: 65px;
}

div#empty-result-error-message h4,
div#empty-result-error-message a {
    font-weight: 700;
}

div#empty-result-error-message a {
    text-decoration: underline;
}

/* Personalizzazione pagina Errore - FINE */

/* Personalizzazoine pagine termini e condizioni INIZIO */

#terms-and-conditions-section a {
    text-decoration: underline;
}

/* Personalizzazoine pagine termini e condizioni FINE */ 