*.mob {
    display: none;
}


/*  
    ######
    SINGLE PRODUCT 
    ######
*/

    /* PRODUCT FOTO SLIDER */
    .shopslider-container {
        width: 100%;
        margin-bottom: 40px;
        background: var(--bodycolor2);
        padding-top: var(--blockpadding);
        padding-bottom: var(--blockpadding);
        border-radius: var(--blockradius);
        box-sizing: border-box;
        aspect-ratio: 16 / 9;
    }
    .shopslider-container .shopslider .slide {
        background: var(--bodycolor2);
        aspect-ratio: 16 / 9;
    }
    .shopslider-container .shopslider .slide a {
        display: block;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .shopslider-container .shopslider .slide img {
        width: auto;
        height: auto;
        max-height: 400px;
        max-width: 90%;
        object-fit: contain;
        object-position: center center;
        margin: 0 auto;
        border-radius: var(--blockradius);
    }
    .shopslider-container .owl-dots {
        margin: 0 auto;
        width: 90%;
        height: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        z-index: 2;
    }
    .shopslider-container .owl-dots .owl-dot {
        background-color: transparent;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 90px;
        height: 60px;
        margin: 0;
        border-radius: var(--blockradius);
        aspect-ratio: 3 / 2;
        opacity: 0.3;
    }
    .shopslider-container .owl-dots .owl-dot.active {
        border-radius: var(--blockradius);
        opacity: 1;
    }
    @media screen and (max-width: 1000px) {
        .shopslider-container .shopslider .slide img {
            max-height: 150px;
        }
        .shopslider-container .owl-dots {
            margin-top: var(--blockpadding);
        }
        .shopslider-container .owl-dots .owl-dot {
            width: 40px;
            height: 30px;
        }
    }
    /* ORDER COLUMN */
    aside.side .order {
        background: var(--bodycolor2);
        box-sizing: border-box;
        padding: var(--blockpadding);
        position: sticky;
        top: 160px;
        border-radius: var(--blockradius);
        margin-top: calc(2.5em + 30px); /* h1 font-size + h1 margin-bottom */
    }
    aside.side .order > span {
        display: block;
    }
    aside.side .order span.title {
        font-size: 1.4em;
    }
    aside.side .order span.price {
        font-size: 1.4em;
        font-weight: bold;
        margin-bottom: 10px;
        display: block;
    }
    aside.side .order .product_variant,aside.side .order .product_option,aside.side .order .product_quantity {
        width: 100%;
        position: relative;
        margin-bottom: 10px;
        display: flex;
    }
    aside.side .order .product_quantity {
        border-top: 2px solid rgba(0,0,0,0.1);
        padding-top: 20px;
    }
    aside.side .order input[type=text],aside.side .order textarea,aside.side .order .product_option select,aside.side .order .product_variant select,aside.side .order .product_quantity select {
        margin-top: 0;
        padding: 5px;
        width: 55%;
        box-sizing: border-box;
        border: 1px solid #d5d5d5;
        background-color: var(--bodycolor1);
        font-family: inherit;
        font-size: inherit;
        -webkit-appearance: none;
        border-radius: 0px;
    }
    aside.side .order div.number-spinner {
        width: 55%;
    }
    aside.side .order textarea {
        height: 100px;
        resize: none;
    }
    aside.side .order .product_option select,aside.side .order .product_variant select,aside.side .order .product_quantity select {
        background-image: url('../../images/icons/arrow-down.svg');
        background-size: 12px 12px;
        background-position: calc(100% - 10px) 50%;
        background-repeat: no-repeat;
    }
    aside.side .order .product_option span.opt_name,aside.side .order .product_variant span.var_name,aside.side .order .product_quantity span.opt_name {
        width: 45%;
    }
    aside.side .order .btn {
        margin-top: 30px;
        width: 100%;
    }
    aside.side .order form label.error {
        bottom: 80%;
        top: auto;
    }
    @media screen and (max-width: 1000px) {
        aside.side .order {
            margin-top: 0;
        }
        aside.side .order .product_option,aside.side .order .product_variant,aside.side .order .product_quantity {
            flex-direction: column;
        }
        aside.side .order input,aside.side .order textarea,aside.side .order div.number-spinner,aside.side .order .product_option select,aside.side .order .product_variant select,aside.side .order .product_quantity select,aside.side .order .product_option span.opt_name,aside.side .order .product_variant span.var_name,aside.side .order .product_quantity span.opt_name {
            width: 100%;
        }
        aside.side .order form label.error {
            bottom: 55%;
            top: auto;
            right: 50%;
            transform: translate(50%, 0);
        }
    }



/*  
    ######
    SHOP_CART > shopcart.php
    ######
*/
.shop_cart {
    width: 100%;
    border: 2px solid var(--bodycolor2);
    box-sizing: border-box;
    border-radius: var(--blockradius);
}
.shop_cart.form form {
    max-width: none;
}
.shop_cart .header,.shop_cart .row {
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid var(--bodycolor2);
}
.shop_cart .row {
    align-items: flex-start;
}
.shop_cart .header {
    color: #999;
}
.shop_cart div {
    box-sizing: border-box;
    width: 17.5%;
    position: relative;
}
.shop_cart div.artikel {
    width: 30%;
}
.shop_cart div.artikel span.title {
    font-weight: bold;
}
.shop_cart div.artikel span.option {
    display: block;
}
.shop_cart div.aantal {
    display: flex;
    align-items: center;
}
.shop_cart div.number-spinner {
    width: 60%;
}
.shop_cart div.number-spinner input[type=number] {
    border-left: 1px solid var(--bodycolor2)!important;
    border-right: 1px solid var(--bodycolor2)!important;
    border-radius: 0;
}
.shop_cart div.img img {
    display: block;
    width: 70%;
    margin: 0 auto;
}
.shop_cart div select {
    font-size: inherit;
    font-family: inherit;
    border-color: #ccc;
    padding: 5px;
}
.shop_cart div span.optname {
    color: #999;
}
.shop_cart select {
    background-image: url('../../images/icons/arrow-down.svg');
    background-size: 12px 12px;
    background-position: calc(100% - 10px) 50%;
    background-repeat: no-repeat;
    -webkit-appearance: none;
    font-family: inherit;
    width: 60px;
    border-radius: 0;
    line-height: 1;
}
.shop_cart .row span.remove_item {
    position: relative;
    width: 12px;
    height: 12px;
    display: inline-block;
    margin-left: 10px;
    cursor: pointer;
    background-image: url(/images/icons/close.svg);
    background-size: 12px 12px;
    opacity: 0.5;
}
.shop_cart .row span.remove_item:hover {
    opacity: 1;
}
.shop_cart .totals {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding-top: 20px;
    padding-bottom: 20px;
}
.shop_cart .totals span {
    display: block;
}
.shop_cart .totals span.value {
    font-weight: bold;
    font-size: 1.2em;
    white-space: nowrap;
}
.shop_cart .shopbtn-row {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    padding: 30px;
    padding-top: 0;
}
.shop_cart .shopbtn-row a.shopbtn.toOrder {
    max-width: 100%;
    margin: 0;
}
.shop_cart form div.row div.aantal label.error {
    bottom: 100%;
    top: auto;
    left: -25%;
}
@media screen and (max-width: 1000px) {
    .shop_cart .header {
        display: none;
    }
    .shop_cart .row {
        flex-wrap: wrap;
        padding: 1em;
    }
    .shop_cart div,.shop_cart div.artikel {
        width: 100%;
    }
    .shop_cart div.number-spinner {
        width: 40%;
    }
    .shop_cart div.img {
        margin-bottom: 10px;
    }
    .shop_cart div.img img {
        width: 30%;
        margin: 0;
    }
    .shop_cart .totals {
        padding: 1em;
    }
    .shop_cart .totals span.value{
        font-size: 1em;
    }
    .shop_cart div span.optname,.mob {
        color: #999;
        display: inline-block;
        width: 50%;
    }
    .mob:after {
        content: ": ";
    }
    .shop_cart .shopbtn-row a.shopbtn.toOrder {
        width: 100%;
    }
    .shop_cart form div.row div.aantal label.error {
        width: auto;
        left: unset;
        right: 30%;
        transform: translate(50%);
    }
}


/*  
    ######
    BESTELTRAJECT > shoporder.php 
    ######
*/
.shop_order_form {
    display: flex;
}
p + .shop_order_form {
    margin-top: 30px;
}
.shop_order .shop_order_form div.column {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 2em;
    width: calc(100% / 3);
    min-height: 250px;
    border: 2px solid var(--bodycolor2);
    box-sizing: border-box;
}
.shop_order .shop_order_form div.column.first {
    border-top-left-radius: var(--blockradius);
    border-bottom-left-radius: var(--blockradius);
}
.shop_order .shop_order_form div.column.second {
    border-left: 0;
    border-right: 0;
}
.shop_order .shop_order_form div.column.third {
    border-top-right-radius: var(--blockradius);
    border-bottom-right-radius: var(--blockradius);
}
.shop_order .shop_order_form div.column.half {
    width: 50%;
}
.shop_order .shop_order_form div.column .shopbtn.bottomright /* add class to the button and get it out formelem */
{
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 30px;
    width: calc(100% - 60px)
}
.shop_order .shop_order_form div.column div.formelem {
    position: relative;
    display: flex;
    width: 100%;
}
.shop_order .shop_order_form div.column div.postcodehuisnr {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.shop_order .shop_order_form div.column div.formelem.flexcolumnized {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-bottom: 0;
}
.shop_order .shop_order_form div.column div.formelem span {
    display: flex;
    align-items: center;
    font-size: 1em;
    width: 50%;
    box-sizing: border-box;
    padding-right: 1em;
}
.shop_order .shop_order_form div.column div.formelem span:has(+ input.required):after,
.shop_order .shop_order_form div.column div.formelem span:has(+ select.required):after {
    margin-left: 4px;
    content: " *";
}
.shop_order .shop_order_form div.column div.formelem h3 {
    margin-bottom: 0;
    width: 100%;
    font-size: 1.3em;
}
.shop_order .shop_order_form div.column div.formelem.header {
    margin-bottom: 0;
}
.shop_order .shop_order_form div.column div.formelem.header h3 {
    margin-bottom: 10px;
}
.shop_order .shop_order_form div.column div.formelem.header.billing-address h3 {
    margin-top: 10px;
}
.shop_order .shop_order_form div.column div.formelem .radiobuttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: -2px;
    margin-bottom: 10px;
}
.shop_order .shop_order_form div.column div.formelem.submit {
    margin-top: 15px;
}
/*.shop_order .shop_order_form div.column div.formelem.flexcolumnized {
    margin-bottom: 30px;
}*/
/*.shop_order .shop_order_form div.column.second div.formelem.flexcolumnized {
    margin-bottom: 20px;
}*/
.shop_order form input[type=text], .shop_order form input[type=email], .shop_order form input[type=tel], .shop_order form textarea, .shop_order form select {
    border: 2px solid var(--bodycolor2);
    background-color: var(--bodycolor2);
    border-radius: 5px;
    box-sizing: border-box;
    color: #333;
    float: left;
    font-family: inherit;
    font-size: inherit;
    padding: 10px 10px;
    width: 50%;
    -webkit-appearance: none;
    font-size: .9em;
}
.shop_order form select {
    background-image: url('../../images/icons/arrow-dropdown.svg');
    background-size: 20px 20px;
    background-position: calc(100% - 5px) 50%;
    background-repeat: no-repeat;
}
.shop_order form input.telefoon {
    width: 50%;
}
.shop_order form input.postcode {
    width: 35%;
}
.shop_order form input.huisnr {
    width: 20%;
}
.shop_order form input[readonly] {
    background: #f5f5f5;
}
.shop_order label.radiobtn,.shop_order label.checkbox {
    display: block;
    width: 100%;
    position: relative;
    box-sizing: border-box;
    padding-left: 35px;
    float: left;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    font-size: 1em;
    line-height: 1.2;
    cursor: pointer;
}
.shop_order label.radiobtn input,.shop_order label.checkbox input {
    position: absolute;
    margin: 0;
    top: 2px;
    left: 0;
    background: var(--bodycolor2);
    border: 2px solid var(--bodycolor2);
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 14px;
}
.shop_order label.checkbox input {
    border-radius: 3px;
}
.shop_order label.radiobtn input:hover,.shop_order label.checkbox input:hover {
    background-color: var(--bodycolor3);
    border: 2px solid var(--bodycolor3);
}
.shop_order label.radiobtn input:checked,.shop_order label.checkbox input:checked {
    background-size: 16px;
    background-position: 50%;
    background-repeat: no-repeat;
    background-color: var(--success);
    border: 2px solid var(--success);
    background-image: url('/images/icons/checkmark-checkbox-radio.svg');
}
.shop_order label.error {
    position: absolute;
    top: -18px;
    right: 0;
    width: 50%;
    font-size: 12px;
    color: var(--error);
    opacity: 0;
    box-sizing: border-box;
    white-space: nowrap;
    pointer-events: none;
}
.shop_order label.error[for=akkoord] {
    opacity: 1;
    left: auto;
    right: 0;
}
.shop_order form input.error:not([readonly]),
.shop_order form textarea.error,
.shop_order form select.error {
    border: 2px solid var(--error);
}
.shop_order form input:not([type=radio])[aria-invalid=false],
.shop_order form textarea[aria-invalid=false],
.shop_order form select[aria-invalid=false] {
    border: 2px solid var(--success);
}
.shop_order *:focus:not([readonly]) + label.error {
    opacity: 1;
}
div.shop_order div.subset {
    width: 100%;
    float: left;
    clear: both;
}
div#bezorgadresoptie, div#bezorgadres {
    display: none;
    opacity: 0;
}
div#bezorgadresoptie {
    margin-top: -10px;
    padding: 20px 0;
    font-size: 0.9em;
    border-top: 2px solid var(--bodycolor2);
    border-bottom: 2px solid var(--bodycolor2);
    opacity: 1;
    box-sizing: border-box;
}
div#bezorgadresoptie .radiobuttons {
    gap: 5px;
    margin: 0;
}
div#bezorgadresoptie .radiobuttons label.radiobtn input {
    top: 0;
}
div#bezorgadres {
    padding-top: 16px;
}
    
