@layer properties;
@layer theme, base, components, utilities;
@layer theme {
  :host,
  :root {
    --ui-color-text-primary: #201e1d;
    --ui-color-text-secondary: #545050;
    --ui-color-text-inverted: #ffffff;
    
    --ui-color-action-primary-hover: #5f016f;
    --ui-color-action-primary: #8704af;

    --ui-color-action-outline: var(--ui-color-brand-800);
    --ui-color-action-icon-disabled: var(--ui-color-neutral-100);
    --ui-color-action-icon-outline-hover: var(--ui-color-brand-500);
    --ui-color-action-on-icon-hover: var(--ui-color-brand-500);
    --ui-color-action-on-icon-outline-hover: var(--ui-color-neutral-white);
    
    --ui-color-neutral-white: #ffffff;
    --ui-color-neutral-100: #f9f5f4;
    --ui-color-neutral-200: #e3dfdd;
    --ui-color-neutral-300: #c3bdbc;
    --ui-color-neutral-400: #a6a1a0;
    --ui-color-neutral-500: #8d8786;
    --ui-color-neutral-600: #716c6a;
    --ui-color-neutral-700: #545050;
    --ui-color-neutral-800: #383433;
    --ui-color-neutral-900: #201e1d;
    --ui-color-neutral-black: #000000;

    --ui-color-brand-100: #ffe5f7;
    --ui-color-brand-200: #ffc7ec;
    --ui-color-brand-300: #ffade4;
    --ui-color-brand-400: #ff80d4;
    --ui-color-brand-500: #ff33bb;
    --ui-color-brand-600: #c828c5;
    --ui-color-brand-700: #8704af;
    --ui-color-brand-800: #5f016f;
    --ui-color-brand-900: #38003d;
    --ui-color-text-amplified: #5f016f;

    --ui-font-weight-regular: 400;
    --ui-font-weight-medium: 500;
    --ui-font-weight-bold: 700;
    --ui-font-weight-extrabold: 800;
}}

@keyframes login {
    0% {
       -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
       filter: alpha(opacity=0);
       opacity: 0;
       top: -50px;
    }
    100% {
       -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
       filter: alpha(opacity=100);
       opacity: 1;
       top: 0px;
    }
}

@keyframes items {
    0% {
       -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
       filter: alpha(opacity=0);
       opacity: 0;
       top: -20px;
    }
    100% {
       -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
       filter: alpha(opacity=100);
       opacity: 1;
       top: 0px;
    }
}

@font-face {
    font-family: 'Urbanist';
    src: url('/fonts/Urbanist.ttf');
    font-weight: normal;
}

@font-face {
    font-family: 'UrbanistItalic';
    src: url('/fonts/Urbanist-Italic.ttf');
    font-style: italic;
}

@font-face {
    font-family: 'DMSans';
    src: url('/fonts/DMSans.ttf');
}

@font-face {
    font-family: 'OptimismSans';
    src: url('/fonts/OptimismSans.ttf');
}


* {
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
}

body {
    background: #f9f5f4;
    line-height: 1.35em;
    font-size: 16px;
    font-family: DMSans, Arial, Helvetica, Verdana, sans-serif;
    font-weight: 400;
    color: var(--ui-color-text-primary);
    height: calc(100% - 80px);
    padding-top: 80px;
    letter-spacing: -0.16px;
    display: flex;
    flex-direction: column;
}

h1, h2 {
    position: relative;
    margin: 20px 0px;
    clear: both;
    text-rendering: optimizelegibility;
    border-radius: 5px;
}

h1 {
    font-size: 22px;
    font-weight: bold;
    color: var(--ui-color-neutral-700);
    padding: 12px;
    background: #F2F2F2;
    border: none;
}

h2 {
    font-size: 18px;
    font-weight: bold;
    padding: 10px 0px;
    border-bottom: 1px solid #DDD;
    color: var(--ui-color-neutral-700);
}

h2.catalog-item {
    border: none;
    color: var(--ui-color-neutral-700);
}

h5 {
    font-size: 13px;
    font-weight: 500;
    margin: 10px 6px;
}

h6 {
    margin: 10px 6px;
    font-size: 11px;
    font-weight: 500;
}

pre {
    white-space: pre-wrap;       /* css-3 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word;       /* Internet Explorer 5.5+ */
}

p {
    margin: 15px 0px;
}

img {
    border: 0px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
}

table td, table th {
    padding: 8px 12px;
}

table.compacted td, table.compacted th {
    padding: 2px 4px;
}

table th {
    text-align: left;
}


.table-striped > tbody > tr:nth-child(2n+1) > td, .table-striped > tbody > tr:nth-child(2n+1) > th {
    background-color: var(--ui-color-neutral-100);
}

.table-hover tbody tr:hover {
    background-color: var(--ui-color-brand-100);
}

.table-billing {
    margin: 20px 0px;
}

.table-billing tr:first-child th {
    background: var(--ui-color-neutral-100);
}

.table-billing th, .table-billing td {
    border-bottom: 1px solid #DDD;
}

.table-billing th.noborder, .table-billing td.noborder {
    border: none;
}

.table-billing tr td, .table-billing tr th {
    height: 30px;
}

.table-billing tr:last-child td {
    border-bottom: none;
}

a {
    outline: none;
    text-decoration: none;
    color: var(--ui-color-text-secondary);
}

a:hover {
    text-decoration: underline;
    color: var(--ui-color-action-primary-hover);
}

a.nd:hover {
    text-decoration: none;
    color: initial;
}

a:focus {
    color: #000;
}

a:active {
    text-decoration: underline;
}

input, select, textarea, button, a.button {
    background: transparent;
    border: 0px;
    box-sizing:border-box;
    background-image: none;
    font-family: DMSans, sans-serif;
    font-size: 14px;
    line-height: 1.1;
    padding: 10px;
    border-bottom: 2px solid var(--ui-color-brand-200);
    margin-right: 5px;
    color: #3e515b;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

a.button {
    border-radius: 26px;
    box-sizing: inherit;
    min-width: 16px;
    text-align: center;
    background-color: var(--ui-color-neutral-white);
    color: var(--ui-color-action-primary);
    border: 2px solid var(--ui-color-action-primary);
}

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
    input[type=checkbox] {
        --active: #8704af;
        --active-inner: #fff;
        --focus: 2px rgba(39, 94, 254, .3);
      --border: #BBC1E1;
      --border-hover: #8704af;
      --background: #fff;
      --disabled: #F6F8FF;
      --disabled-inner: #E1E6F9;
      -webkit-appearance: none;
      -moz-appearance: none;
      height: 21px;
      border-radius: 26px;
      outline: none;
      display: inline-block;
      vertical-align: top;
      position: relative;
      margin: 0;
      cursor: pointer;
      top: 4px;
      border: 1px solid var(--bc, var(--border));
      background: var(--b, var(--background));
      transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
    }
    input[type=checkbox]:after {
      content: "";
      display: block;
      left: 0;
      top: 0;
      position: absolute;
      transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
    }
    input[type=checkbox]:checked {
      --b: var(--active);
      --bc: var(--active);
      --d-o: .3s;
      --d-t: .6s;
      --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
    }
    input[type=checkbox]:disabled {
      --b: var(--disabled);
      cursor: not-allowed;
      opacity: 0.9;
    }
    input[type=checkbox]:disabled:checked {
      --b: var(--disabled-inner);
      --bc: var(--border);
    }
    input[type=checkbox]:disabled + label {
      cursor: not-allowed;
    }
    input[type=checkbox]:hover:not(:checked):not(:disabled) {
      --bc: var(--border-hover);
    }
    input[type=checkbox]:focus {
      box-shadow: 0 0 0 var(--focus);
    }
    input[type=checkbox]:not(.switch) {
      width: 21px;
    }
    input[type=checkbox]:not(.switch):after {
      opacity: var(--o, 0);
    }
    input[type=checkbox]:not(.switch):checked {
      --o: 1;
    }
    input[type=checkbox] + label {
      display: inline-block;
      vertical-align: middle;
      cursor: pointer;
      margin-left: 4px;
    }

    input[type=checkbox]:not(.switch):after {
      width: 5px;
      height: 9px;
      border: 2px solid var(--active-inner);
      border-top: 0;
      border-left: 0;
      left: 7px;
      top: 4px;
      transform: rotate(var(--r, 20deg));
    }
    input[type=checkbox]:not(.switch):checked {
      --r: 43deg;
    }
}


