/***************************************General***************************************/
body {
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
}

h1 {
    color: #000;
    font-family: jaf-domus-titling-web, sans-serif;
    font-weight: 400;
    font-style: normal;
}

h2 {
    color: #000;
    font-family: jaf-domus-titling-web, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
}

h3 {
    color: #000;
    font-family: jaf-domus-titling-web, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
}

h4 {
    color: #000;
    font-family: jaf-domus-titling-web, sans-serif;
    font-weight: 400;
    font-style: normal;
}

.site {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
}

.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 998;
    background-color: #000000;
    -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
}

.sticky-top-120 {
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
    z-index: 1;
}

.box-shadow-light {
    -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
}

.bc-sticky {
    z-index: 998;
    background-color: white;
}

.header-logo {
    width: 400px;
}

.header-slogan {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
}

.site-content {
    flex: 1;
    background-color: #f0f0f0;
}

a {
    color: #ccaf67;
    text-decoration: none;
}

a:hover {
    color: #ccaf67;
}

a:focus {
    outline: none;
}

.offcanvas {
    background-color: #000000;
}

.offcanvas hr {
    color: white;
}

.offcanvas p {
    color: white;
}

.offcanvas h4 {
    color: white;
}

.offcanvas .btn-close.text-reset {
    background-color: #ccaf67;
}

a.custom-hover {
    display: inline-block;
    position: relative;
    padding: 0 0 0 0;
    cursor: pointer;
}

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

a.custom-hover:after {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    left: 0;
    bottom: -2px;
    visibility: hidden;
    background-color: #ccaf67;
    -webkit-transition: all .1s ease;
    transition: all 0.3s ease;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
}

a.custom-hover:hover:after {
    visibility: visible;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.bg-grijs {
    background-color: #f0f0f0;
}

.offcanvas-body .dropdown-menu.show {
    position: relative !important;
    transform: none !important;
    border: none;
    background: transparent;
}

.offcanvas-body .dropdown-menu.show a {
    font-size: 18px;
    font-weight: 400;
}

.white-block {
    background-color: white;
    border-radius: 0px;
    position: relative;
}

.white-block select {
    border-radius: 0px;
    font-size: 14px;
}

.white-block select:focus {
    outline: none;
    box-shadow: none;
    border-color: #ccaf67;
}

.white-block textarea {
    border-radius: 0px;
}

#footer {
    background-color: #000000;
    position: relative;
    color: white;
}

#footer .footer-special {
    text-transform: uppercase;
    font-size: 14px;
    color: #ccaf67;
}

#footer a {
    text-transform: uppercase;
    font-size: 14px;
}