.dflex { display: flex; flex-direction: column; gap: 18px; }

div.shop_order div.shop_cart div.row, div.shop_order div.shop_cart div.row > div {

}
.shop_order div.column.half.sixty {
    width: 60%;
    border-right: 2px solid var(--bodycolor2);
    border-top-left-radius: var(--blockradius);
    border-bottom-left-radius: var(--blockradius);
}
.shop_order div.column.half.forty {
    width: 40%;
    border-left: none;
    border-right: 2px solid var(--bodycolor2);
    border-top-right-radius: var(--blockradius);
    border-bottom-right-radius: var(--blockradius);
}
div.shop_order div.shop_cart {
    box-sizing: border-box;
    width: 100%;
    font-size: .8em;
    margin-top: 1em;
}
div.shop_order div.shop_cart div.totals {
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    width: 100%;
}
div.shop_order div.shop_cart div.totals div {
    display: flex;
    width: 100%;
}
div.shop_order div.shop_cart div.totals div span {
    width: 50%;
}
div.shop_order div.shop_cart div.totals div span:nth-of-type(2) {
    text-align: right;
}
div.shop_order div.shop_cart div.totals div.totaal {
    color: #666;
    font-weight: bold;
    font-size: 1.2em;
}
div.shop_order .orderset .itm {
    width: 100%;
    display: block;
    border-bottom: 1px solid #ddd;
    margin-bottom: .25em;
    padding-bottom: .25em;
    display: flex;
    font-size: .9em;
}
div.shop_order .orderset .itm > span {
    display: inline-block;
}
div.shop_order .orderset .itm > div {
    display: block;
}
div.shop_order .orderset .itm > .k {
    width: 45%;
    color: #999;
}
div.shop_order .orderset .itm > .v {
    width: 55%;
}
div.shop_order .orderset .block {
    display: block;
    width: 100%;
    float: left;
    margin-bottom: .5em;
}
div.shop_order div.afronden {
    display: block;
    width: 100%;
    float: left;
    margin-top: 1em;
}
div.afronden .shopbtn {
    float: right;
}
div.shop_order div.goback {
    margin-top: 20px;
}
div.shop_order div.goback a {
    color: var(--textcolor1);
}
div.shop_order div.goback a:hover {
    color: var(--color2);
}
div#paymentloading {
    background: var(--bodycolor2);
    float: left;
    margin: 10px 0 20px;
    padding: 16px 24px;
    background-image: url(../../images/icons/loading.gif);
    background-size: 16px 16px;
    background-position: 16px center;
    background-repeat: no-repeat;
    padding-left: 48px;
    width: 100%;
    box-sizing: border-box;
    display: none;
}
div#ordercancelled {
    display: none;
}
div.addressloading {
    width: 16px;
    height: 16px;
    background-image: url(../../images/icons/loading.gif);
    background-size: 16px 16px;
    background-position: 0 0;
    background-repeat: no-repeat;
    margin: 6px 0 0 6px;
    float: left;
    display: none;
}
div.shop_paymentreturn .shopbtn {
    float: left;
    margin-right: 1em;
}
div.content div.page_content.shop_paymentreturn div, div.content div.page_content.shop_paymentreturn p {
    margin-bottom: 20px;
}
dialog.addToCart div.title {
    font-weight: 700;
    font-size: 1.2em;
    line-height: 1.2;
    display: block;
    margin-bottom: .5em;
}
dialog.addToCart div.inner div {
    margin-bottom: 20px;
}
dialog.addToCart div.inner {
    min-width: 250px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
dialog.addToCart button.txt {
    border: none;
    margin: 0;
    padding: 0;
    width: auto;
    overflow: visible;
    background: transparent;
    color: inherit;
    font: inherit;
    line-height: normal;
    -webkit-font-smoothing: inherit;
    -moz-osx-font-smoothing: inherit;
    -webkit-appearance: none;
    cursor: pointer;
}
dialog.addToCart a.shopbtn {
    margin-bottom: 20px;
}

@media screen and (max-width: 1000px) {
    
    .shop_order_form {
        flex-direction: column;
    }
    .shop_order .shop_order_form div.column.second {
        border: 2px solid var(--bodycolor2);
        border-top: 0;
        border-bottom: 0;
    }
    .shop_order .shop_order_form div.column {
        gap: 10px;
        width: 100%;
        padding: 1em;
        padding-top: 1.2em;
        padding-bottom: 1.5em;
        min-height: 0;
    }
    .shop_order .shop_order_form div.column.first {
        border-radius: 0;
        border-top-left-radius: var(--blockradius);
        border-top-right-radius: var(--blockradius);
    }
    .shop_order .shop_order_form div.column.third {
        border-radius: 0;
        border-bottom-left-radius: var(--blockradius);
        border-bottom-right-radius: var(--blockradius);
    }
    .shop_order .shop_order_form div.column div.formelem {
        flex-direction: column;
        margin-bottom: 0;
    }
    .shop_order .shop_order_form div.column div.formelem.submit {
        margin-top: 20px;
    }
    .shop_order .shop_order_form div.column div.formelem .radiobuttons {
        margin-top: 0;
        margin-bottom: 0;
    }
    .shop_order .shop_order_form div.column div.formelem span {
        padding: 0;
        width: 100%;
        font-weight: 700;
        line-height: 2;
    }
    .shop_order .shop_order_form div.column h3 {
        margin-bottom: 0px;
    }
    .shop_order form input[type=text], .shop_order form input[type=email], .shop_order form input[type=tel], .shop_order form textarea, .shop_order form select {
        width: 100%;
    }
    .shop_order .shop_order_form div.column div.formelem.flexcolumnized {
        gap: 20px;
        padding-bottom: 0;
    }
    .shop_order .shop_order_form div.column div.formelem.header h3 {
        margin-bottom: 0;
    }
    .shop_order .shop_order_form div.column div.formelem.header.billing-address h3 {
        margin-top: 15px;
    }
    .shop_order .shop_order_form div.column div.postcodehuisnr {
        gap: 10px;
    }
    .shop_order label.error {
        top: 5px;
    }
    div#bezorgadresoptie, div#bezorgadres {
        margin-top: 5px;
    }
    div#bezorgadres {
        gap: 10px;
        padding-top: 0;
        margin-top: 15px;
    }    
    /* stap 2 */
    .shop_order div.column.half.sixty {
        width: 100%;
        border: 2px solid var(--bodycolor2);
        border-radius: 0;
        border-top-left-radius: var(--blockradius);
        border-top-right-radius: var(--blockradius);
    }
    .shop_order div.column.half.forty {
        width: 100%;
        border: 2px solid var(--bodycolor2);
        border-top: none;
        border-radius: 0;
        border-bottom-left-radius: var(--blockradius);
        border-bottom-right-radius: var(--blockradius);
    }
    .shop_cart div.aantal {
        display: block;
    }
    /* stap 3 */
    div.shop_order .orderset .itm > div {
        display: block;
        float: none;
    }
    div.shop_order .orderset .itm {
        flex-direction: column;
    }
    div.shop_order .orderset .itm > .k,div.shop_order .orderset .itm > .v {
        width: 100%;
        line-height: 1.4;
    }
    div.shop_order div.shop_cart div.totals {
        padding: 1em;
    }
    div.shop_order div.shop_cart div.totals div.totaal {
        white-space: nowrap;
    }
    
    div.shop_order label.checkbox {
        margin-bottom: 15px;
        font-size: .9em;
    }
    
}