textarea {
    line-height: 16px;
}

select {
    padding: 10px;
    min-height: 35px;
    font-size: 14px;
    line-height: 1;
}

optgroup {
    border-bottom: 1px solid #DDD;
    padding-bottom: 2px;
    margin-bottom: 5px;
}

input:not([disabled]):focus, button:not([disabled]):hover, button:not([disabled]):focus,
 select:not([disabled]):focus, textarea:not([disabled]):focus, .item-thumb a:hover, a.button:hover {
    border-color: #5f016f;
    outline: none;
}

fieldset {
    padding: 10px 16px;
    border: none;
    margin-bottom: 10px;
    background: #FFF;
    flex-grow: 0;
}

fieldset legend {
    color: #4a89dc;
    padding: 0px 10px;
    font-size: 14px;
}

textarea {
    margin-bottom: 5px;
    margin-top: 5px;
}

button {
    cursor: pointer;
}

button[type="submit"], button[type="button"], input[type="submit"] {
    transition: background 0.2s ease-out;
    font-weight: normal;
    background-color: transparent;
    border-width: 2px;
    border-style: solid;
    border-color: var(--ui-color-action-outline);
    color: var(--ui-color-action-outline);
    background: #fff;
    padding: 10px 20px;
    cursor: pointer;
    box-shadow: none;
    border-radius: 26px;
}

button[type="submit"].danger, button[type="button"].danger, a.button.danger {
    border-color: #FF0C01;
    color: #FF0C01;
}

button[type="submit"]:hover, button[type="button"]:hover, a.button:hover {
    background-color: var(--ui-color-action-on-icon-hover);
    border-color: var(--ui-color-action-icon-outline-hover);
    color: var(--ui-color-action-on-icon-outline-hover);
    box-shadow: none;
}

button[type="submit"].danger:hover, button[type="button"].danger:hover, a.danger.button:hover {
    background-color: #FF0C01;
    border-color: #FF0C01;
    color: #FFF;
}

button[type="submit"].success, button[type="button"].success, a.button.success {
    border-color: #8cd481;
    color: #8cd481;
}

button[type="submit"].success:hover, button[type="button"].success:hover, a.success.button:hover {
    background-color: #8cd481;
    border-color: #8cd481;
    color: #FFF;
}

button[type="submit"]:disabled {
    background: #F2F2F2;
    color: #888;
    cursor: unset;
    border: 1px solid #CCC;
}

a.button {      
    padding: 10px;
    height:16px;
    margin-right: 3px;
    cursor: pointer;
    display: inline-block;
    margin-right: 5px;
}

a.button.primary {
    background-color: #275EFE;
    color: #FFF;
}

a.button:hover {
    text-decoration: none;
}

option {
    padding-right: 8px;
}

.wrapper {
    width: 1300px;
    position: relative;
}

ul.cgv {
    list-style-type: none;
}

ul.cgv li:before {
    content: '- ';
}

ol {
    padding-left: 40px;
    margin: 20px 0px;
}

#wrapper {
    background: #F1F1F1;
    margin: 0px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

#header-main {
    position: fixed;
    background: #FFF;
    width: 100%;
    display: flex;
    top: 0;
    z-index: 998;
    height:80px;
    border-bottom: 1px solid var(--ui-color-neutral-200);
    /* box-shadow: 0px 0px 10px #CCC; */
    /* box-shadow: rgba(0,0,0,.117647) 0 2px 4px; */
    /*box-shadow: 0 8px 16px rgba(12,65,154,.1) !important;*/
}

#header-main .wrapper {
    position: relative;
    z-index: 5;
}

#topbar {
    padding: 10px 20px 10px 20px;
    min-height: 30px;
    background: #5f016f;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px;
    z-index: 950;
    position: relative;
}
#topbar .wrapper {
    margin: auto;
}

#breadcrumb {
    padding: 4px;
    font-size: 14px;
    float: left;
    color: #888;
    border-radius: 4px;
    max-width: 1400px;
    min-width: 1200px;
}

#content {
    margin: auto;
    margin-bottom: 30px;
    flex-grow: 1;
    background: #FFF;
    padding: 20px 30px;
}

#breadcrumb li {
    list-style-type: none;
    display: block;
    float: left;
    background: transparent;
    padding: 0px;
    font-weight: 300;
}

#breadcrumb li:after {
    content: "/";
    padding: 0px 5px;
    color: var(--ui-color-brand-300);
    overflow: visible;
}

#breadcrumb li a {
    color: var(--ui-color-brand-300);
}

#breadcrumb li:last-child {
    color: var(--ui-color-text-inverted);
}


#breadcrumb li:last-child:after {
    content: none;
}

#breadcrumb li:nth-child(odd) {
    background: transparent;
    background-color: none;
}

#breadcrumb li a:hover {
    text-decoration: none;
}


.tile {
    min-width: 150px;
    float: left;
    margin-bottom: 10px;
    margin-right: 10px;
    box-shadow: 0px 0px 2px #DDD;
}

.tile .tile-icon {
    background: #F2F2F2;
    padding: 10px;
    width: 30px;
    height: 30px;
    float: left;
    background-position: center center;
    background-repeat: no-repeat;
}

.tile .tile-body {
    margin-left: 50px;
    padding: 10px 20px;
    height: 30px;
    line-height: 30px;
}

.tile .drive {
    background-image: url(../images/icons/google-drive-icon-32x32.png);
}

#search form {
    padding: 0;
}

form p {
    display: flex;
    align-items: first baseline;
    min-height: 39px;
}

#search input {
    width: 200px;
    border: none;
    border-radius: 26px;
    background-color: var(--ui-color-neutral-white);
    transition: width 0.4s ease;
}

#search input:focus {
    width: 260px;
}

#search-button {
    border: 0px;
    padding: 0px;
    padding: 8px;
    margin-left: 2px;
    margin-bottom: 2px;
    border-radius: 26px;
    background-color: var(--ui-color-brand-300);
    color: var(--ui-color-action-primary-hover)
}

#content ul {
    padding-left: 0px;
    list-style-type: none;
}

#content ul li {
    padding: 5px 10px 5px 30px;
    transition: all 0.2s ease-out;
}

#content ul li:hover, #content ul li:nth-child(odd):hover {
    background-color: var(--ui-color-brand-100);
}

#content ul.spaced li {
    margin-bottom: 15px;
}

#content #home ul li {
    background-color: transparent;
    padding: 2px 0px 2px 30px;
    background-position: 8px 4px;
}

#footer-main {
    text-align: right;
    font-size: 14px;
    font-weight: normal;
    color: #999999;
    padding: 30px 22px;
    background: #100F17;
    line-height: 28px;
    border-top: 1px solid #e0e0e0;
}