/* LABEL ======================================= */
label.nieuwbrieflabel {
    color: #999;
    font-size: 18px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 10px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

/* active state */
.nieuwbriefinput:focus ~ label.nieuwbrieflabel, .nieuwbriefinput:valid ~ label.nieuwbrieflabel {
    top: -15px;
    font-size: 14px;
    color: #6d6f72;
}

.contact-hover {
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-hover:hover {
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.nieuwbriefinput {
    font-size: 18px;
    padding: 5px;
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid #b6baba;
    background-color: transparent;
}

.nieuwbriefinput:focus {
    outline: none;
}

.group {
    position: relative;
    margin-bottom: 30px;
}

.btn-detail {
    background-color: #000;
    border: 1px solid #000;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 600;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: white;
    display: inline-block;
}

.btn-detail:hover {
    background-color: #ccaf67;
    color: white;
    border: 1px solid #ccaf67;
    text-decoration: none;
}

.btn-detail:focus {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.btn-detail.disabled {
    opacity: 0.16;
}

.btn-detail.disabled:hover {
    background-color: #000;
}

.btn-detail.btn-reverse-colors {
    background-color: white;
    color: #000;
}

.form-check-input:checked[type=checkbox] {
    background-color: #ccaf67;
    border-color: #ccaf67;
    outline: none;
    box-shadow: none;
}

.form-check-input:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.25);
}

.offcanvas-hamburger {
    font-size: 26px;
}

.menu-items hr {
    margin-top: 0px;
    margin-bottom: 0px;
}

.menu-items p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.menu-items a:hover {
    background-color: #000;
    color: white;
    text-decoration: none;
}

.offcanvas-flex {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
}

.offcanvas-contactgegevens h3 {
    font-size: 26px;
    text-transform: uppercase;
}

.offcanvas-contactgegevens p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.offcanvas-contactgegevens i {
    color: #ccaf67;
}

.accordion-header button {
    font-size: 22px;
    background-color: transparent;
}

.accordion-header button:focus {
    box-shadow: none;
    outline: none;
    border: none;
}

.form-floating select {
    border-radius: 0px;
}

.form-floating input, .form-floating textarea, .form-floating select {
    border-radius: 0px;
}

.form-floating input:hover, .form-floating textarea:hover, .form-floating select:hover {
    outline: none;
    box-shadow: none;
    border-color: #ccaf67;
}

.form-floating input:focus, .form-floating textarea:focus, .form-floating select:focus {
    outline: none;
    box-shadow: none;
    border-color: #ccaf67;
}

.accordion-button:not(.collapsed) {
    color: #2e3448;
    background-color: transparent;
    border-bottom: none;
    box-shadow: none !important;
}

/*switch on-off */
.toggle-label {
    position: relative;
    width: 100%;
    height: 38px;
}

.toggle-label input[type=checkbox] {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.toggle-label input[type=checkbox] + .back {
    position: absolute;
    width: 100%;
    height: 38px;
    left: 0;
    top: 0;
    transition: background 150ms linear;
}

.toggle-label input[type=checkbox]:checked + .back {
    cursor: pointer;
}

.toggle-label input[type=checkbox] + .back .toggle {
    display: block;
    position: absolute;
    content: ' ';
    background: #ccaf67;
    width: 50%;
    height: 100%;
    transition: margin 150ms linear;
    border: 3px solid white;
}

.toggle-label input[type=checkbox]:checked + .back .toggle {
    margin-left: 50%;
}

.toggle-label .label {
    position: absolute;
    width: 50%;
    text-align: center;
    font-size: 14px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.toggle-label .label.on {
    left: 0px;
}

.toggle-label .label.off {
    right: 0px;
}

.dropdown-gebruikers {
    background-color: #000;
    padding-top: 0;
    padding-bottom: 0;
    color: white;
    border: 1px solid #ccaf67;
    border-radius: 0px;
}

.dropdown-gebruikers li {
    border-bottom: 1px solid #ccaf67;
}

.dropdown-gebruikers li:last-child {
    border-bottom: none;
}

.dropdown-gebruikers a {
    color: white;
    text-align: right;
}

.dropdown-gebruikers a:hover {
    background-color: #ccaf67;
    color: white;
}

.quick-search-header input {
    border-radius: 0px;
    background-color: white;
    border: none;
    padding-right: 1px;
}

.quick-search-header input:focus {
    box-shadow: none;
    outline: none;
    border-color: #ccaf67;
}

.quick-search-header .back {
    background-color: white;
}

.quick-search-header select {
    border-left: 1px solid #ccaf67;
    background-color: white;
    border-top: none;
    border-bottom: none;
    margin-left: 0 !important;
}

.quick-search-header select:focus {
    box-shadow: none;
    outline: none;
    border-color: #ccaf67;
}

.quick-search-header .btn-detail {
    background-color: #ccaf67;
    border: none;
}

.overview-page p, .overview-page span  {
    font-size: 14px;
    color: black;
}

.overview-page a {
    font-size: 14px;
}

.overview-page label {
    font-size: 14px;
}

.overview-page .fz-10 {
    font-size: 10px;
}

.white-block hr {
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: #f0f0f0;
    opacity: 1;
    height: 2px;
}

.white-block .date-picker-input input {
    border-radius: 0px;
}

.white-block .date-picker-input input:focus {
    outline: none;
    box-shadow: none;
    border-color: #ccaf67;
}

.white-block .date-picker-input .input-group-append {
    border-radius: 0px;
}

.white-block .date-picker-input .input-group-text {
    border-radius: 0px;
    background-color: #ccaf67;
    color: white;
    border-color: #ccaf67;
}

.openmodal {
    position: relative;
}

.openmodal:after {
    font-family: "Font Awesome 6 Pro";
    content: "\f044";
    position: absolute;
    right: 15px;
    top: 0px;
    opacity: 0.2;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.openmodal:hover {
    cursor: pointer;
}

.openmodal:hover:after {
    opacity: 1;
    color: #ccaf67;
}

.btn-close:focus {
    box-shadow: none;
    outline: none;
}

.wijnen-info-fz {
    font-size: 14px;
}

.info-table-14 {
    font-size: 14px;
}

#map_wrapper {
    height: 100%;
}

#map_canvas {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: #ccaf67;
}

.bootstrap-select .dropdown-toggle:focus, .bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
    box-shadow: none;
    outline: none;
}

.dropdown.bootstrap-select {
    border: 1px solid #ced4da;
    background-color: transparent;
}

.dropdown.bootstrap-select .btn-light {
    background-color: white;
    padding-top: 25px;
    padding-bottom: 10px;
}

.dropdown.bootstrap-select .btn-light:focus {
    outline: none !important;
}

.select-absolute-label {
    z-index: 999;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 1rem 0.75rem;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity .1s ease-in-out, transform .1s ease-in-out;
    opacity: .65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.filter-option-inner-inner {
    color: black;
    font-size: 14px;
}

.background-image {
    background-image: url("../img/achtergrond.jpg");
    background-size: cover;
    background-position: center;
}

.font-size-small p {
    font-size: 12px;
}

.font-size-small a {
    font-size: 12px;
}

.autocomplete {
    background-color: white;
    position: absolute;
    left: 4px;
    right: 4px;
    top: 38px;
    border: 1px solid #ccaf67;
    width: auto;
    max-width: inherit;
    max-height: 300px;
    overflow-y: scroll;
}

#autocomplete-field2, .autocomplete-field-results {
    z-index: 999;
    top: 58px;
    left: 0;
    right: 0;
}

.autocomplete::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
}

.autocomplete::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}