/*  
    ######
    SHOP PROGRESS BAR 
    ######
*/
.shop-progress-bar {
    width: 100%;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}
.shop-progress-bar .shop-progress-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}
.shop-progress-bar .shop-progress-item::before {
    position: absolute;
    content: "";
    border-bottom: 2px solid var(--bodycolor2);
    width: 100%;
    top: 20px;
    left: -50%;
    z-index: 2;
}
.shop-progress-bar .shop-progress-item::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid var(--bodycolor2);
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 2;
}
.shop-progress-bar .shop-progress-item .step-counter {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bodycolor2);
    margin-bottom: 6px;
}
.shop-progress-bar .shop-progress-item.active {
    font-weight: bold;
    color: #000;
}
.shop-progress-bar .shop-progress-item.completed .step-counter {
    background-color: var(--color1);
}
.shop-progress-bar .shop-progress-item:not(.active) .step-name {
    color: #666;
}
.shop-progress-bar .shop-progress-item.completed::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #4bb543;
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 3;
}
.shop-progress-bar .shop-progress-item:first-child::before {
    content: none;
}
.shop-progress-bar .shop-progress-item:last-child::after {
    content: none;
}

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

    .shop-progress-bar {
        margin-bottom: 45px;
    }

}

/*  
    ######
    AMOUNT SELECTOR (/ )NUMBER SPINNER) 
    ######
*/
.number-spinner input[type="number"] {
    -webkit-appearance: textfield !important;
    -moz-appearance: textfield !important;
    appearance: textfield !important;
    width: 100%;
}
.number-spinner input[type=number]::-webkit-inner-spin-button,.number-spinner input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none !important;
}
.number-spinner {
    border: 2px solid var(--bodycolor2);
    display: inline-flex;
    width: fit-content;
    border-radius: var(--blockradius);
    overflow: hidden;
    height: 44px;
}
.number-spinner,.number-spinner * {
    box-sizing: border-box;
}
.number-spinner button {
    outline:none;
    -webkit-appearance: none;
    background-color: var(--bodycolor1);
    border: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    cursor: pointer;
    margin: 0;
    position: relative;
    padding:0;
}
.number-spinner button.disabled {
    pointer-events: none;
}
.number-spinner button:before,.number-spinner button:after {
    display: inline-block;
    position: absolute;
    content: '';
    width: 0.5rem;
    height: 2px;
    background-color: var(--textcolor1);
    transform: translate(-50%, -50%);
}
.number-spinner button.plus:after {
    transform: translate(-50%, -50%) rotate(90deg);
}
.number-spinner button.disabled:before,.number-spinner button.disabled:after {
    background-color: #999;
}
.number-spinner input[type=number] {
    font-family: sans-serif;
    padding: .5rem;
    border:0;
    text-align: center;
    outline: none;
    font-size: 1em !important;
    background-color: var(--bodycolor1)!important;
    border: 0 !important;
    margin-top: 0 !important;
    padding: 0px !important;
}