#footer-main a {
    text-decoration: none;
    padding-bottom: 1px;
    color: #e0e0e0;
}

#logo {
    display: block;
    float: left;
    position: absolute;
    top: 10px;
}

#logo img {
    position: relative;
    top: -10px;
}

#logo-catalog {
    font-weight: var(--ui-font-weight-extrabold);
    font-family: OptimismSans, sans-serif;
    --ui-font-display--font-feature-settings: "ss08" on;
    font-size: 28px;
    display: flex;
    align-items: center;
}

#logo-catalog:hover {
    text-decoration: none;
}

#logo-catalog img {
    width: 40px;
    position: relative;
    top: -5px;
}

span.env {
    font-variant: all-small-caps;
    padding: 2px 8px;
    color: #FFF;
    font-weight: 500;
}

span.env.dev {
    background: #d82929;
}

span.env.test {
    background: #0b315f;
}

span.env.preprod {
    background: #f2a900;
}

#debug {
    padding: 20px;
    background: #343a40;
    color: #e0e0e0;
}

#debug table {
    margin: 0 auto;
}

#debug td {
    padding: 10px;
    text-align: left;
    vertical-align: top;
    border: 1px dashed #888;
}

#content div.autocomplete {
    position: absolute;
    background-color: white;
    margin: 0px;
    padding: 0px;
    padding-left: 0px;
    font-size: 11px;
}

#content div.autocomplete ul {
    list-style-type: none;
    display: block;
    margin: 0px;
    padding: 0px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 1px 1px 2px #CCC;
}

#content div.autocomplete ul li {
    padding: 4px;
    background-image: none;
}

#content div.autocomplete ul li.selected {
    background-color: #ffb;
}

#content div.autocomplete ul div.informal {
    font-weight: normal;
    color: #888;
}

.panel {
    background: #FFF;
    margin-bottom: 10px;
    border-radius: 2px;
}
.panel-content {
    padding: 20px;
    border: 1px solid #e7e7e7;
}
.panel-content.compacted {
    padding: 6px;
    border: 1px solid #e7e7e7;
}

.panel > h2 + .panel-content {
    border-top: 0;
}

.panel > h2 {
    margin: 0px;
    border: none;
    border: 1px solid #e7e7e7;
    border-top-right-radius: 1px;
    border-top-left-radius: 1px;
    background: #fafafa;
    padding: 10px 10px;
    font-size: 14px;
}

.panel.panel-border .top {
    border-top-width: 5px;
    border-radius: 3px;
}

.panel-primary.panel-border {
    border-color: #4a89dc;
}

/* TREE VIEW
--------------------------------------------------- */

#content ul.tree em {
    color: #999;
    font-style: normal;
}

#content ul.tree ul {
    padding-top: 6px;
}

#content ul.tree li {
    background-image: none;
    padding-left: 0px;
    position: relative;
    padding-right: 0px;
}

#content ul.tree ul li, #search-filter li {
    background-image: url(../images/arrows/tree-dashed.gif);
    background-repeat: no-repeat;
    padding: 7px 0px 7px 22px;
    background-position: 0px 7px;
}

#content ul.tree li a.category {
    display: block;
    background-image: url(../images/arrows/dashed.gif);
    background-repeat: repeat-x;
}

#content ul.tree li a span {
    background: #FFF;
    padding-right: 10px;
}

#content ul.tree li:nth-child(odd),
#content ul.tree li:hover {
    background-color: transparent;
}

#content ul.tree li ul.level-2, #content ul.tree li ul.level-3, #content ul.tree li ul.level-4 {
    padding-left: 0px;
}

#content ul.tree li div.actions {
    position: absolute;
    right: 0;
    top: 3px;
    padding-left: 10px;
    background: #FFF;
    text-align: right;
}
#content ul.tree li div.actions a {
    display: inline-block;
}

#content ul.tree li div.actions a, .array-item td.actions a   {
    margin-right: 5px;
}

#content ul.tree li div.actions a.last, .array-item td.actions a.last {
    margin-left: 18px;
}

.actions {
    float: right;
}

.array-item {
    margin-bottom: 20px;
    border-spacing: 0px;
    border-collapse: collapse;
}

div.array-item {
    border: 1px solid black;
}

.array-item th {
    background: #AAA !important;
    color: #FFF !important;
}

.array-item th.total {
    background: #555;
    color: #FFF;
}

.array-item th.white {
    background: #FFF;
}

.array-item tr.odd {
    background: #F2F2F2;
}
.array-item tr.even {
    background: #FFF;
}

.array-item td.invisible {
    background-color: transparent;
    border: 0px;
}

.array-item table td {
    margin: 0px;
    padding: 0px;
    border: 0px;
}

.header-row td {
    background-color: #0b315f;
    color: white;
}

.array-item input {
    margin: 0px;
}

.right {
    text-align: right;
}

.array-catalog {
    width: 100%;
}

.array-catalog tr.bordered {
    border-bottom: 1px dashed #CCC;
    margin-bottom: 5px;
    display: block;
}

.box-item-images {
    width: 340px;
    min-height:300px;
    float: left;
    margin-right: 20px;
}

.item-images-other {
    margin-top: 10px;
}

.item-image {
    height: 300px;
    width: 300px;
    background: #FFF;
    padding: 20px;
    line-height: 300px;
    text-align: center;
    box-shadow: 0px 0px 0.3rem #CCC;
    border-radius: 3px;
}

.item-image img {
    vertical-align: middle;
}

.item-image-mini {
    border: 1px solid #CCC;
    padding: 2px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    display: inline-block;
    text-align: center;
}

.item-image-mini img {
    vertical-align: middle;
}

.item-heading h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

.item-heading {
    width: 71%;
    float: left;
    position: relative;
}

.item-heading p {
    margin: 8px 0px;
    font-size: 1.1em;
    line-height: 20px;
}
.item-heading p .fa, .dropdown-menu .fa {
    margin-right: 5px;
}

.item-heading table {
    margin-top: 30px;
}

.item-heading table td {
    padding: 5px 0px;
    font-size: 14px;
}

.item-range {
    float: left;
    width: 490px;
}

.item-range h2 {
    margin: 5px 0px;
}

.item {
    color: #333;
    box-shadow: 0px 0px 0.2rem #DDD;
    border-radius: 3px;
    border-radius: 3px;
    width: 200px;
    margin-bottom: 20px;
    display: block;
    margin: 10px;
    position: relative;
    background: #FFF;
    transition: border-color ease-in-out 0.2s, box-shadow ease-in-out 0.2s;
    animation: items 0.5s forwards;
    -o-animation: items 0.5s forwards;
    -webkit-animation: items 0.5s forwards;
    -moz-animation: items 0.5s forwards;
}

#items-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0px -10px;
}

@supports (animation-name: items) {
    .item {
        opacity: 0;
    }
}

.item:hover {
    color: inherit;
    text-decoration: none;
    outline: none;
}

.item.primary:hover {
    box-shadow: 0 0 0 0.2rem var(--ui-color-brand-100);
}

.item.warn:hover {
    box-shadow: 0 0 0 0.2rem rgba(248, 201, 105, 0.25);
}

.item.danger:hover {
    box-shadow: 0 0 0 0.2rem rgba(233, 87, 63, 0.25);
}
#item-infos {
    line-height: 22px;
}

#item-infos li {
    list-style: none;
}

.item-infos {
    background: #FFF;
    border-top: 1px solid #e0e0e0;
    padding: 8px 12px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    min-height: 72px;
}

.item-infos a span.ref {
    font-weight: bold;
}