.fz-16 {
    font-size: 16px !important;
}

.option-header-select {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
}

.form-check-input:checked {
    background-color: #ccaf67;
    border-color: #ccaf67;
}

.grijs-ok {
    background-color: #f0f0f0;
    display: inline-block;
    color: #000;
    font-weight: 600;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 5px;
    font-size: 11px !important;
}

.item-detail-icon:after {
    font-family: "Font Awesome 6 Pro";
    content: "\f101";
    position: absolute;
    right: 15px;
}

.pr-40 {
    padding-right: 40px;
}

.text-small {
    font-size: 13px;
}

.text-extra-small {
    font-size: 10px;
}

.color-bol {
    height: 12px;
    width: 12px;
    background-color: rebeccapurple;
    display: inline-block;
    border-radius: 50%;
    margin-right: 5px;
}

.groen-ok {
    color: green !important;
}

.rood-nok {
    color: darkred !important;
}

.wijnzoeken:before {
    font-family: "Font Awesome 6 Pro";
    content: "\f002";
    position: absolute;
    right: 15px;
    top: 18px;
    opacity: 0.5;
}

header .wijnzoeken:before {
    font-family: "Font Awesome 6 Pro";
    content: "\f002";
    position: absolute;
    right: 15px;
    top: 18px;
    left: auto;
    opacity: 0.5;
}

.modal-content .wijnzoeken:before {
    font-family: "Font Awesome 6 Pro";
    content: "\f002";
    position: absolute;
    right: 15px;
    top: 18px;
    left: auto;
    opacity: 0.5;
}

header .wijnzoeken:before {
    top: 16px;
}

.aantal-teller {
    border: 1px solid #ced4da;
    border-radius: 0px;
    height: 100%;
}

.aantal-teller input,
.aantal-teller textarea {
    border: none;
    box-sizing: border-box;
    margin: 0;
    outline: none;
    padding-left: 10px;
    padding-right: 10px;
    background-color: transparent;
}

.aantal-teller input[type="button"] {
    -webkit-appearance: button;
    cursor: pointer;
    border-color: transparent;
    font-size: 20px;
    color: #000;
}

.aantal-teller input[type="button"]:hover {
    color: #ccaf67;
}

.aantal-teller input::-webkit-outer-spin-button,
.aantal-teller input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.aantal-teller .input-group {
    clear: both;
    margin: 15px 0;
    position: relative;
}