.item-thumb {
    position: relative;
    height: 200px;
    width: 200px;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    padding: 0px;
    background: #FFF;
}

@supports (display: flex) {
    .item-thumb {
        display: flex;
        justify-content: center;
    }
}

.item-thumb img {
    align-self: center;
}

.item-thumb .stock {
    background: rgba(234,88,50, 0.7);
    position: absolute;
    color: #FFF;
    padding: 5px 10px;
    z-index: 10;
    right: 1px;
    top: 1px;
}

.item-thumb a img {
    vertical-align: middle;
}

.item .label {
    font-size: 12px;
}

label.block {
    display: inline-block;
    width: 200px;
    text-align: right;
    padding-right: 10px;
}

label.noblock {
    font-weight: bold;
    display: inline-block;
    margin: 0px 20px;
}

.vtop {
    vertical-align: top;
}

.w20 {
    width: 20px;
}

.w30 {
    width: 30px;
}

.w50 {
    width: 50px;
}

.w60 {
    width: 60px;
}
.w80 {
    width: 80px;
}
.w90 {
    width: 90px;
}
.w100 {
    width: 100px;
}
.w120 {
    width: 120px;
}
.w130 {
    width: 130px;
}
.w140 {
    width: 140px;
}

.w150 {
    width: 150px;
}
.w160 {
    width: 160px;
}
.w165 {
    width: 165px;
}
.w170 {
    width: 170px;
}
.w180 {
    width: 180px;
}

.w200 {
    width: 200px !important;
}
.w210 {
    width: 210px !important;
}
.w220 {
    width: 220px !important;
}
.w250 {
    width: 250px;
}

.w280 {
    width: 280px;
}

.w300 {
    width: 300px !important;
}

.w350 {
    width: 350px;
}
.w380 {
    width: 380px;
}
.w400 {
    width: 400px !important;
}

.w450 {
    width: 450px !important;
}
.w470 {
    width: 470px !important;
}
.w490 {
    width: 490px;
}
.w500 {
    width: 500px !important;
}
.w510 {
    width: 510px !important;
}
.w520 {
    width: 520px;
}
.w530 {
    width: 530px;
}
.w550 {
    width: 550px;
}
.w580 {
    width: 580px;
}
.w600 {
    width: 600px;
}
.w650 {
    width: 650px;
}
.w700 {
    width: 700px;
}
.w730 {
    width: 760px;
}
.w790 {
    width: 790px;
}
.w800 {
    width: 800px;
}
.w850 {
    width: 850px;
}
.w1000 {
    width: 1000px;
}
.pl120 {
    padding-left: 120px;
}

.pl135 {
    padding-left: 135px;
}

.pl145 {
    padding-left: 145px;
}

.pl135 {
    padding-left: 135px;
}

.pl155 {
    padding-left: 155px;
}

.pr10 {
    padding-right: 10px;
}

.w100p {
    width: 100%;
}

.centerb {
    margin: auto;
}

.sub2 {
    position: relative;
    top: 2px;
}
.sub3 {
    position: relative;
    top: 3px;
}
.sub4 {
    position: relative;
    top: 4px;
}
.sup2 {
    position: relative;
    top: -2px !important;
}
.sup3 {
    position: relative;
    top: -3px !important;
}
.sup4 {
    position: relative;
    top: -4px;
}
#content #admin-menu {
    margin-bottom: 20px;
}

#content #admin-menu li, .line-tag {
    background: transparent;
    display: inline-block;
    margin: 0px 5px;
    border-radius: 5px;
    padding: 0px;
    transition: none;
    border: 1px solid #EEE;
}
.line-tag {
    padding: 8px 14px;
}

#content #admin-menu li a {
    padding: 8px 14px;
    display: block;
    color: var(--ui-color-action-on-icon-hover);
}
#content #admin-menu li a.danger {
    color: #FF0C01;
}

#content #admin-menu li.current {
    padding: 8px 14px;
    border: 1px solid var(--ui-color-action-on-icon-hover);
    background: var(--ui-color-action-on-icon-hover);
    color: #FFF;
}

#content #admin-menu li.current a {
    padding: 0;
}

#content #admin-menu li a.open-record-btn {
    padding: 0px;
}

#content #admin-menu li.current a {
    color: #FFF;
}

#content ul.no-icon {
    margin: 20px 0px;
}

#content ul.no-icon li {
    background-image: none;
    padding-left: 10px;
}

.fix-area {
    float: left;
    margin: 4px 4px 0px 0px;
}

strong.current {
    text-decoration: underline;
}

span.stock {
    color: #FFF;
    font-variant: small-caps;
    font-weight: bold;
    text-decoration: 0px 0px 5px #EEE;
    background: #f2a900;
    padding: 2px 5px;
}

td.actions {
    width: 100px;
    text-align: right;
}

.ref {
    color: #f2a900;
}

.clearfix {
    clear: both;
}

.left {
    text-align: left;
}

.fleft {
    float: left;
}

.fright {
    float: right;
}

.bold {
    font-weight: bold;
}

.well {
    margin: 0px 0px 20px 0px;
    padding: 20px;
    background: rgba(230, 230, 230, 0.5);
    border-radius: 5px;
}

.alert {
    border-radius: 4px;
    background-color: #f6f6f6;
    margin-bottom: 15px;
    padding: 12px 20px;
    border: 1px solid #eeeeee;
}

.alert-danger {
    color: #a94442;
    background: #f2dede;
    border: 1px solid #ebccd1;
    border-left: 3px solid #FF0C01;
}
.alert-success {
    color: #3c763d;
    background: #dff0d8;
    border: 1px solid #dff0d8;
    border-left: 3px solid #50af51;

}
.alert-info {
    color: #31708f;
    background: #d9edf7;
    border: 1px solid #bce8f1;
    border-left: 3px solid #5bc0de;

}
.alert-warn, .alert-warning {
    color: #8a6d3b;
    background: #fcf8e3;
    border: 1px solid #faebcc;
    border-left: 3px solid #f0ad4e;
}

.alert-primary {
    background: #6c9fe3;
    border: 1px solid #6c9fe3;

}

.edit, .del, .add, .move, .default, .restore, .email, .print, .copy, .valid, .price, .go {
    width: 16px;
    height: 16px;
    display: inline-block;
    position: relative;
    top: 2px;
    background-repeat: no-repeat;
    margin: 0px 2px;
}

.pdf {
    background: var(--ui-color-action-outline);
    color: #FFF;
    display: inline-block;
    padding: 2px 6px;
    border-radius: 15px;
}

.pdf:hover {
    background-color: var(--ui-color-action-on-icon-hover);
}

a.action {
    padding: 1px;
    width: 22px;
    height: 22px;
    display: inline-block;
    text-align: center;
    line-height: 22px;
    min-width: initial;
    border-width: 1px;
}

a.action span {
    display: none;
}

#state {
    min-width: 100px;
}

#address-box {
    background: #EEE;
}

.column {
    float: left;
    width: 360px;
    padding: 10px 20px;
}
.link {
    cursor: pointer;
}

.nolink {
    cursor: default;
}

.nolink:hover {
    text-decoration: none;
    color: #777;
}

#content ul.noeffect li {
    transition: none;
}

#popup-box {
    position: absolute;
    width: 100%;
    z-index: 500;
    top: 30%;
    display: none;
    justify-content: center;
}

#popup-box-body {
    padding: 12px 20px;
    background: #FFF;
    box-shadow: 0 8px 16px rgba(12,65,154,0.1);
}

#popup-box-body:hover {
    box-shadow: 0 8px 24px -4px rgba(12,65,154,0.2);
}

#popup-box-body h2 {
    margin: 0px 0px 10px 0px;
}

#popup-box-body h2 .close {
    display: block;
    float: right;
    cursor: pointer;
}

.menu-box {
    float: left;
    width: 415px;
    min-height: 220px;
}

.box-left {
    margin: 10px 10px 10px 0px;
}

.box-right {
    margin: 10px 0px 10px 10px;
}

.menu-box p {
    line-height: 20px;
}

.menu-box  h2 {
    margin: 0px 0px 10px 0px;
    border:none;
    color: #888;
    border-bottom: 1px dashed #CCC
}

.icon-command {
    float: left;
    margin: 0px 10px 10px 0px;
}

table.datatables {
    margin-top: 20px;
}

.datatables th {
    color: #333;
}

.basket-thumb {
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
}

.basket-thumb img {
    vertical-align: middle;
}

#sort-range li {
    cursor: pointer;
}

th.sorting_disabled {
    background:transparent;
}

input[disabled], select[disabled], input[readonly], select[readonly], textarea[readonly] {
    background: var(--ui-color-action-icon-disabled);
    cursor:default;
    border: none;
}

/* Cachons la case à cocher */
#cbox-prices:not(:checked),
#cbox-prices:checked {
    position: absolute;
    left: -9999px;
}
#cbox-prices-label {
    top: 2px;
    position: relative;
}

/* on prépare le label */
#cbox-prices:not(:checked) + label,
#cbox-prices:checked + label {
  position: relative; /* permet de positionner les pseudo-éléments */
  padding-left: 25px; /* fait un peu d'espace pour notre case à venir */
  cursor: pointer;    /* affiche un curseur adapté */
}
/* Aspect des checkboxes */
/* :before sert à créer la case à cocher */
#cbox-prices:not(:checked) + label:before,
#cbox-prices:checked + label:before {
  content: '';
  position: absolute;
  left:0px; top: -1px;
  width: 16px; height: 16px; /* dim. de la case */
  border: 1px solid #CCC;
  background: #f8f8f8;
}

/* Aspect général de la coche */
#cbox-prices:not(:checked) + label:after,
#cbox-prices:checked + label:after {
  content: '✔';
  position: absolute;
  top: -5px; left: 2px;
  font-size: 18px;
  color: #0669b2;
  transition: all .2s; /* on prévoit une animation */
}
/* Aspect si "pas cochée" */
#cbox-prices:not(:checked) + label:after {
  opacity: 0; /* coche invisible */
  transform: scale(0); /* mise à l'échelle à 0 */
}

#cbox-prices:checked + label:after {
  opacity: 1; /* coche opaque */
  transform: scale(1); /* mise à l'échelle 1:1 */
}

.remaining {
    font-size: 0.8em;
    display: block;
}

.help {
    color: #6c757d !important
}

.order-box {
    border: 1px solid #DDD;
    background: #FAFAFA;
    padding: 10px;
    line-height: 25px;
    margin-right: 10px;
    float: left;
    min-height: 165px;
    margin-bottom: 10px;
}


.order-box-address {
    line-height: 13px;
    width: 320px;
    float: left;
}

.order-box-address .address-type, .order-box .comment-type {
    display: inline-block;
    margin-bottom: 15px;
    font-weight: bold;
}

.sad-comment {
    border-left: 4px solid gold;
}

.order-box-client {
    margin-bottom: 20px;
}

.order-box-client p {
    margin: 4px 0px;
}

.order-box-status {
    width: 354px;
    margin-right: 10px;
}

.order-box-status p {
    margin: 2px 0px;
}

.order-box-right {
    margin: 0px;
}

.order-box-comment {
    width: 320px;
    line-height: 14px;
}

.order-box-prices {
    width: 1052px;
    background: #FAFAFA;
}

.order-box-prices table tr:last-child {
    border: 0px;
}
.order-box-prices table tr:last-child th {
    border: 0px;
}

#order .label, #order .label-xl {
    display: inline-block;
    width: 220px;
    font-weight: bold;
}

#order  .label-xl {
    width: 200px;
}

#order  .label-bl {
    font-weight: bold;
}

#order h2 {
    border: 0;
    border-bottom: 1px solid #CCC;
    background: transparent;
    margin-bottom: 8px;
    padding-left: 0;
    font-size: 18px;
    font-weight: normal;
}

#order p {
    margin: 12px 0px;
}

.order-state {
    background: #EEE;
    font-weight: bold;
    display: block;
    padding: 2px;
    margin-bottom: 4px;
}


.array-order {
    border-collapse: collapse;
}

.array-order tr th {
    border-bottom: 1px solid #DDD;
}

.array-order tr td {
    border-bottom: 1px solid #D5D5D5;
}

button[type="submit"].admin-prices-link-req {
    padding: 4px 7px;
}
button[type="submit"].admin-prices-link {
    border: 0;
    color: #878787;
    padding: 0;
}

button[type="submit"].admin-prices-link:hover {
    position: static;
    outline: 0;
    background: transparent;
    text-decoration: underline;
}

#loader-box {
    display: none;
    background: rgba(255,255,255, 0.9);
    position: fixed;
    width: 100%;
    height:100%;
    left: 0;
    top: 0;
    z-index: 1000;
}

#loader-inner {
    background: #FFF;
    width: 300px;
    text-align: center;
    margin: auto;
    margin-top: 300px;
    padding: 20px;
    box-shadow: 0px 0px 30px #EEE;
    font-size: 14px;
}

#loader-inner img {
    display: block;
    margin: auto;
    margin-bottom: 10px;
}

.body-db {
    padding-top: 0px;
    background: #F7F7F7;
}

#wrapper-db.filtered {
    padding-top: 30px;
}

#wrapper-db #filters {
    border-bottom: 1px solid #CCC;
    position: sticky;
    width: 100vw;
    height: auto;
    top: 0;
    z-index: 100;
    background: #FFF;
    padding: 10px 0px;
}

.selectivity-multiple-input-container {
    border-bottom: 2px solid var(--ui-color-brand-200) !important;
    background-color: transparent;
}

#wrapper-db #filters .selectivity-input {
    line-height: 20px;
}

#wrapper-db #field-filters {
    flex-grow: 2;
}

#wrapper-db #field-filters .selectivity-multiple-input-container {
    width: 100%;
}
#wrapper-db #filters .selectivity3 {
    width: 100% !important;
}

#wrapper-db #filters.filtered {
    top: 30px;
}

#wrapper-db #filters .selectivity-input {
    width: 322px;
}

#wrapper-db p {
    margin: 2px 0px;
}

#wrapper-db .db-filters-actions {
    height: 42px;
}

#wrapper-db .db-filters-actions button {
    margin-right: 0px;
}

#wrapper-db fieldset.inline {
    display: inline-block;
    width: 200px;
}

#wrapper-db .form-input {
    margin-right: 5px;
}

#wrapper-db .form-input-right {
    float: right;
    margin-right: 30px;
}

#wrapper-db label.margin-r {
    margin-right: 5px;
}

#wrapper-db input[type="checkbox"] {
    margin-right: 4px;
}

#db-filters-form {
    flex: 1 1 auto;
    text-overflow: ellipsis;
    overflow: hidden;
    align-items: center;
    white-space: nowrap;
    display: flex;
    margin: 0px 5px;
    display: flex;
    flex-direction: row;
    align-content: space-evenly;
}

#wrapper-db #results {
    padding: 10px;
}

#results table {
    white-space: nowrap;
    border-collapse: collapse;
}