.aantal-teller .input-group input[type='button'] {
    background-color: #eeeeee;
    min-width: 30px;
    width: auto;
    transition: all 300ms ease;
}

.aantal-teller .input-group .button-minus,
.aantal-teller .input-group .button-plus {
    font-weight: bold;
    height: 30px;
    padding: 0;
    width: 38px;
    position: relative;
}

.aantal-teller .input-group .quantity-field {
    position: relative;
    height: 30px;
    left: -6px;
    text-align: center;
    width: 40px;
    display: inline-block;
    font-size: 13px;
    margin: 0 0 5px;
    resize: vertical;
}

.aantal-teller .button-plus {
    left: -13px;
}

.aantal-teller .quantity-field {
    width: 40px;
    text-align: center;
}

.aantal-teller input[type="number"] {
    -moz-appearance: textfield;
    -webkit-appearance: none;
}

.stock {
    font-size: 16px;
}

.stock.regular-font {
    font-size: inherit;
}

.stock.instock {
    color: #9ed99e;
}

.stock.beperkt {
    color: #f8ac23;
}

.stock.notinstock {
    color: #d91f1f;
}

.klant-info-header-tags p {
    font-size: 10px;
}

.memo-bc {
    background-color: #f0f0f0;
}

.edit-link {
    color: black;
}

.edit-link i {
    opacity: 0.2;
}

.edit-link:hover i {
    opacity: 1;
}

.form-floating textarea {
    border-radius: 0;
}

a.link-black {
    color: black;
}

a.link-black:hover {
    color: #ccaf67;
}

.link-black a.custom-hover {
    color: black;
}

.fz-24 {
    font-size: 24px !important;
}

.fz-20 {
    font-size: 20px !important;
}

.pagination .page-link {
    color: black;
    border-color: #ccaf67;
    border-radius: 0 !important;
}

.pagination .page-link:hover {
    box-shadow: none;
    outline: none;
}

.pagination .page-link:focus {
    box-shadow: none;
    outline: none;
}

.pagination .page-link.active {
    background-color: #ccaf67 !important;
    color: white;
}

.pagination .selected {
    background-color: #ccaf67 !important;
    color: white;
}

.bestellingen-filter {
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    margin: auto;
    width: 220px;
    z-index: 99;
    text-align: center;
}

.select-filter span {
    font-size: 12px;
    padding-right: 5px;
}

.select-filter .dropdown.bootstrap-select {
    width: auto !important;
    max-width: 130px;
}

.select-filter .dropdown.bootstrap-select .btn-light {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 12px;
}

.select-filter .filter-option-inner-inner {
    font-size: 12px;
}

.discount-input {
    position: relative;
    width: 4rem;
    /* Firefox */
}

.discount-input input {
    text-align: center;
}

.discount-input:before {
    font-family: "Font Awesome 6 Pro";
    content: "\25";
    position: absolute;
    right: 7px;
    top: 7px;
    left: auto;
    opacity: 0.5;
}

.discount-input input::-webkit-outer-spin-button,
.discount-input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.discount-input input[type=number] {
    -moz-appearance: textfield;
}

.old-price {
    font-size: 12px;
    text-decoration: line-through;
    opacity: 0.5;
}

.irs--round .irs-handle {
    border-color: #ccaf67;
}

.irs--round .irs-bar {
    background-color: #ccaf67;
}

.irs--round .irs-from, .irs--round .irs-to, .irs--round .irs-single {
    background-color: #ccaf67;
}

.irs--round .irs-from:before, .irs--round .irs-to:before, .irs--round .irs-single:before {
    border-top-color: #ccaf67;
}

.table {
    border-color: inherit;
}

.color-green {
    color: green;
}

.color-green:hover {
    color: darkgreen;
}

.color-red {
    color: red;
}

.color-red:hover {
    color: darkred;
}

#editAfspraak .autocomplete {
    right: 0;
    left: 0;
    top: 57px;
    z-index: 999;
}

.color-black {
    color: black;
}

.color-black:hover {
    color: black;
}

.pos-absl {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.fz-12 p {
    font-size: 12px;
}

#contacts #datagrid {
    font-size: 12px;
}

#contacts #datagrid .header {
    font-size: 10px;
}

@media screen and (max-width: 1400px) {
    .header-logo {
        width: 300px;
    }
}