#results table td {
    padding: 8px 12px;
    border-bottom: 1px solid #EEE;
}

#results table tr.odd {
    background-color: #F5F5F5;
}
#results table tr.even {
    background-color: #FFF;
}

#results table tr th.sorting_disabled {
    background: transparent;
}

#db-categories {
    background: rgba(1,11,235,1);
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 200;
    transition: top 300ms ease;
    display: none;
}

#db-categories a {
    cursor: pointer;
}

#db-categories a.back {
    font-weight: bold;
    display: block;
    background: #333;
    color: #FFF;
    text-align: center;
    padding: 5px 0px;
}

#db-categories  ul {
    padding: 0px;
    max-height: 500px;
    overflow-y: auto;
}

#db-categories  ul li {
    list-style-type: none;
}

#db-categories ul li {
    padding: 4px 0px;
    transition: all 0.2s ease-out;
    text-align: center;
}

#db-categories ul li:hover, #db-categories ul li:nth-child(odd):hover {
    background-color: #EEE;
}

#db-categories ul li:nth-child(odd) {
    background-color: #F5F5F5;
}
#db-categories ul li:nth-child(even) {
    background-color: #FFF;
}

#menu-trigger {
    cursor: pointer;
    display: block;
    width: 60px;
    top: 0px;
    margin: auto;
}

#menu-trigger.open::before {
    transform: scale(1);
}

.line-wrap {
    height: 12px;
    margin: 16px 10px 10px 20px;
    transition: all 300ms ease 0s;
    width: 18px;
}
.line-wrap .line {
    background-color: #FFF;
}
.line-wrap .line {
    height: 2px;
    transition: all 300ms ease 0s;
    width: 18px;
}
.line-wrap .line.center {
    margin: 3px 0;
}
.open .line-wrap {
    transform: rotate(180deg);
}
.open .line-wrap .line.top {
    transform: translateX(-4px) translateY(10px) rotate(45deg);
    width: 12px;
}
.open .line-wrap .line.center {
    transform: translateX(0px) translateY(2px) rotate(90deg);
    width: 12px;
}

.open .line-wrap .line.bottom {
    transform: translateX(4px) translateY(0px) rotate(-45deg);
    width: 12px;
}

.pointer {
    cursor: pointer;
}

.h250 {
    height: 250px;
}

.graph {
    margin: 10px 0px;
}

.graph h3 {
    text-align: center;
}

#login-body {
    background: #f9f5f4 url('../images/splash.webp') no-repeat -200px center;
    background-size: cover;
    font-size: 14px;
    padding-top: 0px;
    display: flex;
    color: #666;
    height: 100%;
    align-items: stretch;
    flex-direction: row-reverse;
}

#login-body header {
    position: fixed;
    z-index: 100 !important;
    left: 0;
    right: 0;
    top: 0;
    padding: 2.4rem 4.8rem 0rem 4.8rem;
}

#header-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#login-wrapper {
    width: 50%;
    display: flex;
    background: #fff;
    box-shadow: 0px -80px 500px #CCC;
    align-items: center;
    justify-content: center;
}

#login-wrapper .login-box {
    padding: 10px;
}

#login-wrapper h2 {
    border: 0px;
    padding: 0px;
    color: #000;
    font-weight: 600;
    font-size: 2.2em;
    font-family: OptimismSans, sans-serif;
}

#login-wrapper .login-form {
    text-align: center;
    width: 60% !important;
}

#login-wrapper .login-form p.flex {
    margin: 25px 0px;
    text-align: center;
}

#login-wrapper .login-form p.flex {
    display: flex;
}

#login-wrapper .login-form input, #login-wrapper .login-form button {
    padding: 15px;
}

#login-wrapper .login-form input[type="checkbox"] {
    padding: 10px;
}

#login-wrapper .login-form input[type="text"], 
#login-wrapper .login-form button[type="submit"], 
#login-wrapper .login-form input[type="password"], 
#login-wrapper .login-form input[type="email"] {
    flex-grow: 1;
}

#login-wrapper .login-form button[type="submit"]:disabled {
    background: #F2F2F2;
    color: #AAA;
}

#login-wrapper .login-form button[type="submit"] {
    border: 2px solid var(--ui-color-brand-700);
    color: var(--ui-color-brand-700);
}

#login-wrapper .login-form button:not([disabled])[type="submit"]:hover {
    background: var(--ui-color-action-on-icon-hover);
    color: var(--ui-color-action-on-icon-outline-hover);
    border-color: var(--ui-color-action-icon-outline-hover);
}

#login-wrapper .app-name {
    display: block;
    font-family: OptimismSans, sans-serif;
    color: var(--ui-color-text-amplified);
    font-size: 64px;
    font-weight: var(--ui-font-weight-bold);
    --ui-font-display--font-feature-settings: "ss08" on;
}

#login-options {
    display: flex;
    justify-content: end;
}

#login-footer {
    border-top: 1px solid #EEE;
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
}

#login-footer p {
    margin: 2px;
}

#login-footer a {
    color: #888;
    font-weight: bold;
}

.pace {
  -webkit-pointer-events: none;
  pointer-events: none;

  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.pace-inactive {
  display: none;
}

.pace .pace-progress {
  background: var(--ui-color-brand-500);
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 2px;
}

#logs {
    margin-top: 20px;
}

fieldset.float {
    float: left;
    margin-right: 20px;
}

.donut {
    border: 1px solid #DDD;
    padding: 10px;
    width: 92%;
}

#error-body {
    padding: 0;
    height: 100%;
}

#error-wrapper {
    text-align: center;
    width: 460px;
    margin: auto;
}

#error-msg {
    border-top: 5px solid #0669b2;
    background: #FFF;
    padding: 20px;
    box-shadow: 0px 0px 10px #DDD;
}

#error-footer {
    font-style: italic;
    color: #AAA;
}

.badge {
    padding: 4px 7px;
    font-family: DMSans, sans-serif;
    opacity: 0.95;
    display: inline-block;
    min-width: 10px;
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1;
    vertical-align: baseline;
    white-space: nowrap;
    text-align: center;
    border-radius: 10px;
    box-sizing: border-box;
    background: #CCC;
}
.badge-on-icon {
    position: absolute;
    top: 0px;
    right: 5px;
}

.relative {
    position: relative;
}

.notifications {
    position: absolute;
    top: -2px;
    right: 3px;
    background-color: #df5640;
}

#new-header {
    height: 60px;
    background: #3bafda;
}

#form-edit {
    display: inline;
}

#header-wrapper {
    position: relative;
}

#user-box {
    float: right;
}

.panel-tile h6 i.fa, .panel-tile h6 i.fab {
    font-size: 60px;
    position: absolute;
    left: -10px;
    top: 5px;
    color: #DDD;
    z-index: 0;
}
.panel-tile h6 > span {
    z-index: 1;
    position: relative;
    padding-left: 50px;
    display: block;
}

.panel-tile {
    margin-right: 10px;
    position: relative;

}

.panel-tile .panel-content {
    line-height: 1.5;
}

.icon-bg {
    position: absolute;
    opacity: 0.75;
    right: 0;
    top: 0;
    line-height: 60px;
    font-size: 60px;
}

.nav {
    list-style: none;
    padding-left: 0;
}

.navbar {
    display: flex;
    align-content: center;
    width: inherit;
    padding: 0px 20px;
}

.navbar-nav {
    display: flex;
    align-content: center;
}

.mr-auto {
    margin-right: auto !important;
}

.nav > li {
    position: relative;
    display: block;
    display: flex;
    align-items: center;
}
.nav > li > a {
    position: relative;
    padding: 10px 12px;
    padding-top: 10px;
    padding-bottom: 10px;
}


.navbar .nav > li > a {
    color: var(--ui-color-text-secondary);
    cursor: pointer;
    font-size: 18px;
    font-family: DMSans, sans-serif;
    font-weight: var(--ui-font-weight-extrabold);
}

.navbar .nav > li > a span {
    padding-top: 10px;
}

.navbar .nav > li > a:hover {
    text-decoration: none;
}
.navbar .nav > li > a:hover span {
    color: var(--ui-color-action-primary);
    border-top: 2px solid var(--ui-color-action-primary);
}

.navbar .nav > li > a.dropdown-toggle-no-hover:hover span {
    border-top: none;
}

.dropdown-menu {
    position: absolute;
    top: 80%;
    right: 0px;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 13px;
    text-align: left;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 1px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box;
}
.dropdown-menu .divider {
    height: 1px;
    margin: 6px 0;
    overflow: hidden;
    background-color: #e5e5e5;
}

.dropdown-menu > li > a, .dropdown-menu > li form.li-a-fake {
    display: block;
    padding: 5px 15px;
    clear: both;
    color: #666666;
    font-weight: normal;
    line-height: 1.5;
    white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #595959;
  background-color: #f5f5f5;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #ffffff;
  text-decoration: none;
  outline: 0;
  background-color: #0669b2;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #777777;
}

.navbar .nav > li.dropdown.open .dropdown-menu {
    border-top: 3px solid #5f016f;
    border-radius: 2px;
}

.heading-border {
    border:0;
    border-top: 4px;
    border-style: solid;
}

.heading-border.primary {
    border-color: var(--ui-color-brand-300);
}
.heading-border.info {
    border-color: #3bafda;
}
.heading-border.success {
    border-color: #85d27a;
}
.heading-border.warn {
    border-color: #f6bb42;
}

.heading-border.danger {
    border-color: #FF0C01;
}

.heading-border.info {
    border-color: #3bafda;
}

.pb20 {
    padding-bottom: 20px;
}
.ml5 {
    margin-left: 5px;
}
.ml10 {
    margin-left: 10px;
}

.ml20 {
    margin-left: 20px;
}

.mr5 {
    margin-right: 5px;
}

.mr10 {
    margin-right: 10px;
}
.mr15 {
    margin-right: 15px !important;
}
.mr20 {
    margin-right: 20px;
}
.mr50 {
    margin-right: 50px;
}
.open > .dropdown-menu {
    display: block;
}

.fw500 {
    font-weight: 600;
}

.fs14 {
    font-size: 14px;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}

.text-white {
    color: #FFF;
}
.text-dark {
    color: #000;
}
.text-muted {
    color: #999999;
}

.text-info {
    color: #3bafda;
}

.text-danger {
    color: #FF0C01;
}
.text-primary {
    color:var(--ui-color-action-primary);
}
.text-warn {
    color: #f6bb42;
}

.text-success {
    color: #85d27a !important;
}
.bg-primary {
    background: var(--ui-color-brand-200);
}
.bg-success {
    background: #85d27a;
}
.bg-warn {
    background: #f6bb42;
}
.bg-danger {
    background: #FF0C01;
}
.bg-light {
    background: #F2F2F2;
}

.bg-dark {
    background: var(--ui-color-brand-900);
}

.bg-red {
    background: #d82929;
}

.bg-orange {
    background: #fb8100;
}

.bg-light-orange {
    background: #ffc14a;
}

.bg-warm-grey {
    background: #ece4c0;
}

.bg-info.light {
    background-color: #55badf !important;
}

.bg-info {
    background-color: #3bafda !important;
}

.bg-info .text-muted {
    color: #b6e6f8;
}

.half {
    width: 49%;
    margin: 0px 5px;
}

.full {
    width: 100%;
    margin: 0px 5px;
}

.third {
    width: 35%;
    margin: 0px 5px;
    float: left;
}
.twothirds {
    width: 62%;
    margin: 0px 5px;
    float: left;
}

.br-n {
    border: none !important;
}
.pl10 {
    padding-left: 10px !important;
}
.pl20 {
    padding-left: 20px !important;
}
.p5 {
    padding: 5px !important;
        padding-left: 5px;
}
.p10 {
    padding: 10px !important;
}
.br64 {
    border-radius: 64px !important;
}
.mt0 {
    margin-top: 0px !important;
}
.mt5 {
    margin-top: 5px !important;
}
.mt10 {
    margin-top: 10px !important;
}
.mt20 {
    margin-top: 20px !important;
}
.mb10 {
    margin-bottom: 10px !important;
}
.mb40 {
    margin-bottom: 40px !important;
}
.p15 {
    padding: 15px !important;
        padding-right: 15px;
        padding-left: 15px;
}

.pt15 {
    padding-top: 15px !important;
}
.ph20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
}
.fs30 {
    font-size: 30px !important;
}
.fs45 {
    font-size: 45px !important;
}
.lh15 {
    line-height: 15px !important;
}
.mt10 {
    margin-top: 10px !important;
}
.mt15 {
    margin-top: 15px !important;
}
.mt30 {
    margin-top: 30px !important;
}
.fs18 {
    font-size: 18px !important;
}
.fs20 {
    font-size: 20px !important;
}
.fs14 {
    font-size: 14px !important;
}
.mb20 {
    margin-bottom: 20px !important;
}
.mb30 {
    margin-bottom: 30px !important;
}
.mh50 {
    min-height: 50px;
}
.mh65 {
    min-height: 65px;
}
.mh85 {
    min-height: 85px;
}

.mh100 {
    min-height: 100px;
}
.mh120 {
    min-height: 120px;
}
.mh150 {
    min-height: 150px;
}

.mh160 {
    min-height: 160px;
}

.mh180 {
    min-height: 180px;
}

.mh190 {
    min-height: 190px;
}
.mh250 {
    min-height: 250px;
}
.mh300 {
    min-height: 300px;
}

.mw250 {
    min-width: 250px;
}

.of-h {
    overflow: hidden !important;
}

.lh80 {
    line-height: 80px;
}

.fa.sad {
    font-size: 40px;
    float: left;
    margin-right: 20px;
}

.dp-b {
    display: block;
}

.unavailable {
    line-height: 195px;
    color: #AAA;
    font-size: 14px;
}

#news-internal {
    position: absolute;
    left: -180px;
}

.marked-wrapper {
    margin: 20px 0px;
}

.marked-listing {
    padding-left: 15px !important;
}

.marked-listing li {
    padding-left: 5px !important;
}

.marked-listing li::marker  {
    font-family: "Font Awesome 6 Free";
    content: "\f35a ";
    font-style: normal;
    font-variant: normal;
    display: var(--fa-display,inline-block);
    color: var(--ui-color-brand-500);
    font-weight: var(--fa-style,900);
}

.w96p {
    width: 96%;
}
.w97p {
    width: 97%;
}
.w90p {
    width: 90%;
}

ul.inline {
    padding: 0;
}

ul.inline li {
    display: inline;
    padding: 0px 5px;
}

ul.inline li {
    border-right: 1px solid #CCC;
}

ul.inline li.last {
    border: 0;
}

ul#pwd-rules {
    list-style: none;
}

ul#pwd-rules li, ul#pwd-rules li:hover, ul#pwd-rules li:nth-child(2n+1), ul#pwd-rules li:nth-child(2n+1):hover {
    background: none;
}

#socials {
    font-size: 30px;
    float: left;
    margin-top: 10px;
}

#socials a {
    margin: 0px 3px;
}