@media screen and (max-width: 1100px) {
    .header-logo {
        width: 200px;
    }
}

@media screen and (max-width: 991px) {

    .table-tablet {
        font-size: 12px;
    }

    .aantal-teller .quantity-field {
        width: 35px;
    }

    .accordion-body {
        padding: 0;
    }

    .discount-input:before {
        right: 10px;
        top: 10px;
    }

    .tablet-border-bottom {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
}



/* Vue 3 datepicker css loading fix */

.v3dp__datepicker {
    --popout-bg-color: var(--vdp-bg-color, #fff);
    --box-shadow: var(
            --vdp-box-shadow,
            0 4px 10px 0 rgba(128, 144, 160, 0.1),
            0 0 1px 0 rgba(128, 144, 160, 0.81)
    );
    --text-color: var(--vdp-text-color, #000000);
    --border-radius: var(--vdp-border-radius, 3px);
    --heading-size: var(--vdp-heading-size, 2.5em); /* 40px for 16px font */
    --heading-weight: var(--vdp-heading-weight, bold);
    --heading-hover-color: var(--vdp-heading-hover-color, #eeeeee);
    --arrow-color: var(--vdp-arrow-color, currentColor);

    --elem-color: var(--vdp-elem-color, currentColor);
    --elem-disabled-color: var(--vdp-disabled-color, #d5d9e0);
    --elem-hover-color: var(--vdp-hover-color, #fff);
    --elem-hover-bg-color: var(--vdp-hover-bg-color, #0baf74);
    --elem-selected-color: var(--vdp-selected-color, #fff);
    --elem-selected-bg-color: var(--vdp-selected-bg-color, #0baf74);

    --elem-font-size: var(--vdp-elem-font-size, 0.8em);
    --elem-border-radius: var(--vdp-elem-border-radius, 3px);

    --divider-color: var(--vdp-divider-color, var(--elem-disabled-color));

    position: relative;
}

.v3dp__clearable {
    display: inline;
    position: relative;
    left: -15px;
    cursor: pointer;
}

 .v3dp__popout {
     z-index: 10;
     position: absolute;
     /* bottom: 0; */
     text-align: center;
     width: 17.5em;
     background-color: var(--popout-bg-color);
     box-shadow: var(--box-shadow);
     border-radius: var(--border-radius);
     padding: 8px 0 1em;
     color: var(--text-color);
 }

.v3dp__popout * {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.v3dp__popout :deep(button) {
    background: none;
    border: none;
    outline: none;
}

.v3dp__popout :deep(button:not(:disabled)) {
    cursor: pointer;
}

.v3dp__heading {
    width: 100%;
    display: flex;
    height: var(--heading-size);
    line-height: var(--heading-size);
    font-weight: var(--heading-weight);
}

.v3dp__heading__button {
    background: none;
    border: none;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: var(--heading-size);
}

button.v3dp__heading__center:hover,
.v3dp__heading__button:not(:disabled):hover {
    background-color: var(--heading-hover-color);
}

.v3dp__heading__center {
    flex: 1;
}

.v3dp__heading__icon {
    height: 12px;
    stroke: var(--arrow-color);
}

.v3dp__heading__button:disabled .v3dp__heading__icon {
    stroke: var(--elem-disabled-color);
}

.v3dp__subheading,
.v3dp__elements {
    display: grid;
    grid-template-columns: var(--popout-column-definition);
    font-size: var(--elem-font-size);
}

.v3dp__subheading {
    margin-top: 1em;
}

.v3dp__divider {
    border: 1px solid var(--divider-color);
    border-radius: 3px;
}

.v3dp__elements :deep(button:disabled) {
    color: var(--elem-disabled-color);
}

.v3dp__elements :deep(button){
    padding: 0.3em 0.6em;
}

.v3dp__elements :deep(button span) {
    display: block;
    line-height: 1.9em;
    height: 1.8em;
    border-radius: var(--elem-border-radius);
}

.v3dp__elements :deep(button:not(:disabled):hover span) {
    background-color: var(--elem-hover-bg-color);
    color: var(--elem-hover-color);
}

.v3dp__elements :deep(button.selected span) {
    background-color: var(--elem-selected-bg-color);
    color: var(--elem-selected-color);
}