#replacements p {
    margin: 2px 0px;
}

#gdpr-footer {
    background: rgba(22,109,202, 0.9);
    position: fixed;
    bottom: 0;
    left:0;
    right: 0;
    z-index: 100;
    padding: 30px;
    color: #FFF;
}

#gdpr-footer .gdpr-footer-wrapper {
    margin: auto;
    text-align: center;
}

#gdpr-footer a.button {
    border-color: #FFF;
}

#gdpr-footer a.button:hover {
    background: #FFF;
    color: rgb(22,109,202);
}

#gdpr-footer a.button.danger {
    border-color: #FF0C01;
    background: #FF0C01;
    color: #FFF;
}

#gdpr-footer a.button.success {
    border-color: #3c763d;
    background: #3c763d;
    color: #FFF;
}

.consent {
    text-decoration: underline;
}

#gdpr-settings-modal
{
    position: fixed;
    z-index: 10000;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    background: rgba(255, 255, 255, .7);
    transition: all 2s ease-out;
}

#gdpr-settings {
    padding: 20px;
    background: #FFF;
    width: 600px;
    margin: auto;
    box-shadow: 0px 0px 10px #EEE;
    border: 2px solid var(--ui-color-brand-800);
}

#gdpr-settings h2 {
    margin: 5px 0px;
}

.help {
    cursor: help;
}

address {
    background: #FFF;
    border-radius: 15px;
    padding: 10px;
}

#gdpr-politic {
    line-height: 22px;
}

#admin-tools {
    position: absolute;
    width: 250px;
    right: 0px;
    top: 2px;
    z-index: 0;
    text-align: right;
}

.home-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-content: flex-start;
}

.home-tile {
    padding: 20px;
    background: #FFF;
    display: flex;
    align-items: center;
    flex-grow: 0;
    margin: 10px;
    transition: background .2s ease-in;
}

.home-tile h6 {
    margin: 0px 0px 1.2rem 0px;
    font-weight: 500;
}
.home-tile a {
    display: flex;
    align-items: center;
    flex-grow: 1;
    height: 100%;
    transition: all 0.4s ease-out;
}

.home-badge-on-icon {
    margin-left: 10px;
}

.home-tile a span {
    display: block;
}

.home-tile .icon-box {
    height: 80px;
    width: 80px;
    color: var(--ui-color-action-outline);
    border-radius: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.home-tile:hover a {
    color: var(--ui-color-brand-500);
    text-decoration: none;
    padding-left: 10px;
}

.home-tile.home-tile-danger .icon-box {
    background-color: var(--ui-color-action-on-icon-hover);
}

.home-tile.home-tile-primary:hover {
    color: var(--ui-color-action-on-icon-hover);
}

#home {
    margin: -10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-content: flex-start;
}

.cke_chrome {
    border: 0 !important;
}

#ask-rights-wrapper {
    display: flex;
    align-items:flex-start;
}

#ask-rights-wrapper .selectivity-input {
    width: 800px;
}

#content ul.tree ul.copy-items-wrapper {
    display: flex;
    flex-wrap: wrap;
    background: #f9f9f9;
}

#content ul.tree ul.copy-items-wrapper li {
    background: none;
}

section.copy-translations-wrapper {
    padding: 20px 0px;
    display: flex;
    flex-wrap: wrap;
}

input:read-only {
    pointer-events:'none'
}

#com-wrapper {
    padding: 5px 12px;
    border-left: 5px solid #e9573f;
    background: #fff;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 3px 5px #CCC;
    margin: 10px 0px 25px 0px;
}

.rnd {
    background: #CCC;
    color: #FFF;
    font-size: 10px;
    border-radius: 20px;
    padding: 5px;
}

.flex-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0px -5px;
}

.f-align-item-center {
    align-items: center;
}

.d-flex {
    display: flex;
    flex-wrap: wrap;
}

.mandatory {
    font-size: 20px;
    position: relative;
    top: 5px;
}

#content h2.catalog-title {
    color: var(--ui-color-text-amplified);
    padding: 12px 0px;
    margin: 10px 0px;
    font-size: 22px;
}

#content ul.catalog li.range {
    background: transparent;
    margin-bottom: 10px;
    padding: 0px;
    border-radius: 5px;
    font-family: DMSans, sans-serif;
    display: flex;
}

#content ul.catalog li.range div.category .link {
    margin-right: 6px;
}

#content ul.catalog li.range div.category {
    padding: 10px;
    display: block;
    padding-right: 15px;
    font-weight: bold;
}


#content ul.level-2 {
    padding: 10px 0px;
    background: #fff;
    border-left: 4px solid var(--ui-color-brand-500);
    border-bottom-right-radius: 5px;
    flex-grow: 2;
}

#content ul.level-2 li {
    padding: 8px 0px 8px 15px;
}

#content ul.level-3 {
    padding-top: 10px;
}

#content ul.catalog li em {
    color: #AAA;
}

#content ul.catalog li.range a:hover {
    text-decoration: none;
}

#content ul.catalog li.range a.pdf:hover {
    color: #FFF;
}

#contacts-wrapper {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    margin: 0 -15px;
}

.step {
    height: 50px;
    background: var(--ui-color-brand-400);
    text-align: center;
    color: #fff;
    font-size: 20px;
    line-height: 45px;
    position: relative;
    display: table;
  }

  .step span {
    display: table-cell;
    vertical-align: middle;
  }

  .step:before,
  .step:after {
    content: '';
    position: absolute;
  }

  .step:after {
    border-left: 25px solid var(--ui-color-brand-400);
    border-right: 25px solid transparent;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    right: -50px;
    top: 0px;
    width: 0;
    height: 0;
    display: block;
  }

  .step:before {
    border-left: 26px solid #FFF;
    border-right: 26px solid transparent;
    border-top: 26px solid transparent;
    border-bottom: 26px solid transparent;
    left: 0px;
    top: -1px;
    width: 0;
    height: 0;
    display: block;
  }

  .adm-links {
      display: flex;
      flex-wrap: wrap;
      margin-top: 40px;
      justify-content: center;
  }

  .adm-link {
    width: 150px;
    text-align: center;
    margin-bottom: 20px;
  }

  .adm-link span.icon {
      display: block;
      margin: auto;
      margin-bottom: 10px;
      text-align: center;
      line-height: 70px;
      font-size: 40px;
      color: #FFF;
      width: 70px;
      height: 70px;
      border-radius: 70px;
  }

.f-grow-2 {
    flex-grow: 2;
}

.dropdown-toggle-account {
    background-color: rgba(12,65,154,.05);
    border-radius: 100px;
    color: #4e5c7f !important;
}

.ui-sortable-handle {
    cursor:grab !important;
}

.sticky {
    position: sticky;
    top: 0;
    z-index: 1;
    background: #EEE;
}

table .sticky th {
    border-bottom: 1px solid #CCC;
}

.pagination {
    margin: 20px 0px;
}

.pagination-buttons a {
    padding: 8px 12px;
    color: var(--ui-color-action-primary);
    border: 1px solid var(--ui-color-action-primary);
    border-radius: 5px;
}

.pagination-buttons a.current-page {
    background: var(--ui-color-action-icon-disabled);
    border-color: var(--ui-color-neutral-400);
    color: var(--ui-color-neutral-500);
}

.pagination-buttons a:hover {
    background: var(--ui-color-action-on-icon-hover);
    border-color: var(--ui-color-action-on-icon-hover);
    color: var(--ui-color-neutral-white);
}

.font-display {
    font-feature-settings: var(--ui-font-display--font-feature-settings);
}